/* ===================================
   Services Hero Section
   =================================== */

.services-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.services-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.services-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 28px;
}

.services-hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-feature i {
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.hero-feature span {
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 500;
    line-height: 1.5;
}

.services-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.1));
}

/* ===================================
   Detailed Services Section
   =================================== */

.detailed-services {
    padding: 80px 0;
    background: var(--white);
}

.detailed-services .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1400px;
}

.services-sidebar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
}

.services-content-panel {
    min-height: 600px;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.service-detail-card {
    background: var(--white);
    border-radius: 14px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-detail-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateX(4px);
}

.service-detail-card[data-expanded="true"] {
    border-color: var(--primary);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.15);
    transform: translateX(8px);
}

.service-detail-header {
    margin: 0;
    padding: 0;
}

.service-toggle-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
    text-align: center;
    min-height: 140px;
    transition: all 0.3s ease;
}

.service-detail-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-detail-card[data-expanded="true"] .service-detail-icon {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transform: scale(1.05);
}

.service-detail-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-toggle-header-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-detail-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    text-align: center;
}

.service-detail-tagline {
    display: none;
}

.service-detail-card[data-expanded="true"] .service-detail-title {
    color: var(--primary);
}

/* Content Panel Styles */
.content-panel-inner {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.content-panel-inner.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideInFromRight 0.4s ease forwards;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-panel-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-200);
}

.content-panel-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    flex-shrink: 0;
}

.content-panel-icon i {
    font-size: 40px;
    color: var(--white);
}

.content-panel-title-area h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.2;
}

.content-panel-title-area p {
    font-size: 16px;
    color: var(--gray-600);
    font-weight: 500;
}

.service-detail-content {
    position: relative;
}

.service-detail-intro {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin: 24px 0 32px 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

/* ===================================
   Service Subsections (Infrastructure)
   =================================== */

.service-subsections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-subsection {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    padding: 28px;
    background: var(--gray-100);
    border-radius: 14px;
    transition: var(--transition);
}

.service-subsection:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.subsection-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.subsection-icon i {
    font-size: 28px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subsection-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.subsection-content p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 18px;
}

.subsection-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.subsection-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-800);
    font-weight: 500;
}

.subsection-features i {
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--white);
    flex-shrink: 0;
}


/* ===================================
   Process Steps
   =================================== */

.service-process {
    margin-top: 48px;
    padding: 40px;
    background: var(--gray-100);
    border-radius: 20px;
}

.service-process h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 36px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: 16px;
    transition: var(--transition);
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.step-number {
    width: 55px;
    height: 55px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    flex-shrink: 0;
}

.process-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.process-step p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ===================================
   Workflow Benefits
   =================================== */

.workflow-benefits {
    margin-top: 48px;
}

.workflow-benefits h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 32px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 32px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    transform: translateY(-4px);
}

.benefit-card i {
    font-size: 48px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===================================
   Service Approach
   =================================== */

.service-approach {
    margin-top: 48px;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
}

.service-approach h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 36px;
    text-align: center;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.approach-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 28px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.approach-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.approach-icon i {
    font-size: 32px;
    color: var(--white);
}

.approach-text h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.approach-text p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
}

/* ===================================
   Use Cases
   =================================== */

.use-cases {
    margin-top: 40px;
    padding: 36px;
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: 16px;
}

.use-cases h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.use-cases-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.use-cases-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 500;
    padding: 12px;
    background: var(--gray-100);
    border-radius: 8px;
}

.use-cases-list i {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

/* ===================================
   Consulting Areas
   =================================== */

.consulting-areas {
    margin-top: 40px;
}

.consulting-areas h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 36px;
    text-align: center;
}

.consulting-area {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    padding: 36px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.consulting-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

.consulting-icon i {
    font-size: 36px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consulting-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.consulting-content p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
}

/* ===================================
   Consulting Value
   =================================== */

.consulting-value {
    margin-top: 48px;
    padding: 40px;
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: 20px;
}

.consulting-value h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 36px;
    text-align: center;
}

.value-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-point {
    text-align: center;
    padding: 24px;
    background: var(--gray-100);
    border-radius: 12px;
}

.value-point i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-point h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.value-point p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================
   Services CTA Section
   =================================== */

.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.services-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-cta-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 40px;
}

.services-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 12px;
    transition: var(--transition);
}

.cta-btn i {
    font-size: 20px;
}

.cta-btn.primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.services-cta-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    text-align: center;
    margin: 0 auto;
}

.services-cta-note i {
    font-size: 16px;
    flex-shrink: 0;
}

