/* Reset for sections */
.service-page-section {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Service Hero */
.service-hero {
    display: flex;
    /* align-items: center; */
    gap: 60px;
    padding: 60px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-hero-left {
    flex: 1;
    padding: 16px 0px;
}

.product-details-tag {
    display: inline-block;
    background-color: #D5EDFF;
    color: #0065B3;
    font-size: 15px;
    /* font-weight: 600; */
    padding: 8px 36px;
    border-radius: 25px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.product-details-tag:hover {
    background-color: #0090FF;
    color: white;
    border-color: #0065B3;
}

.service-hero-left h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: bold;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.02;
}

.service-hero-btn {
    background-color: #D4AF37;
    padding: 13px 46px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-hero-btn:hover {
    background-color: #b89428;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.service-hero-btn:active {
    background-color: #967820;
    transform: scale(0.98);
    box-shadow: none;
}

.service-hero-left h4 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    color: black;
    margin-bottom: 24px;
    line-height: 1.31;
}

.service-hero-left p {
    font-size: clamp(18px, 2vw, 22px);
    color: black;
    line-height: 1.31;
    margin-bottom: 30px;
    max-width: 600px;
}

.service-hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.service-hero-img {
    width: 100%;
    max-width: 580px;
    height: 465px;
    /* border-radius: 20px 20px 120px 20px; */
    object-fit: cover;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    border-radius: 45px;
}

/* Service Stats */
.service-stats-container {
    max-width: 1280px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    padding: 60px 40px 60px;
    justify-content: center;
    gap: 80px;
}

/* Stats Hover */
.service-stats-data {
    padding: 24px 20px;
    border-radius: 16px;
    border: 1px solid transparent;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.service-stats-data:hover {
    transform: translateY(-6px);
    background-color: #ffffff;
    border-color: #D5EDFF;
    box-shadow: 0 12px 32px rgba(0, 144, 255, 0.12);
}


.service-stats-data h1 {
    color: #0090FF;
    font-size: clamp(36px, 4vw, 52px);
    margin-bottom: 8px;
    line-height: 1.12;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-stats-data:hover h1 {
    color: #0065B3;
}

.service-stats-data p {
    color: #000000;
    font-weight: bold;
    font-size: 20px;
    transition: color 0.3s ease;
}

.service-stats-data:hover p {
    color: #0090FF;
}

/* About Service */
.about-service {
    text-align: left;
    max-width: 1400px;
    padding: 50px 40px;
}

.about-service h1 {
    font-size: clamp(28px, 3.5vw, 43px);
    margin-bottom: 20px;
    color: black;
    font-weight: bold;
    line-height: 1.02;
}

.about-service p {
    font-size: 22px;
    color: black;
    line-height: 1.31;
}

/* Key Benefits */
.key-benefits-wrapper {
    background-color: #FBFDFF;
    padding: 66px 0;
}

.key-benefits {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.key-benefits h1 {
    font-size: clamp(28px, 3.5vw, 43px);
    /* margin-bottom: 10px; */
    color: black;
    font-weight: bold;
}

.section-subtitle {
    font-size: 20px;
    color: #000000;
    margin-bottom: 50px;
    line-height: 1.31;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.benefit-card {
    background-color: #ffffff;
    /* box-shadow: 0px 0px 18px 0px #0000001A; */
    /*  */
    border-radius: 36px;
    max-width: 250px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 1px solid transparent;
}

.benefit-card:hover {
    border-radius: 36px;
    transform: scale(1.03);
    box-shadow: 0px 8px 24px rgba(0, 144, 255, 0.15);
    border-color: #0090FF;
}

.benefit-card:hover .benefit-check {
    animation: wiggle 0.6s ease-in-out;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.benefit-check {
    width: 40px;
    height: 40px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    /* margin-bottom: 8px; */
    line-height: 1.12;
}

.benefit-card p {
    font-size: 14px;
    color: #000000;
    line-height: 1.12;
}

/* Our Process */
.our-process {
    text-align: center;
    padding-bottom: 32px;
    max-width: 1200px;
}

.our-process h1 {
    font-size: clamp(28px, 3.5vw, 43px);
    margin-bottom: 10px;
    color: #000000;
    line-height: 1.02;
    font-weight: bold;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
}

.process-card-service {
    background-color: #FFFFFF;
    border: 1px solid transparent;
    padding: 50px 40px;
    border-radius: 10px;
    display: flex;
    gap: 35px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0px 0px 4px 0px #00000040;
}

.process-card-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 144, 255, 0.1);
    border-color: #D5EDFF;
}

.process-number {
    font-size: 98px;
    font-weight: bold;
    color: #0090FF;
    line-height: 1;
    min-width: 60px;
    text-align: center;
}

.process-content h3 {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 12px;
}

.process-content p {
    font-size: 18px;
    color: #000000;
    line-height: 1.31;
}

/* =============================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================= */
/* @media (max-width: 1024px) {
    .service-hero {
        flex-direction: column;
        padding: 40px 30px;
    }

    .service-stats-container {
        gap: 40px;
    }

    .benefit-card {
        width: calc(33.333% - 20px);
    }
} */

/* =============================================
   RESPONSIVE — Mobile (max 768px)
   ============================================= */
/* @media (max-width: 768px) {
    .service-page-section {
        padding: 40px 20px;
    }

    .service-stats-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .benefit-card {
        width: calc(50% - 15px);
    }

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

    .process-card-service {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        width: 100%;
    }
} */

/* content by claude */
/* =============================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .service-hero {
        flex-direction: column;
        padding: 32px 24px;
        gap: 28px;
    }

    .service-hero-right {
        justify-content: center;
    }

    .service-hero-img {
        max-width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .service-hero-left h1 {
        font-size: 34px;
    }

    .service-hero-left h4 {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .service-hero-left p {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .service-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        padding: 36px 24px;
    }

    .service-stats-data h1 {
        font-size: 36px;
    }

    .service-stats-data p {
        font-size: 15px;
    }

    .about-service h1 {
        font-size: 28px;
    }

    .about-service p {
        font-size: 16px;
    }

    .key-benefits h1 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .benefit-card {
        width: calc(50% - 15px);
        max-width: none;
        padding: 24px 18px;
        gap: 12px;
    }

    .benefit-card h3 {
        font-size: 16px;
    }

    .benefit-card p {
        font-size: 13px;
    }

    .our-process h1 {
        font-size: 28px;
    }

    .process-card-service {
        padding: 28px 22px;
        gap: 24px;
    }

    .process-number {
        font-size: 64px;
    }

    .process-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .process-content p {
        font-size: 15px;
    }
}

/* =============================================
   RESPONSIVE — Large Mobile (max 768px)
   ============================================= */
@media (max-width: 768px) {

    .service-page-section,
    .about-service {
        padding: 28px 16px;
    }

    .service-hero {
        padding: 24px 16px;
        gap: 20px;
    }

    .service-hero-left h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .service-hero-left h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .service-hero-left p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .service-hero-img {
        border-radius: 20px;
        aspect-ratio: 16 / 9;
    }

    .service-stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 28px 16px;
        gap: 20px;
    }

    .service-stats-data h1 {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .service-stats-data p {
        font-size: 13px;
    }

    .about-service {
        padding: 28px 16px;
    }

    .about-service h1 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .about-service p {
        font-size: 14px;
        line-height: 1.5;
    }

    .key-benefits-wrapper {
        padding: 40px 0;
    }

    .key-benefits {
        padding: 0 16px;
    }

    .key-benefits h1 {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .benefits-grid {
        gap: 14px;
    }

    .benefit-card {
        width: calc(50% - 7px);
        min-width: 130px;
        padding: 18px 12px;
        gap: 10px;
        border-radius: 20px;
    }

    .benefit-check {
        width: 30px;
        height: 30px;
    }

    .benefit-card h3 {
        font-size: 14px;
    }

    .benefit-card p {
        font-size: 12px;
    }

    .our-process {
        padding-bottom: 40px;
    }

    .our-process h1 {
        font-size: 22px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 24px;
    }

    .process-card-service {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 16px;
    }

    .process-number {
        font-size: 40px;
        min-width: 36px;
    }

    .process-content h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .process-content p {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* =============================================
   RESPONSIVE — Small Mobile (max 540px)
   ============================================= */
@media (max-width: 540px) {
    .service-hero-btn {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 15px;
    }

    .service-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px 16px;
    }

    .service-stats-data h1 {
        font-size: 24px;
    }

    .service-stats-data p {
        font-size: 12px;
    }

    .benefit-card {
        width: calc(50% - 7px);
    }

    .process-card-service {
        flex-direction: column;
        gap: 8px;
        padding: 16px 14px;
    }

    .process-number {
        font-size: 36px;
    }

    .process-content h3 {
        font-size: 14px;
    }

    .process-content p {
        font-size: 12px;
    }
}

/* =============================================
   RESPONSIVE — Extra Small (max 360px)
   ============================================= */
@media (max-width: 360px) {
    .service-hero {
        padding: 20px 12px;
    }

    .service-hero-left h1 {
        font-size: 22px;
    }

    .service-hero-left h4 {
        font-size: 13px;
    }

    .service-hero-left p {
        font-size: 13px;
    }

    .service-page-section,
    .about-service {
        padding: 24px 12px;
    }

    .key-benefits {
        padding: 0 12px;
    }

    .service-stats-container {
        padding: 20px 12px;
        gap: 14px;
    }

    .service-stats-data h1 {
        font-size: 22px;
    }

    .benefit-card {
        width: 100%;
        padding: 16px 12px;
    }

    .process-card-service {
        padding: 14px 12px;
    }

    .process-number {
        font-size: 30px;
    }
}