:root {
    --primary: #0B1F4A;
    --secondary: #1E40AF;
    --accent: #6D5EF5;
    --white: #ffffff;
    --text: #374151;
    --heading: #111827;
    --border: #E5E7EB;
    --light: #F8FAFC;
    --gradient: linear-gradient(135deg, #0B1F4A, #1E40AF, #6D5EF5);
    --radius: 18px;
    --shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.section-header {
    max-width: 780px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading);
}

.section-header p {
    margin-top: 18px;
    font-size: 18px;
    color: var(--text);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #eef4ff;
    color: var(--secondary);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

/*==================================================
1. HERO
==================================================*/
.projects-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(rgba(11, 31, 74, .78), rgba(11, 31, 74, .82)), url("../images/projects/hero.webp") center/cover no-repeat;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(76, 110, 245, .25), transparent 45%);
    pointer-events: none;
}

.projects-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .8rem 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(14px);
    margin-bottom: 2rem;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.6rem;
}

.hero-content h1 span {
    color: #9cc0ff;
    display: block;
}

.hero-content p {
    max-width: 650px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, .92);
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 2.8rem;
}

/*==================================================
2. BREADCRUMB
==================================================*/
.breadcrumb-section {
    background: #f7f9fc;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--secondary);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb li:last-child {
    font-weight: 600;
    color: var(--heading);
}

.breadcrumb li:not(:last-child)::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 12px;
    color: #9ca3af;
}

/*==================================================
3. PROJECT STATS
==================================================*/
.project-stats {
    padding: 72px 0;
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: #fff;
    border-radius: 22px;
    padding: 42px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 15px 45px rgba(15, 23, 42, .06);
    transition: .4s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, .12);
}

.stat-card h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 800;
}

.stat-card p {
    color: var(--text);
    font-weight: 600;
    margin: 0;
}

@media(max-width:992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .projects-hero {
        min-height: 75vh;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:480px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .stat-card {
        padding: 30px 24px;
    }

    .stat-card h2 {
        font-size: 2.4rem;
    }
}

/*==================================================
4. FEATURED PROJECTS
==================================================*/
.featured-projects {
    padding: 72px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.featured-projects::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(76, 110, 245, .08);
    filter: blur(40px);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.project-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 15px 45px rgba(15, 23, 42, .08);
    transition: .45s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(15, 23, 42, .15);
}

.project-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .55));
}

.project-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--gradient);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    z-index: 2;
}

.project-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-content h3 {
    font-size: 1.55rem;
    margin-bottom: 16px;
    color: var(--heading);
}

.project-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    margin-top: auto;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: .92rem;
}

.project-meta i {
    color: var(--primary);
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: .4s;
    pointer-events: none;
    z-index: 3;
}

.project-card:hover::before {
    border-color: rgba(76, 110, 245, .35);
}

/*==================================================
5. PROJECT CATEGORIES
==================================================*/
.project-categories {
    padding: 110px 0;
    background: #fff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.category-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 45px 30px;
    text-decoration: none;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 12px 35px rgba(15, 23, 42, .05);
    transition: .4s;
}

.category-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, .12);
}

.category-box i {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 22px;
    background: var(--gradient);
    color: #fff;
    font-size: 32px;
}

.category-box h3 {
    color: var(--heading);
    font-size: 1.35rem;
    margin: 0;
}

@media(max-width:1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .featured-projects,
    .project-categories {
        padding: 56px 0;
    }

    .projects-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 220px;
    }

    .project-content {
        padding: 24px;
    }

    .project-content h3 {
        font-size: 1.35rem;
    }

    .category-box {
        padding: 35px 25px;
    }
}

@media(max-width:480px) {
    .project-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-box i {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
}

/*==================================================
6. PORTFOLIO GALLERY
==================================================*/
.portfolio-gallery {
    padding: 110px 0;
    background: var(--light);
    position: relative;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 50px 0 60px;
}

.gallery-filter button {
    padding: 14px 28px;
    border: none;
    border-radius: 999px;
    background: #fff;
    color: var(--heading);
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 10px 25px rgba(15, 23, 42, .05);
    transition: .35s;
}

.gallery-filter button:hover,
.gallery-filter button.active {
    background: var(--gradient);
    color: #fff;
    transform: translateY(-3px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .82));
    opacity: 0;
    transition: .35s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #ddd;
    font-size: .9rem;
}

.gallery-overlay h3 {
    color: #fff;
    margin: 10px 0 18px;
}

.gallery-link {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    transition: transform 0.3s;
}

.gallery-link:hover {
    transform: scale(1.1);
}

