.container, .ab_container, .wide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   STRETCH CEILING HERO
   ========================================= */

.stretch-hero-section {
    background: linear-gradient(to right, #fdfbf7, #f3e8ff);
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.stretch-hero-section .ab_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-direction: row; 
}

.stretch-text-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.stretch-image-wrapper {
    flex: 1;
    max-width: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    animation: float-hero 6s ease-in-out infinite;
}

.stretch-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 25px;
}

.highlight-purple {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-desc-modern {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #374151;
}

.tag-item i {
    color: #a855f7;
    background: #f3e8ff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-buttons-modern {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-purple-pill {
    background: linear-gradient(90deg, #7c3aed, #9333ea);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    transition: transform 0.2s;
}

.btn-purple-pill:hover {
    transform: translateY(-3px);
}

.btn-text-link {
    color: #6d28d9;
    font-weight: 700;
    text-decoration: none;
}

@keyframes float-hero {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 900px) {
    .stretch-hero-section .ab_container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .stretch-text-content {
        max-width: 100%;
        text-align: center;
    }

    .feature-tags, .hero-buttons-modern {
        justify-content: center;
    }

    .stretch-image-wrapper {
        width: 100%;
        max-width: 100%;
    }
}

.header-text {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 15px;
}

.header-text h2, 
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f1016;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gradient-text {
    background: linear-gradient(90deg, #0052D4, #4364F7, #6FB1FC);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0052D4, #6FB1FC);
    margin: 10px auto 20px;
    border-radius: 2px;
}

.header-text p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-section {
    padding: 80px 0;
    background-color: #f8f9fc;
}

.row-top, .row-bottom {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.card {
    background: #ffffff;
    width: 350px;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #0052D4; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.card-icon {
    height: 70px;
    margin-bottom: 25px;
}

.card-icon img {
    height: 100%;
    object-fit: contain;
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 15px;
}

.card p {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 25px;
}

.btn-details {
    color: #0052D4;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-details:hover {
    color: #003c9e;
    letter-spacing: 1px;
}

.details-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    gap: 60px;
}

.detail-row.reverse {
    flex-direction: row-reverse;
}

.detail-text {
    flex: 1;
}

.detail-text h3 {
    font-size: 2rem;
    color: #1a2b49;
    margin-bottom: 20px;
}

.detail-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
}

.check-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    color: #333;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00d26a;
    font-weight: bold;
    font-size: 1.2rem;
}

.detail-img {
    flex: 1;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-img:hover img {
    transform: scale(1.05);
}

.testimonial-section {
    padding: 80px 0;
    background-color: #f4f7fa;
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    text-align: left;
    background: #fff;
    min-width: 300px;
    max-width: 500px;
    flex: 1;
    border-top: 5px solid #0052D4;
}

.quote-icon {
    font-size: 50px;
    color: #e0e6ed;
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: serif;
    line-height: 1;
}

.client-info {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.client-name {
    display: block;
    font-weight: 700;
    color: #0f1016;
}

.client-role {
    font-size: 0.85rem;
    color: #0052D4;
    font-weight: 600;
}

.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: #0052D4;
}

.faq-q {
    width: 100%;
    background: #f9faff;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2b49;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.q-mark {
    color: #0052D4;
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-a {
    padding: 0 20px;
    background: #fff;
    color: #555;
    padding-bottom: 20px; 
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 900px) {
    .row-top, .row-bottom {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 400px;
    }

    .detail-row, .detail-row.reverse {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .check-list li {
        text-align: left;
        display: inline-block;
    }

    .detail-img {
        width: 100%;
        height: 250px;
    }

    .header-text h2 {
        font-size: 2rem;
    }
}