/* ================================
   SERVICES PAGE - COMPLETE STYLESHEET
   ================================ */

/* ================================
   PAGE HERO
   ================================ */


.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('../images/background/2.jpg');
    filter: grayscale(100%);
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.page-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;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero-title {
    font-size: 3.5rem;
    font-feature-settings: "ss01" 1;
    color: #ddd0bf;
    line-height: 1.2;
    margin-bottom: 24px;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(221, 208, 191, 0.8);
    line-height: 1.8;
}

.page-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;
}

/* ================================
   SERVICES INTRO SECTION
   ================================ */

.services-intro-section {
    padding: 100px 40px;
    background-color: #d2bda5;
}

.services-intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-title {
    font-size: 2.2rem;
    font-feature-settings: "ss01" 1;
    color: #793234;
    margin-bottom: 24px;
}

.services-intro-text {
    font-size: 1.1rem;
    color: #5a4a4c;
    line-height: 2;
    text-align: justify;
    text-align-last: center;
}

/* ================================
   PROCESS SECTION
   ================================ */

.services-process-section {
    padding: 100px 40px;
    background-color: #d2bda5;
}

.services-process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-process-title {
    font-size: 2.2rem;
    font-feature-settings: "ss01" 1;
    color: #793234;
    text-align: center;
    margin-bottom: 60px;
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    background-color: #ddd0bf;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: right;
    position: relative;
}

.process-step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #793234;
    opacity: 0.3;
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.process-step-title {
    font-size: 1.2rem;
    font-feature-settings: "ss01" 1;
    color: #352426;
    margin-bottom: 12px;
}

.process-step-desc {
    font-size: 0.95rem;
    color: #5a4a4c;
    line-height: 1.7;
    text-align: justify;
    text-align-last: right;
}

/* ================================
   SERVICES GRID SECTION
   ================================ */

.services-grid-section {
    padding: 100px 40px;
    background-color: #1a1a1a;
}

.services-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: #2a2a2a;
    padding: 40px 30px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    background-color: #352426;
    border-color: rgba(121, 50, 52, 0.3);
}

.service-card-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #793234;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.service-card-icon {
    color: #793234;
    margin-bottom: 20px;
}

.service-card-title {
    text-align: right;
    font-size: 1.2rem;
    font-feature-settings: "ss01" 1;
    color: #ddd0bf;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    text-align-last: right;
}

.service-card-link {
    font-size: 0.85rem;
    color: #d2bda5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-card-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-link {
    color: #ddd0bf;
}

.service-card:hover .service-card-link i {
    transform: translateX(-4px);
}

/* ================================
   CTA SECTION
   ================================ */
.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-section {
    padding: 100px 40px;
    background-color: #793234;
    text-align: center;
    position: relative;

}

.page-cta-content {
    max-width: 650px;
    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;
    line-height: 1.8;
}

/* 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: 0.9rem;
    transition: transform 0.3s ease;
}

.cta-button-main:hover i {
    transform: translateX(-4px);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
    .services-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 60px;
        min-height: 55vh;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .services-intro-section,
    .services-process-section,
    .services-grid-section,
    .page-cta-section {
        padding: 60px 20px;
    }

    .services-intro-title,
    .services-process-title {
        font-size: 1.8rem;
    }

    .services-process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-step {
        padding: 30px 25px;
    }

    .services-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .page-cta-title {
        font-size: 1.8rem;
    }

    .page-cta-desc {
        font-size: 1rem;
    }

    .cta-button-main {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .services-intro-title,
    .services-process-title {
        font-size: 1.5rem;
    }

    .services-intro-text {
        font-size: 1rem;
        text-align: right;
        text-align-last: right;
    }

    .process-step {
        padding: 25px 20px;
    }

    .process-step-number {
        font-size: 2.5rem;
    }

    .process-step-title {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card-title {
        font-size: 1.1rem;
    }

    .page-cta-title {
        font-size: 1.5rem;
    }
}