/*==================================================
7. CASE STUDIES
==================================================*/
.case-studies {
    padding: 110px 0;
    background: #fff;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.case-study-card {
    position: relative;
    padding: 45px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 15px 40px rgba(15, 23, 42, .08);
    transition: .4s;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 65px rgba(15, 23, 42, .14);
}

.case-number {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(30, 64, 175, .08);
}

.case-study-card h3 {
    margin-bottom: 30px;
    color: var(--heading);
}

.case-block {
    margin-bottom: 28px;
}

.case-block h4 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 700;
}

.case-block p {
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

.case-block ul {
    margin: 0;
    padding-left: 20px;
}

.case-block li {
    margin-bottom: 10px;
    color: var(--text);
}

.case-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.result-box {
    text-align: center;
    padding: 22px;
    border-radius: 18px;
    background: #eef4ff;
}

.result-box h2 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 2rem;
    font-weight: 800;
}

.result-box span {
    font-weight: 600;
    color: var(--heading);
}

@media(max-width:1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:992px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .portfolio-gallery,
    .case-studies {
        padding: 56px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-row: auto;
    }

    .case-study-card {
        padding: 30px;
    }

    .case-results {
        grid-template-columns: 1fr;
    }
}

@media(max-width:480px) {
    .gallery-filter {
        gap: 10px;
    }

    .gallery-filter button {
        width: 100%;
    }

    .case-number {
        font-size: 2.8rem;
        top: 20px;
        right: 20px;
    }
}

/*==================================================
8. INDUSTRIES SERVED
==================================================*/
.industries-section {
    padding: 110px 0;
    background: var(--light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background: #fff;
    padding: 38px 30px;
    text-align: center;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 15px 40px rgba(15, 23, 42, .06);
    transition: .4s;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 65px rgba(15, 23, 42, .12);
}

.industry-card i {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: 32px;
}

.industry-card h3 {
    color: var(--heading);
    margin-bottom: 16px;
}

.industry-card p {
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

/*==================================================
9. MANUFACTURING TIMELINE
==================================================*/
.manufacturing-process {
    padding: 72px 0;
    background: #fff;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #6d5ef5);
    z-index: 0;
}

.timeline-item {
    position: relative;
    text-align: center;
    z-index: 2;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    border: 4px solid #eef4ff;
    box-shadow: 0 15px 35px rgba(15, 23, 42, .08);
    font-size: 30px;
    transition: .35s;
}

.timeline-item:hover .timeline-icon {
    background: var(--gradient);
    color: #fff;
    transform: scale(1.08);
}

.timeline-item h3 {
    font-size: 1rem;
    color: var(--heading);
    line-height: 1.5;
    margin: 0;
}

/*==================================================
10. TECHNOLOGY
==================================================*/
.technology-section {
    padding: 110px 0;
    background: var(--light);
}

.technology-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.technology-grid span {
    padding: 16px 28px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
    font-weight: 600;
    color: var(--heading);
    transition: .35s;
}

.technology-grid span:hover {
    background: var(--gradient);
    color: #fff;
    transform: translateY(-4px);
}

/*==================================================
11. TESTIMONIALS
==================================================*/
.testimonials {
    padding: 110px 0;
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.testimonial-card {
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
    transition: .35s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(15, 23, 42, .12);
}

.stars {
    color: #f5b301;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 26px;
    font-style: italic;
}

.testimonial-card h4 {
    color: var(--heading);
    margin-bottom: 6px;
    margin-top: 0;
}

.testimonial-card span {
    color: var(--secondary);
    font-size: .95rem;
}

@media(max-width:1200px) {
    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        display: none;
    }
}

@media(max-width:992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .industries-section,
    .manufacturing-process,
    .technology-section,
    .testimonials {
        padding: 56px 0;
    }

    .industries-grid,
    .timeline {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        max-width: 320px;
        margin: auto;
    }
}

@media(max-width:480px) {
    .technology-grid {
        justify-content: stretch;
    }

    .technology-grid span {
        width: 100%;
        text-align: center;
    }

    .industry-card,
    .testimonial-card {
        padding: 28px;
    }
}

/*==================================================
12. FAQ SECTION
==================================================*/
.faq-section {
    padding: 110px 0;
    background: var(--light);
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
    transition: .35s;
}

.faq-item:hover {
    box-shadow: 0 25px 55px rgba(15, 23, 42, .10);
}

.faq-question {
    width: 100%;
    padding: 28px 30px;
    border: none;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--heading);
    text-align: left;
}

.faq-question i {
    transition: .35s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 30px 30px;
    line-height: 1.9;
    color: var(--text);
    margin: 0;
}

/*==================================================
13. CTA
==================================================*/
.projects-cta {
    position: relative;
    padding: 72px 0;
    background: var(--gradient);
    color: #fff;
    overflow: hidden;
}

.projects-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, .15), transparent 45%);
    pointer-events: none;
}

