@charset "utf-8";

/* Service-1 Custom Styles */

.wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.s1-hero {
    position: relative;
    width: 100%;
    height: 500px;
    background: url(../images/inspection_hero.png) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.s1-hero__content {
    background: rgba(34, 131, 59, 0.8);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    text-align: center;
}

.s1-hero__h1 {
    font-size: 32px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 15px;
}

.s1-hero__sub {
    font-size: 20px;
    font-weight: 500;
}

.s1-section {
    padding: 80px 0;
}

.s1-section--gray {
    background: #f8f9fa;
}

.s1-title-group {
    text-align: center;
    margin-bottom: 50px;
}

.s1-h2 {
    font-size: 30px;
    color: #22833b;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.s1-h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fe9e1a;
}

.s1-h3 {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Comparison Cards */
.s1-comparison {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.s1-comp-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #ccc;
}

.s1-comp-card--pro {
    border-top-color: #22833b;
    background: #f4fff7;
}

.s1-comp-card__title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.s1-list {
    list-style: none;
    padding: 0;
}

.s1-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.s1-list li:before {
    content: '●';
    position: absolute;
    left: 0;
    color: #fe9e1a;
}

.s1-point-box {
    background: #fff;
    border: 2px solid #22833b;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

.s1-point-box__img {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .s1-point-box {
        flex-direction: column;
    }
    .s1-point-box__img {
        width: 100%;
        height: auto;
    }
}

.s1-definition-box {
    background: #fff;
    border: 1px dashed #22833b;
    padding: 20px 25px;
    border-radius: 8px;
    margin: 20px auto 40px;
    max-width: 800px;
    position: relative;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.s1-definition-box:before {
    content: 'CHECK';
    position: absolute;
    top: -12px;
    left: 20px;
    background: #22833b;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 4px;
}

.s1-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.s1-feature-card {
    background: #fff;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.s1-feature-card__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.s1-feature-card__body {
    padding: 20px;
    flex-grow: 1;
}

.s1-feature-card__num {
    font-size: 32px;
    font-weight: bold;
    color: #e9ecef;
    line-height: 1;
    margin-bottom: 5px;
}

.s1-cta-box {
    text-align: center;
    background: #22833b;
    color: #fff;
    padding: 60px 20px;
    border-radius: 20px;
    margin-top: 60px;
}

.s1-btn {
    display: inline-block;
    background: #fe9e1a;
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(254, 158, 26, 0.4);
}

.s1-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(254, 158, 26, 0.6);
    background: #ffae3d;
}

@media (max-width: 768px) {
    .s1-hero {
        height: 350px;
    }

    .s1-hero__h1 {
        font-size: 24px;
    }

    .s1-comparison {
        flex-direction: column;
    }

    .s1-section {
        padding: 50px 0;
    }

    .s1-h2 {
        font-size: 24px;
    }
}

/* Contact Actions Styles */
.s1-contact-actions {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.s1-action-primary {
    width: 100%;
    max-width: 500px;
    position: relative;
    /* Ensure badge positioning context */
}

/* Badge Style */
.s1-btn-line-badge {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: #fe9e1a;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    z-index: 10;
    white-space: nowrap;
}
/* Triangle for badge */
.s1-btn-line-badge::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 6px solid #fe9e1a;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.s1-btn-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Changed to space-between for arrow */
    background-color: #fff;
    color: #06c755;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 4px solid #fff;
    /* White border default */
    position: relative;
    overflow: hidden;
}

/* Add a subtle animation to the button */
.s1-btn-line {
    animation: s1-pulse 2s infinite;
}

@keyframes s1-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.s1-btn-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: #fe9e1a;
    /* Orange border on hover */
    background-color: #fffcf5;
}

.s1-btn-line__icon {
    font-size: 42px;
    margin-right: 15px;
    color: #06c755;
}

.s1-btn-line__text {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-grow: 1;
}

.s1-btn-line__label {
    font-size: 21px;
    font-weight: bold;
    line-height: 1.2;
    color: #333;
}

.s1-btn-line__sub {
    font-size: 14px;
    color: #fe9e1a;
    /* Orange for sub-text */
    font-weight: bold;
    margin-top: 2px;
}

.s1-btn-line__arrow {
    font-size: 20px;
    color: #fe9e1a;
    /* Orange arrow */
    margin-left: 10px;
}

.s1-action-sub {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 600px;
    justify-content: center;
}

.s1-btn-sub {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
}

.s1-btn-sub:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: #fff;
}

.s1-btn-sub i {
    margin-right: 8px;
    font-size: 18px;
}

.s1-contact-note {
    font-size: 13px;
    color: #fff;
    opacity: 0.8;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .s1-action-sub {
        flex-direction: column;
    }

    .s1-btn-line__icon {
        font-size: 34px;
    }

    .s1-btn-line__label {
        font-size: 17px;
    }

    .s1-btn-line__sub {
        font-size: 12px;
    }
}