/* ===================================
   Scroll to Top Button
   =================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

.scroll-to-top i {
    font-size: 20px;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1200px) {
    .detailed-services .container {
        grid-template-columns: 340px 1fr;
        gap: 32px;
    }

    .services-content-panel {
        padding: 40px;
    }

    .content-panel-header {
        gap: 16px;
    }

    .content-panel-icon {
        width: 70px;
        height: 70px;
    }

    .content-panel-icon i {
        font-size: 36px;
    }

    .content-panel-title-area h2 {
        font-size: 28px;
    }
}

@media (max-width: 1400px) {
    .services-sidebar {
        gap: 16px;
    }

    .service-toggle-btn {
        padding: 20px 16px;
        min-height: 120px;
        gap: 12px;
    }

    .service-detail-icon {
        width: 64px;
        height: 64px;
    }

    .service-detail-icon i {
        font-size: 32px;
    }

    .service-detail-title {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .services-sidebar {
        gap: 14px;
    }

    .service-toggle-btn {
        padding: 16px 12px;
        min-height: 110px;
        gap: 10px;
    }

    .service-detail-icon {
        width: 56px;
        height: 56px;
    }

    .service-detail-icon i {
        font-size: 28px;
    }

    .service-detail-title {
        font-size: 14px;
        line-height: 1.3;
    }
}

@media (max-width: 1024px) {
    .services-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-hero-image {
        order: -1;
    }

    .services-hero-title {
        font-size: 38px;
    }

    .detailed-services .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-sidebar {
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-light) transparent;
    }

    .services-sidebar::-webkit-scrollbar {
        height: 6px;
    }

    .services-sidebar::-webkit-scrollbar-track {
        background: transparent;
    }

    .services-sidebar::-webkit-scrollbar-thumb {
        background: var(--primary-light);
        border-radius: 3px;
    }

    .services-sidebar {
        display: flex;
        grid-template-columns: none;
    }

    .service-detail-card {
        flex: 1 0 auto;
        min-width: max-content;
    }

    .service-toggle-btn {
        padding: 14px 16px;
        min-height: 120px;
        white-space: nowrap;
    }

    .service-detail-icon {
        width: 50px;
        height: 50px;
    }

    .service-detail-icon i {
        font-size: 25px;
    }

    .service-detail-title {
        font-size: 13px;
        line-height: 1.3;
        white-space: nowrap;
    }

    .services-content-panel {
        padding: 32px 24px;
    }

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

    .value-points {
        grid-template-columns: repeat(2, 1fr);
    }

    .subsection-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 100px 0 60px;
    }

    .services-hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .services-hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-feature {
        gap: 10px;
    }

    .hero-feature i {
        font-size: 20px;
    }

    .hero-feature span {
        font-size: 14px;
    }

    .service-toggle-btn {
        padding: 16px 20px;
        gap: 14px;
    }

    .service-detail-icon {
        width: 52px;
        height: 52px;
    }

    .service-detail-icon i {
        font-size: 26px;
    }

    .service-detail-title {
        font-size: 17px;
    }

    .service-detail-tagline {
        display: none;
    }

    .content-panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 28px;
        padding-bottom: 20px;
    }

    .content-panel-icon {
        width: 64px;
        height: 64px;
    }

    .content-panel-icon i {
        font-size: 32px;
    }

    .content-panel-title-area h2 {
        font-size: 24px;
    }

    .content-panel-title-area p {
        font-size: 15px;
    }

    .service-detail-intro {
        font-size: 15px;
        padding: 20px;
        margin-bottom: 28px;
    }

    .service-subsection {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .subsection-icon {
        width: 50px;
        height: 50px;
    }

    .subsection-icon i {
        font-size: 24px;
    }

    .subsection-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .subsection-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .subsection-features li {
        font-size: 14px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-step {
        padding: 20px 16px;
        min-height: auto;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .process-step h4 {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 24px 20px;
    }

    .benefit-card i {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .benefit-card h4 {
        font-size: 18px;
    }

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

    .approach-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .approach-icon {
        width: 60px;
        height: 60px;
    }

    .approach-icon i {
        font-size: 28px;
    }

    .approach-text h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .approach-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .use-cases {
        padding: 24px 20px;
    }

    .use-cases h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .use-cases-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .use-cases-list li {
        font-size: 14px;
        padding: 10px;
    }

    .use-cases-list i {
        font-size: 18px;
    }

    .consulting-area {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 20px;
    }

    .consulting-icon {
        width: 60px;
        height: 60px;
    }

    .consulting-icon i {
        font-size: 28px;
    }

    .consulting-content h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .consulting-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .value-points {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-point {
        padding: 20px;
    }

    .value-point i {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .value-point h4 {
        font-size: 16px;
    }

    .value-point p {
        font-size: 13px;
    }

    .services-cta {
        padding: 60px 0;
    }

    .services-cta-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .services-cta-text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    .services-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 15px;
    }

    .cta-btn i {
        font-size: 18px;
    }

    .services-cta-note {
        font-size: 14px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 24px;
    }

    .services-hero-subtitle {
        font-size: 14px;
    }

    .service-toggle-btn {
        padding: 14px 18px;
        gap: 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-detail-title {
        font-size: 14px;
        line-height: 1.2;
    }

    .service-detail-tagline {
        display: none;
    }

    .service-detail-icon {
        width: 50px;
        height: 50px;
    }

    .service-detail-icon i {
        font-size: 25px;
    }

    .service-toggle-header-content {
        width: 100%;
    }

    .services-content-panel {
        padding: 24px 20px;
    }

    .content-panel-icon {
        width: 56px;
        height: 56px;
    }

    .content-panel-icon i {
        font-size: 28px;
    }

    .content-panel-title-area h2 {
        font-size: 22px;
    }

    .content-panel-title-area p {
        font-size: 14px;
    }

    .service-detail-intro {
        font-size: 14px;
        padding: 16px 18px;
        margin: 20px 0 28px 0;
    }

    .services-sidebar {
        gap: 10px;
    }

    .service-detail-card {
        min-width: auto;
    }

    .service-detail-card:hover {
        transform: translateX(0);
    }

    .service-detail-card[data-expanded="true"] {
        transform: translateX(0);
    }

    .subsection-content h3 {
        font-size: 17px;
    }

    .subsection-content p {
        font-size: 13px;
    }

    .services-cta-title {
        font-size: 22px;
    }

    .services-cta-text {
        font-size: 14px;
    }
}
