
        .service-list-wrapper {
    margin-top: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card-header {
    display: flex;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card-header:hover {
    background: #fafafa;
}

.service-card-header.active {
    background: #f5f5f5;
    border-bottom: 1px solid #e8e8e8;
}

.service-number {
    min-width: 70px;
    margin-right: 20px;
}

.service-number .num {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.service-number .num-line {
    width: 30px;
    height: 2px;
    background: #1a1a1a;
    margin-top: 8px;
}

.service-info {
    flex: 1;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px 0;
}

.service-short-desc {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

.service-toggle-wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
    transition: all 0.3s ease;
}

.service-card-header:hover .service-toggle-wrapper {
    background: #e0e0e0;
}

.service-toggle {
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1;
}

.service-card-body {
    display: none;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.service-intro-text {
    padding: 20px 28px;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.sub-service-list {
    padding: 0;
}

.sub-service-row {
    border-bottom: 1px solid #e8e8e8;
}

.sub-service-row:last-child {
    border-bottom: none;
}

/* Updated Sub-service Name Styling - Text on Left, View Details on Right */
.sub-service-name {
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.3s ease;
    flex-wrap: wrap;
}

.sub-service-name:hover {
    background: #f5f5f5;
}

.sub-service-name.active {
    background: #f0f0f0;
}

/* Container for the text (bullet + service text) - Left side */
.sub-service-text-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.bullet-point {
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sub-service-name:hover .bullet-point {
    background: #1a1a1a;
}

.sub-service-text {
    flex: 1;
}

/* View Details Link - Right side */
.view-link {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    background: transparent;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
}

.sub-service-name:hover .view-link {
    background: #e8e8e8;
}

.sub-service-detail {
    display: none;
    padding: 20px 28px;
    background: #ffffff;
    border-top: 1px solid #e8e8e8;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.sub-service-detail p {
    margin: 0 0 16px 0;
    font-size: 15px;
    line-height: 1.6;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

.detail-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
}

.detail-card strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-card p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Attractive CTA Section */
.cta-footer-section {
    padding: 20px 28px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
    border-top: none;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.cta-footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.cta-footer-section:hover::before {
    left: 100%;
}

.cta-question {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.cta-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 18px 0;
}

.cta-modal-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 10px 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-modal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-modal-btn:hover {
    color: #1a1a1a;
}

.cta-modal-btn:hover::before {
    left: 0;
}

.contact-sidebar-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    width: 100%;
    text-align: center;
}

.contact-sidebar-btn:hover {
    background: #333;
}

.get-started-form-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.form-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.form-card-inner {
    display: flex;
    flex-wrap: wrap;
}

.form-left {
    flex: 1;
    background: #1a1a1a;
    padding: 48px 40px;
    color: #ffffff;
    position: relative;
}

.form-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.form-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #ffffff;
}

.form-title span {
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.form-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.form-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    opacity: 0.1;
}

.form-right {
    flex: 1;
    padding: 48px 40px;
    background: #ffffff;
}

.form-row-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.input-group {
    position: relative;
    margin-bottom: 24px;
    flex: 1;
}

.input-group.full-width {
    width: 100%;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 16px 0 8px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
    transition: all 0.3s ease;
    outline: none;
}

.input-group select {
    cursor: pointer;
}

.input-group label {
    position: absolute;
    left: 0;
    bottom: 8px;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-group input:focus ~ label,
.input-group input.filled ~ label,
.input-group select:focus ~ label,
.input-group select:valid ~ label {
    bottom: 32px;
    font-size: 12px;
    color: #1a1a1a;
}

.input-group input:focus,
.input-group select:focus {
    border-bottom-color: #1a1a1a;
}

.phone-input-modern {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.country-code-modern {
    font-size: 16px;
    color: #333;
    padding-bottom: 8px;
}

.phone-input-modern input {
    flex: 1;
    border-bottom: none;
    padding: 16px 0 8px 0;
}

.phone-input-modern label {
    left: 50px;
}

.checkbox-group-modern {
    margin: 30px 0 24px;
}

.checkbox-modern {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    color: #666;
    position: relative;
    padding-left: 28px;
}

.checkbox-modern input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark-modern {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.checkbox-modern:hover input ~ .checkmark-modern {
    border-color: #1a1a1a;
}

.checkbox-modern input:checked ~ .checkmark-modern {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}

.checkmark-modern:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-modern input:checked ~ .checkmark-modern:after {
    display: block;
}

.checkbox-modern .checkmark-modern:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-btn-modern {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn-modern:hover {
    background: #333;
}

/* Mobile Responsive - View Details button on right side */
@media (max-width: 768px) {
    .service-card-header {
        padding: 16px 20px;
    }
    .service-number {
        min-width: 50px;
    }
    .service-number .num {
        font-size: 22px;
    }
    .service-title {
        font-size: 17px;
    }
    .service-short-desc {
        font-size: 12px;
    }
    .sub-service-name {
        padding: 14px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }
    .sub-service-text-wrapper {
        flex: 1;
        min-width: 0;
    }
    .sub-service-text {
        white-space: normal;
        word-break: break-word;
    }
    .view-link {
        margin-left: auto;
        white-space: nowrap;
        flex-shrink: 0;
        padding: 4px 12px;
    }
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .service-intro-text {
        padding: 16px 20px;
        font-size: 14px;
    }
    .detail-card {
        padding: 16px;
    }
    .detail-card strong {
        font-size: 14px;
    }
    .detail-card p {
        font-size: 13px;
    }
    .cta-footer-section {
        padding: 16px 20px;
    }
    .cta-question {
        font-size: 16px;
    }
    .cta-subtext {
        font-size: 13px;
    }
    .cta-modal-btn {
        padding: 8px 24px;
        font-size: 13px;
    }
    .form-card-inner {
        flex-direction: column;
    }
    .form-left {
        padding: 32px 24px;
    }
    .form-right {
        padding: 32px 24px;
    }
    .form-title {
        font-size: 24px;
    }
    .form-row-modern {
        flex-direction: column;
        gap: 0;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .sub-service-name {
        flex-wrap: wrap;
        gap: 8px;
    }
    .sub-service-text-wrapper {
        width: calc(100% - 80px);
    }
    .view-link {
        margin-left: auto;
        font-size: 12px;
        padding: 4px 10px;
    }
    .detail-card strong {
        font-size: 13px;
    }
    .detail-card p {
        font-size: 12px;
    }
    .cta-question {
        font-size: 15px;
    }
    .cta-subtext {
        font-size: 12px;
    }
}
  