/* Architecture Service Section */
.architecture-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.architecture-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Left Content */
.left-content {
    padding-right: 20px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 20px;
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: #ff9800;
    margin-top: 20px;
}

/* Right Content */
.right-content {
    padding-left: 20px;
}

.main-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.features-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    padding-left: 20px;
    margin-bottom: 12px;
    position: relative;
}

.features-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #ff9800;
    border-radius: 50%;
}

.company-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-top: 30px;
}
.btn-consult {
    display: inline-block;
    padding: 14px 35px;
    background-color: #ff9800;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.3);
}

.btn-consult:hover {
    background-color: #2c3442;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 52, 66, 0.4);
}
/* Images Grid */
.images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.image-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border-radius: 4px;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}
/* Benefits and Testimonials Combined Section */
.benefits-testimonials-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.section-background {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dark Background Section - 2/3 width */
.benefits-container {
    background-color: #2c3442;
    padding: 80px 60px;
    width: 66.666%;
    position: relative;
    z-index: 1;
}

.benefits-content {
    max-width: 550px;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    display: block;
}

.benefits-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #e89a4d;
    margin: 25px 0 35px 0;
}

.benefits-description {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.benefits-list li {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 22px;
    margin-bottom: 15px;
    position: relative;
}

.benefits-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    background-color: #e89a4d;
    border-radius: 50%;
}

.benefits-footer {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 35px;
}


/* Testimonial Card Overlay - Nearly 1/2 width */
.testimonial-card {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-bg-image {
    position: relative;
    background-image: url('../images/web-design.png');
    background-size: cover;
    background-position: center;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 154, 77, 0.92) 0%, rgba(218, 140, 60, 0.88) 100%);
    z-index: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
    color: #ffffff;
}

.testimonial-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    display: block;
}

.testimonial-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
}

.title-underline-white {
    width: 60px;
    height: 3px;
    background-color: #ffffff;
    margin: 25px 0 35px 0;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 35px;
    font-style: italic;
}

.testimonial-author {
    font-size: 13px;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 40px;
}

.testimonial-author strong {
    font-weight: 700;
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
}
/* Testimonial Action Button */
.testimonial-action {
    margin-top: 40px;
}

.btn-view-now {
    display: inline-block;
    padding: 14px 40px;
    background-color: #ffffff;
    color: #e89a4d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-container {
        width: 60%;
        padding: 60px 40px;
    }
    
    .testimonial-card {
        width: 50%;
    }
    
    .benefits-title,
    .testimonial-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .benefits-title,
    .testimonial-title {
        font-size: 28px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
}
/* Responsive Design */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .left-content {
        padding-right: 0;
    }
    
    .right-content {
        padding-left: 0;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .benefits-container {
        width: 100%;
        padding: 60px 30px;
    }
    
    .testimonial-card {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        margin-top: -80px;
    }
    
    .testimonial-content {
        padding: 50px 30px;
    }
    
    .testimonial-bg-image {
        min-height: 480px;
    }
}

@media (max-width: 768px) {
    .architecture-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .content-wrapper {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .images-grid {
        margin-top: 40px;
    }
    .benefits-testimonials-section {
        padding: 60px 0;
    }
    
    .benefits-container {
        padding: 50px 25px;
    }
    
    .benefits-title,
    .testimonial-title {
        font-size: 32px;
    }
    
    .testimonial-card {
        margin-top: -60px;
    }
    
    .testimonial-content {
        padding: 40px 25px;
    }
    
    .testimonial-bg-image {
        min-height: 420px;
    }
}