/* ================================
   SERVICE PAGE - COMPLETE STYLESHEET
   Reusable for all individual service pages
   ================================ */

/* ================================
   SERVICE HERO
   ================================ */

.service-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 40px 80px;
    background-color: #793234;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    filter: grayscale(100%);
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.service-hero-number {
    font-size: 6rem;
    font-weight: 700;
    color: #ddd0bf;
    opacity: 0.25;
    display: block;
    line-height: 1;
    margin-bottom: 16px;
}

.service-hero-title {
    font-size: 3.5rem;
    font-feature-settings: "ss01" 1;
    color: #ddd0bf;
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(221, 208, 191, 0.8);
    line-height: 1.8;
}

.service-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(221, 208, 191, 0.1) 0%, transparent 40%);
    z-index: 1;
}

/* ================================
   SERVICE CONTENT SECTION
   ================================ */

.service-content-section {
    padding: 100px 40px;
    background-color: #d2bda5;
}

.service-content-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Service Intro */
.service-intro {
    margin-bottom: 70px;
    text-align: right;
}

.service-intro-title {
    font-size: 2.2rem;
    font-feature-settings: "ss01" 1;
    color: #793234;
    margin-bottom: 20px;
}

.service-intro-text {
    font-size: 1.1rem;
    color: #5a4a4c;
    line-height: 2;
    text-align: justify;
    text-align-last: right;
}

/* ================================
   SERVICE FEATURES
   ================================ */

.service-features {
    margin-bottom: 70px;
}

.service-features-title {
    font-size: 1.6rem;
    font-feature-settings: "ss01" 1;
    color: #793234;
    margin-bottom: 30px;
    text-align: right;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-feature-card {
    background-color: #ddd0bf;
    padding: 35px 30px;
    border-radius: 14px;
    text-align: right;
    transition: transform 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-5px);
}

.service-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #793234;
    color: #ddd0bf;
    border-radius: 12px;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.service-feature-name {
    font-size: 1.15rem;
    font-feature-settings: "ss01" 1;
    color: #352426;
    margin-bottom: 10px;
}

.service-feature-desc {
    font-size: 0.95rem;
    color: #5a4a4c;
    line-height: 1.7;
}

/* ================================
   SERVICE PORTFOLIO
   ================================ */

.service-portfolio {
    margin-bottom: 20px;
}

.service-portfolio-title {
    font-size: 1.6rem;
    font-feature-settings: "ss01" 1;
    color: #793234;
    margin-bottom: 30px;
    text-align: right;
}

.service-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-portfolio-item {
    height: 220px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.service-portfolio-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* ================================
   CTA SECTION
   ================================ */

.page-cta-section {
    padding: 100px 40px;
    background-color: #793234;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('../images/temp_bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.page-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.page-cta-title {
    font-size: 2.5rem;
    font-feature-settings: "ss01" 1;
    color: #ddd0bf;
    margin-bottom: 16px;
}

.page-cta-desc {
    font-size: 1.1rem;
    color: rgba(221, 208, 191, 0.8);
    margin-bottom: 32px;
}

/* CTA Button */
.cta-button-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    border: 1px solid #ddd0bf;
    color: #ddd0bf;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    font-feature-settings: "ss01" 1;
}

.cta-button-main:hover {
    background-color: #ddd0bf;
    transform: translateY(-5px);
    color: #793234;
}

.cta-button-main i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.cta-button-main:hover i {
    transform: translateX(-4px);
}

/* ================================
   OTHER SERVICES SECTION
   ================================ */

.other-services-section {
    padding: 70px 40px;
    background-color: #1a1a1a;
}

.other-services-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.other-services-title {
    font-size: 1.4rem;
    font-feature-settings: "ss01" 1;
    color: #ddd0bf;
    margin-bottom: 28px;
}

.other-services-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.other-service-link {
    padding: 12px 26px;
    background-color: #2a2a2a;
    color: #d2bda5;
    text-decoration: none;
    border-radius: 24px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.other-service-link:hover {
    background-color: #793234;
    color: #ddd0bf;
    border-color: #793234;
    transform: translateY(-3px);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
    .service-features-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 20px 60px;
        min-height: 55vh;
    }

    .service-hero-number {
        font-size: 4rem;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-content-section,
    .page-cta-section {
        padding: 60px 20px;
    }

    .service-intro-title {
        font-size: 1.8rem;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .service-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-portfolio-item {
        height: 200px;
    }

    .page-cta-title {
        font-size: 1.8rem;
    }

    .other-services-section {
        padding: 50px 20px;
    }

    .other-services-grid {
        gap: 10px;
    }

    .other-service-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .cta-button-main {
        padding: 16px 36px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .service-hero-number {
        font-size: 3rem;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .service-hero-subtitle {
        font-size: 1rem;
    }

    .service-intro {
        margin-bottom: 50px;
    }

    .service-intro-title,
    .service-features-title,
    .service-portfolio-title {
        font-size: 1.5rem;
    }

    .service-intro-text {
        font-size: 1rem;
    }

    .service-feature-card {
        padding: 28px 22px;
    }

    .service-feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .service-feature-name {
        font-size: 1.05rem;
    }

    .service-feature-desc {
        font-size: 0.9rem;
    }

    .service-portfolio-item {
        height: 180px;
    }

    .page-cta-title {
        font-size: 1.5rem;
    }

    .other-services-title {
        font-size: 1.2rem;
    }
}