:root {
    --primary-red: #E31E24;
    --primary-dark: #111111;
    --text-main: #333333;
    --text-muted: #666666;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --header-height: 80px;
    --slider-height: calc(100vh - var(--header-height));
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Sans', sans-serif !important;
}

p {
    text-align: justify;
}

/* =============================================
   INTERVENTIONS
   ============================================= */
.interventions {
    background-image: linear-gradient(305deg, #D6171D 0%, #1E1729 30%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.interventions .container {
    max-width: 100%;
    padding: 0 60px;
}

.interventions-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.interventions-left .tagline {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: none;
}

.interventions-left h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.interventions-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 35px;
}

.interventions-left .btn-contact {
    display: inline-block;
    background: var(--primary-red);
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.interventions-left .btn-contact:hover {
    background: #c01a1f;
}

.interventions-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
}

.inter-card-new {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    perspective: 1000px;
}

.inter-icon-circle {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    backface-visibility: visible;
}

.inter-card-new:hover .inter-icon-circle {
    animation: coin-spin 0.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes coin-spin {
    0% {
        transform: rotateY(0deg) rotateZ(0deg) rotateX(0deg);
    }

    30% {
        transform: rotateY(50deg) rotateZ(3deg) rotateX(5deg);
    }

    60% {
        transform: rotateY(100deg) rotateZ(-3deg) rotateX(3deg);
    }

    80% {
        transform: rotateY(140deg) rotateZ(1deg) rotateX(1deg);
    }

    100% {
        transform: rotateY(180deg) rotateZ(0deg) rotateX(0deg);
    }
}

.inter-card-new h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.inter-card-new p {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.6;
}

/* =============================================
   SERVICES
   ============================================= */
.services .container {
    max-width: 100%;
    padding: 0 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(#e5e5e5 1.5px, transparent 1.5px);
    background-size: 8px 8px;
    z-index: 1;
}

.service-card .icon-bg-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 130px;
    height: 130px;
    background: #f8f8f8;
    border-radius: 100% 0 0 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 25px;
    transition: all 0.4s ease;
}

.service-card .icon-bg-shape i {
    font-size: 40px;
    color: var(--primary-red);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    position: relative;
    z-index: 3;
}

.service-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
    max-width: 85%;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #888;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.read-more-btn .arrow-circle {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.service-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    border-color: transparent;
}

.service-card:hover .icon-bg-shape {
    background: var(--primary-red);
    width: 140px;
    height: 140px;
}

.service-card:hover .icon-bg-shape i {
    color: #ffffff;
    transform: scale(1.1);
}

.service-card:hover .read-more-btn {
    color: #222;
}

.service-card:hover .read-more-btn .arrow-circle {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    transform: scale(1.1);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
    padding: 100px 0;
    background-color: #ffffff;
    background-image: url('../wave-line.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
    display: none !important;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.testimonial-collage {
    position: relative;
    width: 520px;
    height: 520px;
    margin: 0 auto;
}

.collage-bg-swirl {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

.collage-img {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-img.img-1 {
    width: 230px;
    height: 240px;
    top: 0;
    left: 0;
    z-index: 2;
}

.collage-img.img-2 {
    width: 230px;
    height: 240px;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.collage-img.img-3 {
    width: 260px;
    height: 420px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

.collage-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    width: 140px;
}

.collage-logo img {
    width: 100%;
    height: auto;
}

.testimonial-header {
    margin-bottom: 20px;
}

.testimonial-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: #111;
}

.testimonial-short-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-quote-box {
    background: #ffffff;
    padding: 30px 40px;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
    position: relative;
}

.testimonial-quote-box .testimonial-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 5px;
}

.testimonial-author .author-position {
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 600;
}

.testimonial-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.explore-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #c6171c;
    /* Darker red sliding in */
    z-index: -1;
    transition: width 0.4s ease;
}

.explore-btn:hover::before {
    width: 100%;
}

.explore-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.video-btn-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
}

.play-btn-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.3);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.video-btn-wrap:hover .play-btn-circle {
    transform: scale(1.1);
    background: #111;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.video-btn-text {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
}

