/* Web Dev Hero Section */
.web-hero-section {
    padding: 8rem 2rem 4rem;
    background: transparent;
    position: relative;
}

.web-hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.web-hero-visual {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-hero-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.web-hero-content {
    flex: 1;
    max-width: 600px;
}

.web-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ff9784;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.web-hero-label i {
    color: #ed654c;
    font-size: 1.1rem;
}

.web-hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.web-hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-style: italic;
}

.web-view-packages-btn {
    background: #ed654c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.web-view-packages-btn:hover {
    background: #ff7f66;
}

/* Web Dev Hero Section Mobile Responsive */
@media (max-width: 1024px) {
    .web-hero-wrapper {
        flex-direction: column-reverse;
        gap: 3rem;
        text-align: center;
    }

    .web-hero-title {
        font-size: 2.75rem;
    }

    .web-hero-visual {
        min-height: 300px;
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .web-hero-section {
        padding: 6rem 1rem 3rem;
    }

    .web-hero-title {
        font-size: 2.25rem;
    }

    .web-hero-description {
        font-size: 1rem;
    }

    .web-hero-visual {
        min-height: 250px;
        max-height: 300px;
    }

    .web-hero-img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .web-hero-section {
        padding: 5rem 1rem 2rem;
    }

    .web-hero-title {
        font-size: 1.875rem;
    }

    .web-hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .web-hero-visual {
        min-height: 200px;
        max-height: 250px;
    }

    .web-hero-img {
        max-height: 250px;
    }

    .web-view-packages-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}




/* Our Approach Section */
.our-approach-section {
    background: transparent;
    position: relative;
}

.our-approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.our-approach-label {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ff9784;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.our-approach-label i {
    color: #ed654c;
    font-size: 1.1rem;
}

.our-approach-main {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.our-approach-content {
    flex: 1;
}

.our-approach-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.our-approach-description {
    font-size: 1.125rem;
    color: #cccccc;
    line-height: 1.6;
}

.our-approach-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-approach-img {
    width: 400px;
    height: auto;
    border-radius: 12px;
}

.our-approach-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.approach-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.approach-feature-item:hover {
    transform: translateY(-5px);
}

.approach-feature-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: #4F52FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.approach-feature-item:hover .approach-feature-icon {
    transform: scale(1.1);
}

.approach-feature-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.approach-feature-content {
    flex: 1;
}

.approach-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.approach-feature-description {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
}

/* Our Process Section */
.our-process-section {
    padding: 6rem 2rem;
    background: transparent;
    position: relative;
}

.our-process-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.our-process-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ff9784;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.our-process-label i {
    color: #ed654c;
    font-size: 1.1rem;
}

.our-process-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 3rem;
}

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

.process-step-item {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.process-step-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -16%;
    width: 100%;
    height: 100%;
    background-image: url('');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
}

.process-step-item:nth-child(1)::before {
    background-image: url('img/boxes/route.svg');
}

.process-step-item:nth-child(2)::before {
    background-image: url('img/boxes/pencil-line.svg');
}

.process-step-item:nth-child(3)::before {
    background-image: url('img/boxes/tool.svg');
}

.process-step-item:nth-child(4)::before {
    background-image: url('img/boxes/atom.svg');
}

.process-step-item:hover {
    transform: translateY(-5px);
    background: #222222;
    border-color: #4F52FF;
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.process-step-description {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .our-approach-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .our-approach-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .our-approach-label {
        margin: 0 auto 2rem;
    }

    .approach-feature-item {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }

    .our-process-wrapper {
        text-align: center;
    }

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

    .process-step-item::before {
        right: -34%;
    }

    .our-approach-section {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .our-approach-title,
    .our-process-title {
        font-size: 2rem;
    }

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

    .approach-feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .process-step-item::before {
        right: -41%;
    }
    .our-process-section {
        padding: 0 auto;
    }
}

@media (max-width: 480px) {
    .our-approach-title,
    .our-process-title {
        font-size: 1.75rem;
    }

    .our-approach-img {
        width: 200px;
    }
}