.projects-cta .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 820px;
    margin: auto;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin: 18px 0 22px;
}

.cta-content p {
    max-width: 700px;
    margin: auto auto 40px;
    color: rgba(255, 255, 255, .92);
    line-height: 1.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 220px;
}

/*==================================================
LIGHTBOX
==================================================*/

.project-lightbox {

    position: fixed;
    inset: 0;

    background: rgba(10, 15, 30, .95);

    display: flex;

    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: .35s;

    z-index: 9999;

}

.project-lightbox.show {

    opacity: 1;
    visibility: visible;

}

.lightbox-content {

    max-width: 1100px;
    width: 90%;

    text-align: center;

}

.lightbox-content img {

    width: 100%;
    max-height: 80vh;

    object-fit: contain;

    border-radius: 18px;

}

.lightbox-caption {

    margin-top: 25px;

    color: #fff;

}

.lightbox-caption h3 {

    margin-bottom: 10px;

    font-size: 2rem;

}

.lightbox-caption p {

    opacity: .8;

}

.lightbox-close,
.lightbox-prev,
.lightbox-next {

    position: absolute;

    width: 60px;
    height: 60px;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    background: rgba(255, 255, 255, .12);

    color: #fff;

    font-size: 22px;

    transition: .3s;

}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {

    background: #2563eb;

}

.lightbox-close {

    top: 30px;
    right: 30px;

}

.lightbox-prev {

    left: 35px;
    top: 50%;
    transform: translateY(-50%);

}

.lightbox-next {

    right: 35px;
    top: 50%;
    transform: translateY(-50%);

}

@media(max-width:768px) {

    .lightbox-prev,
    .lightbox-next {

        display: none;

    }

    .lightbox-content {

        width: 95%;

    }

    .lightbox-caption h3 {

        font-size: 1.5rem;

    }

}

/*==================================================
TRUSTED CLIENTS
==================================================*/

.trusted-clients {

    padding: 110px 0;
    background: #fff;

}

.clients-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;

}

.client-card {

    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .05);

}

.client-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, .12);

}

.client-card i {

    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;

    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: 30px;

}

.client-card h4 {

    margin: 0;
    color: var(--heading);

}

@media(max-width:992px) {

    .clients-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:576px) {

    .clients-grid {

        grid-template-columns: 1fr;

    }

}

/*==================================================
PROJECT RFQ
==================================================*/

.project-rfq {

    padding: 72px 0;

    background: linear-gradient(135deg,
            #eef4ff,
            #ffffff);

}

.rfq-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}

.rfq-benefits {

    margin-top: 30px;

    list-style: none;

    padding: 0;

}

.rfq-benefits li {

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 500;

}

.rfq-benefits i {

    color: #2563eb;

}

.rfq-form {

    background: #fff;

    padding: 40px;

    border-radius: 24px;

    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);

}

.form-group {

    margin-bottom: 22px;

}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 15px 18px;

    border: 1px solid #dbe4f0;

    border-radius: 12px;

    font-size: 15px;

    font-family: inherit;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    outline: none;

    border-color: #2563eb;

    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);

}

.rfq-form button {

    width: 100%;

}

@media(max-width:992px) {

    .rfq-wrapper {

        grid-template-columns: 1fr;

    }

}

/*==================================================
14. BACK TO TOP
==================================================*/
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .25);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-6px);
}

/*==================================================
15. SCROLL ANIMATIONS
==================================================*/
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all .8s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all .8s ease;
}

.fade-up.show,
.fade-left.show,
.fade-right.show {
    opacity: 1;
    transform: none;
}

/*==================================================
16. UTILITIES & ACCESSIBILITY
==================================================*/
.text-center {
    text-align: center;
}

.rounded {
    border-radius: 20px;
}

.shadow {
    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 60px;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 60px;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 3px solid #2563eb;
    outline-offset: 4px;
}

::selection {
    background: #2563eb;
    color: #fff;
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/*==================================================
17. PRINT & MOBILE OVERRIDES
==================================================*/
@media print {

    header,
    footer,
    .projects-cta,
    .back-to-top,
    .gallery-filter {
        display: none !important;
    }

    .projects-hero {
        background: #fff;
        color: #000;
        min-height: auto;
        padding: 60px 0;
    }

    section {
        break-inside: avoid;
    }

    img {
        max-width: 100%;
    }
}

@media(max-width:768px) {

    .faq-section,
    .projects-cta {
        padding: 56px 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .faq-question {
        padding: 22px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 22px 22px;
    }
}

@media(max-width:480px) {

    .cta-content h2,
    .section-header h2 {
        font-size: 2rem;
    }
}