.swiper-pagination-bullet-active {
    background: var(--primary-red) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-red) !important;
}

.testimonialSwiper {
    padding-bottom: 60px !important;
    overflow: hidden !important;
}

/* Red // slash in all taglines */
.tagline {
    color: var(--text-muted);
}

.tagline .slash {
    color: var(--primary-red);
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images-wrap {
    position: relative;
    padding-right: 40px;
}

.img-shine-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: inline-block;
    width: 100%;
}

.img-shine-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
    z-index: 5;
}

.img-shine-wrap:hover::after {
    left: 150%;
    transition: all 1.2s ease;
}

.about-images-wrap::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 10%;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#e5e5e5 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    z-index: 0;
}

.main-about-img {
    width: 100%;
    display: block;
}

.sub-about-img {
    width: 100%;
    display: block;
}

.sub-about-img-container {
    border: 8px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.experience-badge-new {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--primary-red);
    color: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(227, 30, 36, 0.3);
}

.experience-badge-new i {
    font-size: 32px;
    opacity: 0.9;
}

.experience-badge-new .num {
    font-size: 30px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-badge-new .txt {
    font-size: 13px;
    font-weight: 500;
    display: block;
    line-height: 1.2;
}

.about-content h2 {
    font-size: 2.3rem;
    line-height: 1.2;
    margin-top: 15px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #111;
}

.about-content p {
    font-family: 'DM Sans', sans-serif;
    color: rgb(106, 106, 106);
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-content p strong {
    color: #111;
    font-weight: 700;
}

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

.feature-list-new li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 16px;
    color: #111;
}

.feature-list-new li i {
    width: 22px;
    height: 22px;
    background: var(--primary-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.about-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 45px;
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
}

.about-contact-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-contact-icon {
    width: 56px;
    height: 56px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 22px;
}

.about-contact-text span {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 2px;
}

.about-contact-text strong {
    font-size: 20px;
    color: #111;
    font-weight: 700;
}

.btn-view-more {
    background: var(--primary-red);
    color: #fff;
    padding: 16px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background: #c01a1f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
    color: #fff;
}

/* =============================================
   THROWABLE TECHNOLOGIES
   ============================================= */
.throwable_section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.throwable_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.throwable_section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-image: radial-gradient(#dee2e6 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.throwable_header {
    max-width: 100%;
    margin-bottom: 0;
}

.throwable_title {
    font-family: 'Manrope', sans-serif !important;
    font-size: 30px;
    font-weight: 700;
    color: rgb(15, 15, 15);
    margin-bottom: 20px;
    line-height: 35px;
}

.throwable_desc {
    font-family: 'DM Sans', sans-serif !important;
    color: rgb(106, 106, 106);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.throwable_items_wrap {
    position: relative;
    width: 100%;
    height: 400px;
    cursor: grab;
    user-select: none;
}

#throwable-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.throwable_items_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.throwable_item {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    cursor: grab;
    transition: box-shadow 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.throwable_item.is-dragging {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    cursor: grabbing;
    z-index: 100;
}

.throwable_item[data-body-id="0"] {
    background: #4B8BBE;
}

.throwable_item[data-body-id="1"] {
    background: #00A86B;
}

.throwable_item[data-body-id="2"] {
    background: #CC3333;
}

.throwable_item[data-body-id="3"] {
    background: #7A55A5;
}

.throwable_item[data-body-id="4"] {
    background: #00A2D3;
}

.throwable_item[data-body-id="5"] {
    background: #F29111;
}

.throwable_item[data-body-id="6"] {
    background: #E44D26;
}

.throwable_item[data-body-id="7"] {
    background: #2965F1;
}

.throwable_item[data-body-id="8"] {
    background: #00B0FF;
}

.throwable_item[data-body-id="9"] {
    background: #00599C;
}

/* Fixed Social Side */
.fixed-social-side {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.fixed-social-side .social-link {
    width: 48px;
    height: 48px;
    background: #fff;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.fixed-social-side .social-link:hover {
    background: var(--primary-red);
    color: #fff;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

.throwable_item .item_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.throwable_item .item_icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

/* =============================================
   RÉFÉRENCES ENERCO
   ============================================= */
.projects_section {
    position: relative;
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.projects_dark_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #111;
    z-index: 1;
}

.projects_container {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1704px;
    margin: 0 auto;
}

.references_header {
    text-align: center;
    margin-bottom: 60px;
}

.references_header .tagline {
    color: #888;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.references_header h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
}

.project_card_new {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 396 / 528;
    height: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.project_card_new:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.project_img_holder {
    width: 100%;
    height: 100%;
}

.project_img_holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.9;
}

.project_card_new:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.project_info_holder {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 75%;
    background: #ffffff;
    padding: 20px 30px 20px 25px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
}

.project_plus {
    position: absolute;
    right: 25px;
    top: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    z-index: 4;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.project_card_new:hover .project_plus {
    transform: translateY(-50%) scale(1.1);
}

.project_sector {
    display: block;
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.project_info_holder h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0;
    line-height: 1.2;
}

.projectsSwiper {
    padding-bottom: 60px;
    max-width: 1800px;
    margin: 0 auto;
}

/* =============================================
   FAQ
   ============================================= */
.faq_section {
    padding: 60px 0;
    background: #fff;
}

.faq_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq_left .tagline {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgb(106, 106, 106);
    line-height: 22px;
    margin-bottom: 15px;
    display: block;
}

.faq_left .tagline span {
    color: var(--primary-red);
    font-weight: 700;
    margin-right: 5px;
}

.faq_left h2 {
    font-size: 34px;
    font-weight: 500;
    color: #111;
    margin-bottom: 40px;
    line-height: 1.2;
}

.faq_images_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.faq_img_wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
}

.faq_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq_features_list {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.feature_item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    align-items: center;
}

.feature_header_box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature_icon {
    font-size: 40px;
    color: var(--primary-red);
    background: none;
    width: auto;
    height: auto;
}

.feature_header_box h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    margin: 0;
}

.feature_desc p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgb(106, 106, 106);
    line-height: 30px;
    margin: 0;
}

.accordion_wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion_item {
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion_title {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
}

.accordion_title span {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgb(15, 15, 15);
    line-height: 1.4;
    transition: all 0.3s ease;
}

.accordion_title .arrow {
    transition: transform 0.3s ease;
    color: #ccc;
}

.accordion_content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    background: #fff;
    padding: 0 25px;
}

.accordion_content p {
    padding-bottom: 22px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.accordion_item.active {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.accordion_item.active .accordion_title span {
    color: var(--primary-red);
}

.accordion_item.active .accordion_title .arrow {
    transform: rotate(180deg);
    color: var(--primary-red);
}

.accordion_item.active .accordion_content {
    max-height: 1000px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

/* =============================================
   VIDEO & CTA
   ============================================= */
.video_cta_section {
    background: #fff;
    padding-top: 40px;
}

.video_wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: -60px;
    z-index: 2;
}

.main_video_img {
    width: 100%;
    display: block;
}

.video_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.play_btn {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 15px rgba(227, 30, 36, 0.2);
}

.play_btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 25px rgba(227, 30, 36, 0.3);
}

.floating_img {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 250px;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.floating_img img {
    width: 100%;
    border-radius: 10px;
}

.cta_red_banner {
    background: var(--primary-red);
    padding: 80px 0 60px 0;
    margin-top: 0;
}

.cta_banner_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta_banner_flex h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    max-width: 600px;
    margin: 0;
    line-height: 1.2;
}

.btn_white_cta {
    position: relative;
    background: #fff;
    color: #111;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 16px;
    border: 1px solid #fff;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
}

.btn_white_cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn_white_cta:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn_white_cta:hover::before {
    left: 0;
}

/* =============================================
   BLOG
   ============================================= */
.blog_section {
    padding: 80px 0;
    background: #fff;
}

.blog_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog_card {
    background: #fff;
    border-radius: 20px;
    overflow: visible;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog_img_wrap {
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    width: 100%;
    margin-bottom: -40px;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog_card:hover .blog_img_wrap img {
    transform: scale(1.1);
}

.blog_content {
    background: #fff;
    padding: 60px 30px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog_badge {
    background: var(--primary-red);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.blog_title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog_card:hover .blog_title {
    color: var(--primary-red);
}

.blog_excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

.blog_link {
    color: #111;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.blog_link i {
    width: 30px;
    height: 30px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 12px;
    transition: all 0.3s ease;
}

.blog_link:hover {
    color: var(--primary-red);
    gap: 15px;
}

.blog_link:hover i {
    background: var(--primary-red);
    color: #fff;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #111;
    color: #fff;
    padding-top: 0;
    position: relative;
    margin-top: 150px;
}

.newsletter-bar {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-icon {
    font-size: 40px;
    color: var(--primary-red);
}

.newsletter-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.newsletter-info p {
    margin: 5px 0 0;
    color: rgb(204, 204, 204);
    font-size: 16px;
    line-height: 30px;
    font-family: 'DM Sans', sans-serif;
    text-align: left;
}

.newsletter-form {
    display: flex;
    width: 450px;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 40px 15px 0;
    color: #fff;
    outline: none;
    font-size: 15px;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-bottom-color: var(--primary-red);
}

.newsletter-form button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    color: var(--primary-red);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    padding: 0 0 80px;
    margin-top: -30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 25px;
}

.footer-about {
    color: rgb(204, 204, 204);
    font-size: 16px;
    line-height: 30px;
    font-family: 'DM Sans', sans-serif;
    text-align: left;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    text-align: left;
}

.footer-links,
.footer-hours,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-hours li,
.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgb(204, 204, 204);
    font-size: 16px;
    line-height: 30px;
    font-family: 'DM Sans', sans-serif;
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: rgb(204, 204, 204);
    transition: color 0.3s;
    font-size: 16px;
    line-height: 30px;
    font-family: 'DM Sans', sans-serif;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-red);
}

.footer-links i,
.footer-hours i,
.footer-contact i {
    color: var(--primary-red);
    font-size: 14px;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.footer-gallery img {
    width: 100%;
    border-radius: 6px;
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
}

.copyright-bar p {
    color: #555;
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.hypermedia-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hypermedia-link:hover {
    color: var(--primary-red);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        padding: 0 20px 80px;
    }

    .newsletter-bar {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        width: calc(100% - 40px);
    }

    .newsletter-info {
        flex-direction: column;
    }

    .newsletter-info p {
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .faq_grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .cta_banner_flex {
        flex-direction: column;
        text-align: center;
    }

    .cta_banner_flex h2 {
        font-size: 28px;
    }

    .floating_img {
        width: 150px;
        top: 15px;
        right: 15px;
    }

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

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --slider-height: 60vh;
    }
    .blog_grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        margin-top: 50px !important;
    }

    .newsletter-bar {
        transform: translateY(-45%) !important;
        padding: 25px 20px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        margin-top: -60px !important;
        gap: 20px !important;
        padding-bottom: 40px !important;
    }

    .footer-logo img {
        height: 45px;
        margin-bottom: 10px;
    }

    .newsletter-form {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .fixed-social-side {
        display: none !important;
    }

    .interventions {
        padding: 40px 0 !important;
    }

    .interventions-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .interventions-left {
        text-align: center !important;
    }

    .interventions-cards {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .inter-card-new {
        align-items: flex-start !important;
        text-align: left !important;
    }

    /* Testimonials Mobile Fix */
    .news-grid,
    .projects-grid-wrap {
        grid-template-columns: 1fr !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .testimonial-collage {
        width: 100% !important;
        max-width: 340px;
        height: 360px;
        margin: 0 auto 20px;
    }

    .collage-bg-swirl {
        width: 340px;
        height: 340px;
        left: 40%;
    }

    .collage-img.img-1 {
        width: 155px;
        height: 165px;
        top: 0;
        left: 0;
    }

    .collage-img.img-2 {
        width: 155px;
        height: 165px;
        bottom: 0;
        left: 0;
    }

    .collage-img.img-3 {
        width: 165px;
        height: 280px;
        right: 0;
    }

    .collage-logo {
        width: 90px;
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        left: 50%;
    }

    .testimonial-quote-box {
        padding: 20px;
    }

    .testimonial-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}