/* Custom Innovative Sections for Services Page */

/* Commitment Section - Hexagonal Feature Cards */
.commitment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 128, 87, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.commitment-section .section-subtitle {
    max-width: 700px;
    margin: 15px auto 60px;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.commitment-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.feature-hexagon {
    position: relative;
    perspective: 1000px;
}

.hexagon-inner {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 128, 87, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-hexagon:hover .hexagon-inner {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 
        0 15px 35px rgba(0, 128, 87, 0.2),
        0 0 0 2px rgba(0, 128, 87, 0.3);
}

.hexagon-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #008057 0%, #00a572 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-hexagon:hover .hexagon-inner::before {
    transform: scaleX(1);
}

.hexagon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #008057 0%, #00a572 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 128, 87, 0.3);
    transition: all 0.4s ease;
}

.feature-hexagon:hover .hexagon-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 128, 87, 0.4);
}

.hexagon-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.hexagon-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    flex: 1;
}

.feature-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(0, 128, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #008057;
}

/* Stats Banner */
.commitment-stats-banner {
    background: linear-gradient(135deg, #008057 0%, #00a572 100%);
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 
        0 10px 40px rgba(0, 128, 87, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.commitment-stats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-circle {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.stat-circle .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-plus,
.stat-percent {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
}

/* Service Process Timeline Section */
.service-process-timeline {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.process-timeline-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Central vertical line */
.process-timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(0, 128, 87, 0.1) 0%,
        rgba(0, 128, 87, 0.4) 50%,
        rgba(0, 128, 87, 0.1) 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.process-step {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Number badge on the line */
.process-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #008057 0%, #00a572 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    box-shadow: 
        0 0 0 4px #fff,
        0 0 0 6px rgba(0, 128, 87, 0.2),
        0 4px 12px rgba(0, 128, 87, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 
        0 0 0 4px #fff,
        0 0 0 8px rgba(0, 128, 87, 0.3),
        0 6px 20px rgba(0, 128, 87, 0.4);
}

/* Card content - alternating sides */
.process-content {
    width: 520px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 12px;
    border-left: 4px solid #008057;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.05),
        0 8px 20px rgba(0, 128, 87, 0.08);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

/* Odd steps - cards on left, image on left side */
.process-step:nth-child(odd) .process-content {
    margin-right: 50%;
    margin-left: 0;
    text-align: left;
    transform: translateX(-40px);
}

/* Even steps - cards on right, image on right side */
.process-step:nth-child(even) .process-content {
    margin-left: 50%;
    margin-right: 0;
    text-align: right;
    border-left: none;
    border-right: 4px solid #008057;
    flex-direction: row-reverse;
    transform: translateX(40px);
}

/* Image Section */
.process-image {
    position: relative;
    width: 200px;
    flex-shrink: 0;
    overflow: hidden;
    background: #e9ecef;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.process-step:hover .process-image img {
    transform: scale(1.15);
}

.process-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 87, 0.85) 0%, rgba(0, 165, 114, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-image-overlay i {
    font-size: 48px;
    color: #fff;
    transform: scale(0) rotate(0deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step:hover .process-image-overlay {
    opacity: 1;
}

.process-step:hover .process-image-overlay i {
    transform: scale(1) rotate(360deg);
}

/* Text Content */
.process-text {
    padding: 25px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Arrow pointing to center line */
.process-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.process-step:nth-child(odd) .process-content::after {
    right: -20px;
    transform: translateY(-50%);
    border-left-color: #f8f9fa;
}

.process-step:nth-child(even) .process-content::after {
    left: -20px;
    transform: translateY(-50%);
    border-right-color: #f8f9fa;
}

.process-step:hover .process-content {
    transform: translateY(-4px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 12px 30px rgba(0, 128, 87, 0.15);
}

.process-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-step:nth-child(even) .process-text h3 {
    flex-direction: row-reverse;
}

.process-text h3 i {
    font-size: 24px;
    color: #008057;
    flex-shrink: 0;
}

.process-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Icon placeholder - hidden by default */
.process-icon {
    display: none;
}

/* Technology Stack Section */
.technology-stack {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tech-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 128, 87, 0.1), transparent);
    transition: left 0.6s ease;
}

.tech-card:hover::before {
    left: 100%;
}

.tech-card:hover {
    border-color: #008057;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 128, 87, 0.15);
}

.tech-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #008057 0%, #00a572 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
    transition: all 0.4s ease;
}

.tech-card:hover .tech-icon {
    transform: rotateY(360deg);
}

.tech-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.tech-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Industry Solutions Section */
.industry-solutions {
    padding: 120px 0;
    position: relative;
}

.industry-solutions .section-title__title {
    color: #1a1a1a;
}

.industry-solutions .section-title__tagline {
    color: #008057;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.solution-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    width: 100%;
}

.solution-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #008057, #00a572);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.solution-card:hover::after {
    transform: scaleX(1);
}

.solution-card:hover {
    background: #fff;
    border-color: #008057;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 128, 87, 0.15);
}

.solution-image {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-icon-wrap {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #008057, #00a572);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 128, 87, 0.3);
    z-index: 2;
    transition: all 0.4s ease;
}

.solution-icon-wrap i {
    font-size: 28px;
    color: #fff;
    transition: all 0.4s ease;
}

.solution-card:hover .solution-icon-wrap {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 128, 87, 0.4);
}

.solution-card:hover .solution-icon-wrap i {
    color: #fff;
}

.solution-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.solution-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.solution-features li {
    padding: 10px 0 10px 30px;
    color: #666;
    font-size: 14px;
    position: relative;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00a572;
    font-weight: 700;
}

/* Commitment Section */
.commitment-section {
    padding: 120px 0;
    background: #fff;
}

.commitment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.commitment-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.commitment-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 30px;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commitment-list li {
    padding: 20px 0 20px 60px;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    border-bottom: 1px solid #f0f0f0;
}

.commitment-list li:last-child {
    border-bottom: none;
}

.commitment-list li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #008057 0%, #00a572 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.commitment-visual {
    position: relative;
}

.commitment-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-box {
    background: linear-gradient(135deg, #008057 0%, #00a572 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.95;
}

/* Quote CTA Section */
.quote-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #008057 0%, #00a572 100%);
    position: relative;
    overflow: hidden;
}

.quote-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.quote-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.quote-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quote-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quote-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.quote-primary-btn,
.quote-secondary-btn {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.quote-primary-btn {
    background: #fff;
    color: #008057;
    border: 2px solid #fff;
}

.quote-primary-btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-secondary-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.quote-secondary-btn:hover {
    background: #fff;
    color: #008057;
    transform: translateY(-3px);
}

.quote-primary-btn i,
.quote-secondary-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.quote-primary-btn:hover i {
    transform: translateX(5px);
}

.quote-secondary-btn:hover i {
    transform: rotate(15deg);
}

/* Materials & Certifications Section */
.materials-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.materials-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, transparent 0%, #f8f9fa 100%);
    z-index: 0;
    pointer-events: none;
}

.materials-showcase {
    max-width: 1100px;
    margin: 60px auto 0;
    position: relative;
    z-index: 1;
}

.material-row {
    display: grid;
    grid-template-columns: 60px 80px 1fr 180px;
    gap: 30px;
    align-items: center;
    padding: 35px 40px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-left: 4px solid #008057;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.material-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, rgba(0, 128, 87, 0.05) 0%, rgba(0, 165, 114, 0.05) 100%);
    transition: width 0.4s ease;
    z-index: 0;
}

.material-row:hover::before {
    width: 100%;
}

.material-row:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 128, 87, 0.15);
    border-left-width: 6px;
}

.material-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #008057 0%, #00a572 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 128, 87, 0.3);
    position: relative;
    z-index: 1;
}

.material-icon-box {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 3px solid rgba(0, 128, 87, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #008057;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.material-row:hover .material-icon-box {
    border-color: #008057;
    transform: rotate(360deg);
}

.material-info {
    position: relative;
    z-index: 1;
}

.material-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.material-full-name {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.material-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.material-certification {
    text-align: right;
    position: relative;
    z-index: 1;
}

.cert-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 128, 87, 0.1);
    color: #008057;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid rgba(0, 128, 87, 0.2);
    transition: all 0.3s ease;
}

.material-row:hover .cert-badge {
    background: #008057;
    color: #fff;
    border-color: #008057;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 991px) {
    .commitment-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .commitment-stats-banner {
        padding: 40px 20px;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .stat-circle .stat-number {
        font-size: 36px;
    }
    
    .process-timeline-wrapper {
        max-width: 500px;
        padding: 40px 0;
    }
    
    .process-content {
        width: 360px;
    }
    
    .process-image {
        width: 140px;
    }
    
    .process-text {
        padding: 20px;
    }
    
    .process-text h3 {
        font-size: 18px;
    }
    
    .process-text p {
        font-size: 13px;
    }
    
    .process-step:nth-child(odd) .process-content,
    .process-step:nth-child(even) .process-content {
        margin-left: 50%;
        margin-right: 0;
        text-align: left;
        border-left: 4px solid #008057;
        border-right: none;
        transform: translateX(40px);
        flex-direction: row;
    }
    
    .process-content::after {
        left: -20px !important;
        right: auto !important;
        border-right-color: #f8f9fa !important;
        border-left-color: transparent !important;
    }
    
    .process-number {
        left: 0;
        transform: translateX(0);
    }
    
    .process-step:hover .process-number {
        transform: translateX(0) scale(1.15);
    }
    
    .process-step:nth-child(even) .process-text h3 {
        flex-direction: row;
    }
    
    .material-row {
        grid-template-columns: 50px 70px 1fr 150px;
        gap: 20px;
        padding: 25px 30px;
    }
    
    .material-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .material-icon-box {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .material-info h4 {
        font-size: 18px;
    }
    
    .material-info p {
        font-size: 13px;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .solution-card {
        padding: 25px 15px;
        min-height: 280px;
    }
    
    .solution-image {
        height: 150px;
        margin-bottom: 15px;
    }
    
    .quote-cta-content h2 {
        font-size: 36px;
    }
    
    .quote-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quote-primary-btn,
    .quote-secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .commitment-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hexagon-inner {
        padding: 30px 20px 25px;
    }
    
    .hexagon-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .commitment-stats-banner {
        padding: 30px 15px;
        gap: 25px;
    }
    
    .stat-circle {
        width: 90px;
        height: 90px;
    }
    
    .stat-circle .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .process-timeline-wrapper {
        max-width: 100%;
        padding: 30px 0;
    }
    
    .process-timeline-wrapper::before {
        left: 25px;
        transform: none;
    }
    
    .process-step {
        margin-bottom: 40px;
    }
    
    .process-content {
        width: calc(100% - 50px);
        max-width: 100%;
        flex-direction: column !important;
        margin-left: 50px !important;
        margin-right: 0 !important;
        transform: none !important;
        border-left: 4px solid #008057 !important;
        border-right: none !important;
        text-align: left !important;
    }
    
    .process-image {
        width: 100%;
        height: 180px;
        order: -1;
    }
    
    .process-image-overlay i {
        font-size: 40px;
    }
    
    .process-text {
        padding: 20px;
    }
    
    .process-number {
        left: 0;
        transform: translateX(0);
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .process-step:hover .process-number {
        transform: translateX(0) scale(1.1);
    }
    
    .process-content::after {
        left: -20px !important;
        right: auto !important;
        top: 100px;
        border-right-color: #f8f9fa !important;
        border-left-color: transparent !important;
    }
    
    .process-text {
        padding: 20px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .process-text h3 {
        font-size: 18px;
        flex-direction: row !important;
    }
    
    .process-text p {
        font-size: 13px;
    }
    
    .material-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 20px;
        text-align: center;
    }
    
    .material-number,
    .material-icon-box {
        margin: 0 auto;
    }
    
    .material-info h4 {
        font-size: 18px;
    }
    
    .material-full-name {
        display: block;
        margin-top: 5px;
    }
    
    .material-certification {
        text-align: center;
        margin-top: 15px;
    }
    
    /* Mobile: Single column */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .solution-card {
        padding: 20px 15px;
        min-height: auto;
        max-width: 100%;
    }
    
    .solution-image {
        height: 200px;
        margin-bottom: 15px;
    }
    
    .solution-card h3 {
        font-size: 18px;
    }
    
    .solution-card p {
        font-size: 13px;
    }
    
    .quote-cta-content h2 {
        font-size: 28px;
    }
    
    .quote-cta-content p {
        font-size: 14px;
    }
}
