


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: #333; border: 1px solid var(--accent-color); border-radius: 10px; }

img {
    max-width: 100%;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }

a:focus, button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

.cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 20px; height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-follower.hovered {
    width: 60px; height: 60px;
    background: transparent;
    border: 2px solid var(--accent-color);
    mix-blend-mode: normal;
}

@media (hover: hover) and (pointer: fine) {
    * { cursor: auto !important; }
    a, button, .menu-toggle, .btn-plans-trigger, select, .cursor-pointer { cursor: pointer !important; }
}

@media (max-width: 900px) {
    .cursor-follower { display: none !important; }
}
h1, h2, h3, h4, .section-label {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-padding { padding: 120px 0; }
.highlight { color: var(--accent-color); }
.reveal { opacity: 1; transform: translateY(0); }

.section-label {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
    margin-top: -150px;
}

.section-title {
    font-size: clamp(1rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 40px;
}

.section-subtitle {
    font-family: var(--font-body);
    color: #ccc;
    margin-bottom: 50px;
    font-size: 1.1rem;
    text-align: center;
}

.bg-dark-section { background: #0b0b0b; }
.text-center { text-align: center; }
.mb-10 { margin-bottom: 40px; }


.contact-bar {
    background-color: #4169E1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.contact-bar-container {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    width: 100%;
    padding: 0 5%;
}

.contact-actions {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    width: auto; 
    gap: 15px; 
}

.contact-item {
    background: transparent;
    color: #fff;
    width: 35px; height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 1rem;
    animation: breathing-glow 2s infinite ease-in-out;
    transition: var(--transition-fast);
}

.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.4s; }

.btn-about-top {
    width: auto;
    padding: 0 15px;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}





.logo-img { height: 63px; width: auto; }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    color: #fff;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0%; height: 2px;
    background: var(--accent-color);
    transition: var(--transition-slow);
}

.nav-links li a:hover::after { width: 100%; }

.btn-contact {
    padding: 8px 20px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color) !important;
    font-size: 12px;
    transition: var(--transition-fast);
}

.btn-contact:hover {
    background: var(--accent-color);
    color: transparent !important;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}
@media (max-width: 900px) {
    .contact-bar { height: auto; padding: 5px 0; }
    .contact-bar-container { padding: 0 10px; }
    .contact-item { width: 30px; height: 30px; font-size: 0.8rem; }
    .btn-about-top span { font-size: 10px; }
    
    .navbar { height: 60px; }
    .menu-toggle { display: block; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 60px; right: 0;
        width: 100%;
        background: var(--bg-color);
        flex-direction: column;
        padding: 30px 20px; 
        border-bottom: 1px solid var(--line-color);
        gap: 20px;
        align-items: flex-end; 
    }
    .nav-links.nav-active { display: flex; }
}
.ticker-bar {
    display: flex !important;
    background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
    color: #000;
    overflow: hidden;
    height: 40px;
    padding: 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    align-items: center;
}

#promo-trigger-btn {
    background: #000;
    color: #D4AF37;
    border: none;
    font-weight: 800;
    font-family: var(--font-heading);
    padding: 0 20px;
    height: 100%;
    cursor: pointer;
    white-space: nowrap;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    animation: promo-flash 1.5s infinite;
    flex-shrink: 0;
    box-shadow: 5px 0 15px rgba(0,0,0,0.3);
}

@keyframes promo-flash {
    0% { background-color: #000; color: #FFD700; }
    50% { background-color: #cc0000; color: #fff; }
    100% { background-color: #000; color: #FFD700; }
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker-move 30s linear infinite;
}

.ticker-content span {
    display: inline-block;
    padding-right: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@keyframes ticker-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-bar:hover .ticker-content { animation-play-state: paused; }
.btn-plans-trigger, .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent-color);
    color: #000;
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-plans-trigger:hover, .btn-submit:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-submit { width: 100%; letter-spacing: 2px; }

input, textarea, select {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    font-family: var(--font-body);
    margin-bottom: 20px;
    border-radius: 0;
    transition: var(--transition-fast);
    outline: none;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--accent-color);
    background: #1a1a1a;
}

.select-wrapper { position: relative; }
.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px; top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    pointer-events: none;
}
select { appearance: none; }
.services-container, 
section#services,
#accordion-container {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
}
.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    height: auto !important;
    padding: 20px 0;
    overflow: visible !important;
}
.service-block-wrapper {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    height: auto !important;
    overflow: visible !important;
}
.service-block-wrapper:has(.active) {
    z-index: 10; 
}
.acc-item {
    position: relative;
    width: 100% !important;
    height: 300px !important;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.acc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.acc-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.acc-item:hover .acc-bg { transform: scale(1.05); }

.acc-content {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.acc-title-vertical {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.acc-chevron {
    margin-top: 10px;
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}
.service-details-inline {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    clear: both;
    background: #000;
}
.inner-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px 10px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.service-card.inline-card {
    background: #000 !important;
    border: 1px solid #333 !important;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: auto !important; 
    min-height: 400px;
    overflow: visible !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card.inline-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.pillar-img-container {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.pillar-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    color: var(--accent-color) !important;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.card-visible-desc, .card-preview-desc {
    color: #ccc !important;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    flex-grow: 1;
}

.btn-pillar-more {
    margin-top: auto;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .acc-item { height: 250px !important; }
    .inner-grid-container { grid-template-columns: 1fr; padding: 15px 5px; }
    .service-card.inline-card { flex-direction: column; height: auto; }

    .section-label {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
    margin-top: 0px;
}
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.massive-year {
    font-size: 15rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--line-color);
    line-height: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-color: #4169E1;

    padding: 40px;
}

.vertical-tag-wrapper {
    position: absolute;
    right: -40px; 
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    display: flex;
    align-items: center;
}

.vertical-word {
    position: absolute;
    display: flex;
    flex-direction: column; 
    align-items: center;
    font-family: var(--font-heading); 
    color: #FFD700;
    font-size: 2rem;
    font-weight: 1000; 
    text-transform: uppercase;
    visibility: hidden; 
}

.vertical-letter {
    display: inline-block;
    line-height: 1.1;
    margin-bottom: 2px;
}
@media (max-width: 768px) {
    .massive-year {
        flex-direction: column; 
        gap: 20px; 
    }

    .vertical-tag-wrapper {
        width: 100%;
        height: 40px; 
        justify-content: center;
    }

    .vertical-word {
        flex-direction: row; 
        letter-spacing: 5px;
        white-space: nowrap;
    }

    .vertical-letter {
        margin-bottom: 0;
        margin-right: 2px;
    }
}
.stats-container {
    display: grid !important; 
    grid-template-columns: repeat(4, 1fr) !important; 
    gap: 15px; 
    padding: 20px 10px;
    max-width: 1200px;
    margin: 0 auto;
    
}


.stat-card { 
    text-align: center;
    padding: 20px 10px !important; 
    background: #fff; 
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}
.stat-icon {
    font-size: 2.5rem !important; 
    color: #FFD700; 
    margin-bottom: 10px;
}

.stat-number { 
    font-size: 2rem !important; 
    font-weight: 800;
    color: #000000; 
    margin: 10px 0;
}

.stat-label { 
    font-size: 0.9rem !important; 
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
}
@media (max-width: 768px) {
    .massive-year {
        flex-direction: column; 
        gap: 20px; 
    }

    .vertical-tag-wrapper {
        position: relative; 
        right: auto;        
        top: auto;         
        transform: none;    
        
        width: 100%;
        height: 50px;      
        justify-content: center;
        margin-top: 10px;  
    }

    .vertical-word {
        flex-direction: row; 
        letter-spacing: 5px;
        white-space: nowrap;
        font-size: 1.2rem; 
    }

    .vertical-letter {
        margin-bottom: 0;
        margin-right: 2px;
    }
}

@media (max-width: 400px) {
    .stats-container {
        grid-template-columns: 1fr !important;
    }
}

.decor-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 4s infinite ease-in-out;
}

.decor-line {
    position: absolute;
    width: 100px;
    height: 1px;
    background: var(--line-color);
    top: 50%;
    left: -50px;
    transform: rotate(45deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.experience-badge {
    position: absolute;
    right: -20px;
    top: 20px;
    width: 120px;
    height: 120px;
    animation: rotateBadge 15s linear infinite;
    opacity: 0.6;
}

@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.leadership-section { padding: 80px 10%; background: #0b0b0b; }
.leader-row {
    display: flex;
    align-items: stretch;
    background: #161616;
    border: 1px solid #222;
    margin-bottom: 60px;
    overflow: hidden;
}
.leader-row.reverse { flex-direction: row-reverse; }
.leader-image { flex: 1; min-height: 400px; overflow: hidden; }
.leader-image img { 
    width: 100%; height: 100%; object-fit: cover; 
    filter: grayscale(100%); transition: var(--transition-slow); 
}
.leader-row:hover .leader-image img { filter: grayscale(0%); transform: scale(1.05); }
.leader-info { flex: 1.2; padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.leader-info blockquote {
    font-size: 1.6rem; font-family: var(--font-heading);
    color: var(--accent-color); margin-bottom: 20px; font-style: italic;
}
.manifesto-luxury { padding: 40px 5%; overflow: hidden; }
.luxury-flex {
    display: flex; align-items: center; justify-content: space-between;
    gap: 60px; max-width: 1200px; margin: 0 auto;
}
.luxury-flex.reverse { flex-direction: row-reverse; }
.luxury-image-col { flex: 1; display: flex; justify-content: center; }
.luxury-img {
    width: 100%; max-width: 500px; height: 600px;
    object-fit: contain !important; object-position: center center !important;
    background-color: transparent; border-radius: 4px;
}
.luxury-text-col { flex: 1; padding: 40px; }
.luxury-icon { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 20px; opacity: 0.5; }
.luxury-quote { font-size: 2rem; font-family: var(--font-heading); color: #fff; font-style: italic; margin-bottom: 20px; }
.luxury-line { width: 60px; height: 3px; background: var(--accent-color); margin-bottom: 15px; }
.luxury-author { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 2px; color: var(--accent-color); font-weight: bold; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; padding: 30px 0;
}
.team-img-pinn img { width: 100%; height: 320px; object-fit: cover; display: block; transition: var(--transition-slow); }
.projects-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-auto-rows: 350px;
    gap: 25px; padding: 20px 0; grid-auto-flow: dense;
}
.project-card-modern {
    position: relative; border-radius: 12px; overflow: hidden;
    cursor: pointer; background: #111;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.project-card-modern.large { grid-column: span 2; }
.project-card-modern.tall { grid-row: span 2; }

.card-media { width: 100%; height: 100%; position: relative; }
.card-media img, .card-media video {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s ease;
}
.project-card-modern:hover .card-media img { transform: scale(1.1); }

.card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 30px; opacity: 1; transition: all 0.4s ease;
}
.card-text { transform: translateY(10px); transition: transform 0.4s ease; }
.project-card-modern:hover .card-text { transform: translateY(0); }
.card-text h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.6rem; color: #fff;
    text-transform: uppercase; margin-bottom: 8px; letter-spacing: 1px;
    border-left: 3px solid #D4AF37; padding-left: 15px;
}
.card-text p {
    font-family: 'Montserrat', sans-serif; font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8); margin-bottom: 15px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.btn-view {
    font-size: 0.8rem; font-weight: 700; color: #D4AF37;
    text-transform: uppercase; letter-spacing: 2px; opacity: 0;
    transform: translateX(-10px); transition: all 0.4s ease 0.1s;
}
.project-card-modern:hover .btn-view { opacity: 1; transform: translateX(0); }
.estimator-card {
    background: var(--surface-color);
    border: 1px solid var(--line-color);
    padding: 40px; border-radius: 5px;
    display: flex; flex-direction: column; gap: 30px;
    width: 100%; max-width: 100%; box-sizing: border-box;
}
.estimator-steps { display: flex; gap: 20px; width: 100%; padding: 40px; border-right: 1px solid var(--line-color); }
.estimator-result { padding: 40px; background: transparent; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.range-toggle { display: flex; gap: 10px; }
.range-btn { flex: 1; padding: 10px; border: 1px solid #333; color: rgb(35, 81, 172); background: transparent; transition: 0.3s; }
.range-btn.active { background: var(--accent-color); color: black; border-color: var(--accent-color); font-weight: bold; }
.partners-section { padding: 60px 0; overflow: hidden; background: var(--bg-color); }
.logos-wrapper {
    display: flex; width: 100%; overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logos-slide {
    display: flex; align-items: center; flex-shrink: 0; width: max-content;
    animation: 40s slide infinite linear;
}
.logos-slide img {
    height: 60px; width: auto; margin: 0 40px; flex-shrink: 0; object-fit: contain; display: block;
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-100%); } }
#pdf-wrapper { width: 100%; max-width: 1000px; margin: 0 auto; position: relative; min-height: 500px; }
#pdf-container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.pdf-page-canvas { width: 100%; height: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-radius: 4px; background: white; }
#pdf-loader { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: #333; z-index: 10; }
.spinner { width: 40px; height: 40px; border: 4px solid #ddd; border-top: 4px solid var(--accent-color); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 15px; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.98); backdrop-filter: blur(15px);
    display: none; justify-content: center; align-items: center; z-index: 10000;
}
.lightbox.active { display: flex !important; }
.lightbox-content {
    background: #111; width: 95vw; height: 85vh; max-width: 1400px;
    display: flex; border-radius: 15px; overflow: hidden; position: relative;
    border: 1px solid rgba(212, 175, 55, 0.4);
}
.lb-media-area { flex: 2.5; background: #000; display: flex; justify-content: center; align-items: center; padding: 20px; }
.lb-media-area img, .lb-media-area video { max-width: 100%; max-height: 100%; object-fit: contain; }
.lb-details-area { flex: 1; padding: 50px; background: #161616; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid #333; }
.lb-details-area h3 { color: #D4AF37; font-family: 'Oswald', sans-serif; font-size: 2.5rem; margin-bottom: 20px; text-transform: uppercase; }
.lb-details-area p { color: #FFFFFF !important; font-family: 'Montserrat', sans-serif; font-size: 1.1rem; line-height: 1.7; }
.close-lightbox { position: absolute; top: 20px; right: 25px; color: #fff; font-size: 40px; cursor: pointer; z-index: 100; }
.lb-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255, 193, 7, 0.8); color: #000;
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 100001; border: none; font-size: 1.5rem;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.service-lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    backdrop-filter: blur(20px); background: rgba(0, 0, 0, 0.8);
    display: none; justify-content: center; align-items: center; z-index: 99999;
}
.svc-lb-content {
    background: #111; border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 30px; box-shadow: 0 50px 100px rgba(0,0,0,0.9);
    max-width: 1100px; width: 90%; display: flex; overflow: hidden;
}
.svc-lb-image-side { flex: 1.5; background: #000; position: relative; display: flex; align-items: center; justify-content: center; }
.svc-lb-image-side img { width: 100%; height: 100%; object-fit: cover; }
.svc-lb-text-side { flex: 1; padding: 50px; background: linear-gradient(135deg, #111 0%, #1a1a1a 100%); }
.svc-lb-close-btn {
    position: absolute; top: 20px; right: 20px; z-index: 100;
    background: rgba(255,255,255,0.1); border: none; color: white;
    width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
}
.svc-lb-nav {
    position: absolute; top: 50%; left: 0; width: 100%; transform: translateY(-50%);
    display: flex; justify-content: space-between; padding: 0 20px; pointer-events: none;
}
.svc-lb-nav button { pointer-events: auto; background: rgba(255,255,255,0.1); border: none; color: white; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; }
#chat-trigger {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--accent-color); color: black;
    border: none; cursor: pointer; z-index: 2001;
    font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
#chat-widget {
    position: fixed; bottom: 100px; right: 30px;
    width: 320px; height: 450px;
    background: #161616; border: 1px solid var(--accent-color);
    display: none; flex-direction: column; z-index: 2000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
#chat-widget.chat-open { display: flex; }
#chat-header { background: #000; padding: 12px; color: var(--accent-color); font-family: var(--font-heading); display: flex; justify-content: space-between; }
#chat-messages { flex: 1; overflow-y: auto; padding: 15px; display: flex; flex-direction: column; gap: 10px; background: #0b0b0b; }
.msg { padding: 8px 12px; border-radius: 5px; max-width: 80%; font-size: 0.9rem; }
.user { align-self: flex-end; background: var(--accent-color); color: black; }
.admin { align-self: flex-start; background: #333; color: white; }
#chat-input-area { padding: 10px; background: #161616; display: flex; border-top: 1px solid #333; }
.promo-overlay {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.9);
    z-index: 10000; display: none; align-items: center; justify-content: center;
    padding: 20px; backdrop-filter: blur(10px);
}
.promo-modal {
    background: #161616; border: 1px solid var(--accent-color);
    max-width: 500px; width: 100%; position: relative; padding: 40px;
    text-align: center; animation: promoFadeIn 0.5s ease;
}
@keyframes promoFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.promo-close { position: absolute; top: 15px; right: 15px; color: #fff; font-size: 1.5rem; cursor: pointer; transition: 0.3s; }
.promo-close:hover { color: var(--accent-color); }
.promo-content h2 { color: var(--accent-color); margin-bottom: 15px; font-family: var(--font-heading); }
.promo-content p { color: #ccc; margin-bottom: 25px; }
.promo-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn-promo-wa { background: #25D366; color: white !important; padding: 10px 20px; border: none; font-weight: bold; }
.btn-promo-share { background: var(--accent-color); color: #000 !important; padding: 10px 20px; border: none; font-weight: bold; }
.promo-nav { display: flex; justify-content: space-between; margin-top: 20px; border-top: 1px solid #333; padding-top: 15px; }
.promo-nav button { background: none; border: 1px solid #444; color: #fff; padding: 5px 15px; cursor: pointer; }
.footer-section {
    background: #000; padding: 80px 0 20px;
    border-top: 5px solid var(--accent-color);
}
.footer-grid { display: flex; flex-direction: column; gap: 40px; text-align: center; }
.social-icons { display: flex; justify-content: center; gap: 15px; margin-top: 10px; }
.social-icons a { color: #fff; font-size: 1.2rem; transition: 0.3s; }
.social-icons a:hover { color: var(--accent-color); }
.footer-bottom {
    border-top: 1px solid #222; padding-top: 20px; margin-top: 40px;
    text-align: center; color: #666; font-size: 0.8rem;
}

@media (min-width: 1024px) {
    .footer-grid { flex-direction: row; justify-content: space-between; text-align: left; }
    .col-center { text-align: center; }
    .col-right { text-align: right; }
    .col-right .social-icons { justify-content: flex-end; }
}
body.light-mode {
    --bg-color: #ffffff;
    --surface-color: #f4f4f4;
    --text-color: #1a1a1a;
    --line-color: rgba(0, 0, 0, 0.1);
}
body.light-mode .navbar { background: rgba(255, 255, 255, 0.95); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
body.light-mode .nav-links li a, body.light-mode .menu-toggle { color: #000; }
body.light-mode .manifesto-card, body.light-mode .team-card, body.light-mode .leader-row,
body.light-mode .estimator-card, body.light-mode .product-card {
    background: #ffffff; border: 1px solid #e0e0e0; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
body.light-mode input, body.light-mode textarea, body.light-mode select { background: #ffffff; color: #000; border: 1px solid #ccc; }
body.light-mode .footer-section { background: #f9f9f9; color: #333; }
body.light-mode .footer-section h2, body.light-mode .footer-section h4 { color: #000; }
body.light-mode .footer-tagline, body.light-mode .copyright { color: #666; }
body.light-mode .social-icons a { color: #333; }
body.light-mode .hero-title, body.light-mode .hero-subtitle { color: #fff !important; text-shadow: none; }
body.light-mode #chat-widget { background: #fff; border-color: #ddd; color: #000; }
body.light-mode #chat-messages { background: #f4f4f4; }
body.light-mode #chat-input-area { background: #fff; border-color: #ddd; }
body.light-mode .team-info { background: #fff !important; }
@keyframes breathing-glow {
    0%, 100% { text-shadow: 0 0 0px rgba(255, 255, 255, 0); transform: scale(1); opacity: 0.8; }
    50% { text-shadow: 0 0 10px rgba(255, 193, 7, 0.8); transform: scale(1.05); opacity: 1; }
}
@media (max-width: 992px) {
    .leader-row, .leader-row.reverse { flex-direction: column !important; }
    .leader-image { height: 300px; min-height: 300px; }
    .leader-info { padding: 30px; }
    .luxury-flex, .luxury-flex.reverse { display: grid !important; grid-template-columns: 45% 55% !important; gap: 10px !important; padding: 40px 0 !important; }
    .luxury-flex.reverse { direction: rtl !important; }
    .luxury-flex.reverse > * { direction: ltr !important; }
    .luxury-img { height: 200px !important; }
    .luxury-quote { font-size: 0.75rem !important; line-height: 1.2 !important; margin-bottom: 3px !important; }
    .luxury-author { font-size: 0.6rem !important; }
}

@media (max-width: 768px) {
    html { font-size: 13px; }
    .container { width: 95%; padding: 0 10px; }
    .section-title { font-size: 2rem !important; margin-bottom: 20px; }
    .hero-title { font-size: 1rem !important; }
    .grid-2 { grid-template-columns: 1fr !important; gap: 30px; }
    .about-text p { font-size: 1rem !important; text-align: justify; }
    .massive-year { font-size: 8rem !important; width: 100%; justify-content: center; }
    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px !important; }
    .team-card { width: 100% !important; margin: 0 !important; }
    .team-img-pinn img { height: 180px !important; }
    .team-info h3 { font-size: 0.85rem !important; }
    .team-info p { font-size: 0.65rem !important; white-space: normal !important; text-align: center !important; }
    .projects-grid-modern { grid-template-columns: 1fr; grid-auto-rows: 280px; gap: 15px; }
    .project-card-modern.large { grid-column: span 1; }
    .btn-view { opacity: 1; transform: none; }
    .estimator-steps { flex-direction: column !important; gap: 20px !important; }
    .estimator-card { padding: 20px !important; width: 100% !important; }
    .step input, .step select { width: 100% !important; }
    .result-box h2 { font-size: 1.4rem !important; }
    .footer-grid { flex-direction: row !important; flex-wrap: wrap; justify-content: space-between; }
    .footer-col { flex: 1 1 45%; }
    .lightbox-content { flex-direction: column; height: 95vh; }
    .lb-media-area { flex: 1; }
    .lb-details-area { flex: 1; padding: 30px; }
    .logos-slide img { height: 40px; margin: 0 20px; }
}
.leader-image img, 
.team-img-pinn img {
    filter: none !important;
    -webkit-filter: none !important;
}
.acc-item::before {
    background: transparent !important;
}
.about-hero {
    padding: 180px 10% 100px;
    background:  
    url('/banniere/dev.png'); 
    background-size: cover;
    background-position: center;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff !important; 
}

.card-overlay {
    background: transparent !important;
}
.overlay-dark {
    background: transparent !important;
    display: none !important;
}
.acc-title-vertical, 
.card-text h3, 
.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
}
.acc-item:not(.active) .inner-grid-container {
    display: none !important;
}

.acc-item.active .inner-grid-container {
    display: grid !important; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 25px !important;
    padding: 20px !important;
}
body.light-mode .main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    width: 100vw; 
    margin-left: calc(-50vw + 50%); 
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

body.light-mode .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0% 0 0; 
    height: 60px;
    width: 100%;
    max-width: 1600px; 
    margin: 0 auto;
    background: transparent; 
    box-shadow: none; 
}



.hero-bg.active {
    opacity: 1 !important;
}

.hero-bg img {
    position: relative;
    z-index: 5;
    height: 100%;
    width: 100%; 
    object-fit: cover; 
    box-shadow: 0 0 50px rgba(0,0,0,0.8); 
}
.overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 6;
    pointer-events: none;
}


@media (max-width: 768px) {
    .footer-col.col-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col .social-icons {
        justify-content: center; 
        width: 100%;
    }

    .footer-col.col-right .footer-contact-item {
        justify-content: center !important; 
    }
    
    .footer-col.col-right {
        text-align: center;
    }
}
.footer-col.col-left {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.social-wrapper {
    margin-top: 20px;
}

.footer-col .social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-start; 
    padding: 0;
}
@media (max-width: 768px) {
    .footer-col.col-left {
        text-align: center;
        align-items: center; 
        margin-bottom: 30px;
    }

    .footer-col .social-icons {
        justify-content: center; 
        width: 100%;
    }
    
    .footer-col.col-right .footer-contact-item {
        justify-content: center !important;
    }
    
    .footer-col.col-right {
        text-align: center;
    }
}
.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cta-image-container {
    flex: 1;
    position: relative;
}

.cta-main-img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    display: block;
}

.cta-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-logo-mini {
    height: 40px;
    width: auto;
}

.cta-content {
    flex: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 20px 0;
    color: #555;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
}

.benefit-item {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-item span {
    color: var(--highlight-color, #D4AF37); 
}

.cta-actions {
    display: flex;
    gap: 15px;
}
@media (max-width: 992px) {
    .cta-wrapper {
        flex-direction: column;
        padding: 20px;
    }
    .cta-benefits {
        grid-template-columns: 1fr;
    }
}

.cta-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; 
}
.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: #D4AF37; 
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    border: 2px solid #e67e22;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: #e67e22 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}
.btn-secondary-outline {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    color: #333 !important;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.btn-secondary-outline:hover {
    background-color: #333;
    color: #ffffff !important;
    transform: translateY(-3px);
}
@media (max-width: 480px) {
    .cta-actions {
        flex-direction: column;
    }
    .btn-primary, .btn-secondary-outline {
        width: 100%;
    }
}
#catalogue-viewer{
    position: relative;
    max-width: 900px;
    margin: auto;
    perspective: 2000px;
}

#pdf-canvas{
    width:100%;
    background:white;
    border-radius:6px;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
    transform-origin:left center;
    transition: transform 0.6s ease;
}

#pdf-canvas.page-flip{
    transform: rotateY(-180deg);
}

.pdf-controls{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:20px;
}

.pdf-controls button{
    background:var(--accent-color);
    border:none;
    color:black;
    padding:10px 15px;
    cursor:pointer;
    font-size:18px;
}
.project-card-modern {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid #333;
}

.project-image {
    position: relative;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.project-info { padding: 20px; }
.project-info h3 { color: #FFC107; font-family: 'Oswald'; margin-bottom: 10px; }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.951);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.close-lightbox { position: absolute; top: 20px; right: 30px; font-size: 40px; color: white; cursor: pointer; }
.media-container img, .media-container video { max-width: 90vw; max-height: 80vh; border: 3px solid #FFC107; }

.project-overlay {
    background: rgb(255, 255, 255) !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.project-card-modern:hover .project-overlay {
    opacity: 1;
}

.projects-swiper .swiper-slide {
    height: auto; 
}


.hero-bg-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}






.header-wrapper.scrolled {
    background: var(--bg-color) !important; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
}



.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4) !important; 
    backdrop-filter: blur(5px);
}

.hero-section {
    width: 100%;
    height: 82vh !important;
    min-height: 300px;
    position: relative;
    margin-top: 140px !important; 
    padding: 0;
    overflow: hidden;
    background-color: #ffffff;
}

.hero-bg {
    width: 100%;
    height: auto !important;
    display: block;
    position: relative;
    object-fit: contain; 
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
}

.hero-bg.active {
    opacity: 1 !important;
    z-index: 5;
}

.hero-content {
    position: absolute;
    top: 55%; 
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 90%;
    text-align: center;
}






.overlay-dark {
    position: absolute;
    inset: 0;
   
    display: block !important;
    z-index: 6;
    pointer-events: none;
}


.services-hero {
    position: relative !important;
    width: 100% !important;
    height: 40vh !important; 
    margin-top: 80px !important; 
    overflow: hidden !important;
    background: #000 !important;
}

.services-hero .hero-bg {
    position: absolute !important; 
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0.5 !important;
    background-image: url('/service/484545368_964141505858030_1869295763018945934_n.jpg');
    background-size: cover !important;
    background-position: center !important;
    z-index: 1 !important;
}

.services-hero .hero-content {
    position: relative !important; 
    z-index: 2 !important;
    top: auto !important; 
    left: auto !important;
    transform: none !important;
}
@media (max-width: 768px) {
    
    .hero-section {
        height: 50vw !important; 
        min-height: 250px !important; 
        margin-top: 140px !important; 
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        overflow: visible !important; 
    }

    .hero-bg img {
        height: 100% !important;
        object-fit: cover !important; 
        object-position: top center !important; 
    }

    .hero-section + section, 
    #about,
    .about-section {
        margin-top: -65px !important; 
        padding-top: 10px !important;
        position: relative;
        z-index: 10;
        background-color: var(--bg-color);
    }

    .hero-content {
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 95% !important;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.1rem !important; 
        margin-bottom: 5px !important;
    }

    .hero-content p {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .hero-btns {
        display: flex;
        justify-content: center;
        gap: 8px;
    }
    
    .btn-main, .btn-sec {
        padding: 8px 15px !important;
        font-size: 10px !important;
    }
}
.scroll-indicator {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent-color);
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-arrows span {
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    transform: rotate(45deg);
    margin: -3px;
    animation: arrow-down 2s infinite;
}

.scroll-arrows span:nth-child(2) { animation-delay: -0.2s; }
.scroll-arrows span:nth-child(3) { animation-delay: -0.4s; }

@keyframes arrow-down {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none !important;
    }
    
#contact-cta {
    position: relative !important;
    margin-top: 0 !important;
    padding-top: 20px !important;
    z-index: 1; 
}
#contact-cta .section-label {
    margin-top: 0 !important; 
    margin-bottom: 20px !important;
}

}

#contact-cta {
    position: relative !important;
    margin-top: 0 !important;
    padding-top: 20px !important;
    z-index: 1; 
}

#contact-cta .section-label {
    margin-top: 0 !important; 
    margin-bottom: 20px !important;
}
.partners-section .section-label {
    margin-top: 0 !important;
}
.projects-swiper {
    padding: 0 50px !important;
    position: relative;
}

.projects-swiper .swiper-button-next {
    right: 5px !important;
    color: var(--accent-color) !important;
}

.projects-swiper .swiper-button-prev {
    left: 5px !important;
    color: var(--accent-color) !important;
}

@media (max-width: 768px) {
    .projects-swiper {
        padding: 0 10px !important; 
    }
    .projects-swiper .swiper-button-next,
    .projects-swiper .swiper-button-prev {
        display: none !important; 
    }
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: -65px;
}

.why-text-area .section-desc {
    margin: 25px 0;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.6;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--surface-color);
    padding: 30px;
    border: 1px solid var(--line-color);
    transition: var(--transition-fast);
}

.why-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.why-card.highlight-card {
    background: var(--accent-color);
}

.why-card.highlight-card .card-icon,
.why-card.highlight-card h3,
.why-card.highlight-card p {
    color: #000;
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.why-card p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-cards-grid {
        grid-template-columns: 1fr;
    }
}


.horizontal-categories-scroll {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 10px 40px 10px; 
    scroll-behavior: smooth;
    width: 100%;
    align-items: center;
 
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) #f1f1f1;
}

.horizontal-categories-scroll::-webkit-scrollbar {
    height: 10px;
}
.horizontal-categories-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.horizontal-categories-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.h-category-card {
    flex: 0 0 260px;
    height: 450px;  
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.h-category-card:hover, 
.h-category-card.active {
    flex: 0 0 450px; 
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.h-cat-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.h-category-card:hover .h-cat-bg,
.h-category-card.active .h-cat-bg {
    transform: scale(1.05); 
}

.h-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
    transition: all 0.5s ease;
}

.h-category-card.active .h-cat-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.3) 100%);
}

.h-cat-content {
    position: relative;
    z-index: 3;
    padding: 30px 25px;
    width: 100%;
}

.h-cat-text h3 {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    color: #FFC107;
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}

.h-cat-text p {
    font-family: var(--font-body, 'Montserrat', sans-serif);
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-top: 0;
}

.h-category-card:hover .h-cat-text p, 
.h-category-card.active .h-cat-text p {
    opacity: 1;
    max-height: 150px; 
    margin-top: 15px;
    white-space: normal; 
}

@media (max-width: 768px) {
    .h-category-card {
        flex: 0 0 220px;
        height: 380px;
    }
    .h-category-card:hover, 
    .h-category-card.active {
        flex: 0 0 320px;
    }
    .h-cat-text h3 {
        font-size: 1.4rem;
    }
}
.hero-section .hero-content {
    left: 5% !important;             
    transform: translateY(-50%) !important; 
    text-align: left !important;
    width: 90% !important;
}

.hero-title {
font-size: clamp(1.5rem, 5vw, 2.8rem) !important;    line-height: 1.2 !important;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1.4rem, 5vw, 2.4rem) !important;
    font-weight: 500;
    letter-spacing: 1px;
}

.scroll-indicator {
    align-items: flex-start !important;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hero-section .hero-content {
        left: 4% !important;
        width: 92% !important;
    }
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem) !important;
    }
    .hero-subtitle {
        font-size: 1rem !important;
    }
}

.about-section,
.stats-section,
#projets,
.partners-section,
.why-us,
#contact,
#contact-cta,
footer.footer-section {
    margin-bottom: 80px;
}

.why-grid {
    margin-top: 0 !important;
}

footer.footer-section {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-section,
    .stats-section,
    #projets,
    .partners-section,
    .why-us,
    #contact,
    #contact-cta {
        margin-bottom: 50px;
    }
}


.btn-submit {
    background: #0066CC !important;
    color: white !important;
    border: none;
}
.btn-submit:hover {
    background: #004499 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.contact-title span {
    color: #0066CC !important;
}

.info-box h3 {
    border-left-color: #0066CC !important;
}

#map-location .fa-map-marker-alt {
    color: #0066CC !important;
}

input:focus, textarea:focus, select:focus {
    border-color: #0066CC !important;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

.select-wrapper::after {
    color: #0066CC !important;
}

.footer-contact-item a:hover {
    color: #0066CC !important;
}

#news-feedback {
    color: #0066CC !important;
}

body.light-mode .btn-submit {
    background: #0066CC !important;
    color: white !important;
}
body.light-mode .btn-submit:hover {
    background: #004499 !important;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 95%;
    padding: 0 15px;
    margin: 0 auto;
}

h1, h2, h3, .hero-title, .section-title {
    word-break: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 1200px) {
    .projects-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        grid-auto-rows: auto;
    }
    .project-card-modern.large {
        grid-column: span 1;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 0;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    .hero-section {
        height: 50vh !important;
        margin-top: 70px !important;
    }
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem) !important;
    }
    .cta-wrapper {
        flex-direction: column;
        padding: 20px;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary, .btn-secondary-outline {
        width: 100%;
        text-align: center;
    }
    .footer-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .footer-col {
        flex: 1 1 45%;
        text-align: center;
    }
    .vertical-tag-wrapper {
        position: static;
        transform: none;
        height: auto;
        margin-top: 20px;
        justify-content: center;
    }
    .vertical-word {
        position: static;
        flex-direction: row;
        font-size: 1.2rem;
        visibility: visible !important;
    }
    .vertical-letter {
        display: inline-block;
        margin: 0 2px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .hero-content {
        width: 95%;
        text-align: center;
    }
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem) !important;
    }
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    .stats-container {
        grid-template-columns: 1fr 1fr !important;
    }
    .stat-card {
        padding: 15px !important;
    }
    .stat-number {
        font-size: 1.5rem !important;
    }
    .why-card {
        padding: 20px;
    }
    .card-icon {
        font-size: 1.5rem;
    }
    .projects-swiper {
        padding: 0 10px !important;
    }
    .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }
    .lightbox-content {
        flex-direction: column;
        height: 90vh;
    }
    .lb-media-area, .lb-details-area {
        flex: 1;
    }
    .lb-details-area {
        padding: 20px;
    }
    #chat-widget {
        width: 280px;
        right: 10px;
        bottom: 80px;
    }
    #chat-trigger {
        right: 10px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr !important;
    }
    .footer-col {
        flex: 1 1 100%;
    }
    .contact-title {
        font-size: 2rem;
    }
    .map-container {
        height: 250px;
    }
    .info-box {
        padding: 15px;
    }
    .btn-plans-trigger, .btn-submit {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}

.hero-bg-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-bg-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-bg-container img.active {
    opacity: 1;
    z-index: 1;
}

.project-description, .card-preview-desc, .why-card p {
    word-break: break-word;
    overflow-wrap: break-word;
}

input, textarea, select {
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 70px !important;
        position: relative;
        height: auto;
        min-height: 300px;
        display: flex;
        align-items: center;
    }
    .hero-bg-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .hero-bg-container img {
        height: 100%;
        object-fit: cover;
    }
    .hero-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100%;
        text-align: left !important;
        padding: 0 20px;
        z-index: 2;
        background: transparent !important; 
    }
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem) !important;
        margin-bottom: 10px;
    }
    .hero-subtitle {
        font-size: 1rem !important;
    }
    .scroll-indicator {
        display: none; 
    }
}
.hero-title .anim-text {
    display: block;
}
@media (max-width: 768px) {
    .hero-content {
        position: relative !important;
        top: auto !important;
        left: 0 !important;           
        transform: none !important;
        width: 100%;
        text-align: left !important;
        padding: 0 10px !important; 
        z-index: 2;
        background: transparent !important;
    }
}
@media (min-width: 769px) {
    .massive-year {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
        padding: 40px 0;
    }

    .vertical-tag-wrapper {
        position: relative !important;
        right: auto !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
        width: 100%;
        flex-wrap: wrap;
    }

    .vertical-word {
        position: relative !important;
        visibility: visible !important;
        display: inline-block;
        font-size: 1.3rem;
        letter-spacing: 2px;
        opacity: 1;
        margin: 0 10px;
        text-transform: uppercase;
    }
}
@media (max-width: 900px) {
    .logo {
        order: 1 !important;
    }
    .header-social-icons {
        order: 2 !important;
        margin-right: 10px !important;
    }
    .menu-toggle {
        order: 3 !important;
    }
}

:root {
    --font-heading: 'Montserrat', sans-serif !important;
}

h1, h2, h3, h4, .section-label, .hero-title, .section-title,
.nav-links li a, .btn-contact, .btn-plans-trigger, .stat-number,
.why-card h3, .card-text h3, .acc-title-vertical, .vertical-word,
.footer-title, .social-label, .cta-content h2, .cta-description, .benefit-item,
.menu-toggle, .ticker-content span, #promo-trigger-btn {
    font-family: 'Montserrat', sans-serif !important;
}

.nav-links li a {
    font-weight: 700 !important;
}

body {
    font-size: 1.05rem;  
}

.footer-title {
    font-size: 2rem !important;      
}

body.light-mode .footer-section {
    background: #f8f9fa !important;
    border-top: 4px solid #0066CC !important;
    color: #212529 !important;
}

body.light-mode .footer-section .footer-title {
    background: linear-gradient(135deg, #0066CC, #004499) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    font-weight: 700;
}

body.light-mode .footer-section .footer-tagline {
    color: #0066CC !important;
}

body.light-mode .footer-section .social-label {
    color: #495057 !important;
    font-weight: 600;
}

body.light-mode .footer-section .social-icons a {
    background: #e9ecef !important;
    color: #0066CC !important;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
body.light-mode .footer-section .social-icons a:hover {
    background: #0066CC !important;
    color: white !important;
    transform: translateY(-3px);
}

body.light-mode .footer-section .footer-contact-item {
    color: #212529 !important;
}
body.light-mode .footer-section .footer-contact-item i {
    color: #0066CC !important;
}
body.light-mode .footer-section .footer-contact-item a {
    color: #212529 !important;
    text-decoration: none;
}
body.light-mode .footer-section .footer-contact-item a:hover {
    color: #FFD700 !important; 
}

body.light-mode .footer-section .footer-newsletter {
    border-top: 1px solid #dee2e6 !important;
}
body.light-mode .footer-section .footer-newsletter h4 {
    color: #0066CC !important;
}
body.light-mode .footer-section .footer-newsletter p {
    color: #6c757d !important;
}
body.light-mode .footer-section .newsletter-form input {
    background: white !important;
    border: 1px solid #ced4da !important;
    color: #212529 !important;
    border-radius: 50px;
}
body.light-mode .footer-section .newsletter-form button {
    background: #0066CC !important;
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
}
body.light-mode .footer-section .newsletter-form button:hover {
    background: #004499 !important;
    color: #FFD700 !important;
    transform: translateY(-2px);
}

body.light-mode .footer-section .footer-about-cta {
    border-bottom: 1px solid #dee2e6 !important;
}
body.light-mode .footer-section .footer-about-cta h4 {
    color: #0066CC !important;
}
body.light-mode .footer-section .footer-about-cta p {
    color: #6c757d !important;
}
body.light-mode .footer-section .footer-about-cta .btn-plans-trigger {
    background: #0066CC !important;
    color: white !important;
    border: none !important;
    border-radius: 50px;
    padding: 12px 30px;
}
body.light-mode .footer-section .footer-about-cta .btn-plans-trigger:hover {
    background: #004499 !important;
    color: #FFD700 !important;
    transform: translateY(-2px);
}

body.light-mode .footer-section .copyright {
    color: #6c757d !important;
    border-top: 1px solid #dee2e6 !important;
}

.chat-invite {
    position: fixed;
    bottom: 100px;        
    right: 20px;
    background-color: #0066CC;
    color: white;
    padding: 10px 15px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: auto;
    font-family: 'Montserrat', sans-serif;
}
.chat-invite.show {
    opacity: 1;
    transform: translateX(0);
}
.chat-invite .close-invite {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.7;
}
.chat-invite .close-invite:hover {
    opacity: 1;
}
@media (max-width: 768px) {
    .chat-invite {
        bottom: 90px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

#contact .footer-info h2 {
    font-size: 1.7rem !important;   
}

#contact .footer-info p {
    font-size: 1.5rem !important;   
    line-height: 1.5 !important;
    opacity: 0.9 !important;
}

@media (max-width: 768px) {
    #contact .footer-info h2 {
        font-size: 1.25rem !important;
    }
    #contact .footer-info p {
        font-size: 1rem !important;
    }
}

@media (min-width: 769px) and (pointer: fine) {
    .footer-title {
        font-size: 1.2rem !important;  
        line-height: 1.2 !important;
    }

    .footer-newsletter #newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.footer-newsletter #newsletter-form input {
    width: 100%;
    max-width: 350px;
    text-align: center;
    padding: 12px;
}

.footer-newsletter #newsletter-form button {
    width: auto;
    min-width: 200px;
}
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 90%;
        margin: 10px auto;
        background: transparent;
        backdrop-filter: blur(10px);
        border-radius: 24px;
        padding: 20px 16px;
        flex-direction: column;
        gap: 12px;
        box-shadow: 0 20px 35px -10px rgba(0,0,0,0.25);
        border: 1px solid rgba(0,102,204,0.2);
        z-index: 1000;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    .nav-links.nav-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        list-style: none;
        margin: 0;
    }

    .nav-links li a {
        display: block;
        text-align: center;
        padding: 14px 20px;
        background: #f8f9fc;
        border-radius: 60px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        color: #003366 !important;
        letter-spacing: 0.5px;
        border: 1px solid #e9ecef;
        transition: all 0.2s ease;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .nav-links li a::after {
        display: none; /* supprime la ligne sous le lien */
    }

    .nav-links li a:hover,
    .nav-links li a:active {
        background: #0066CC;
        color: white !important;
        border-color: #0066CC;
        transform: scale(1.02);
        box-shadow: 0 8px 18px rgba(0,102,204,0.3);
    }

    .nav-links li:last-child a:hover,
    .nav-links li:last-child a:active {
        background: #004499;
        transform: scale(1.02);
    }

    /* Overlay sombre derrière le menu (optionnel) */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(3px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Ajustement du header pour z-index */
    .header-wrapper {
        z-index: 1001;
    }
}

/* Force le masquage du curseur système sur TOUS les éléments */
*,
*::before,
*::after {
    cursor: none !important;
}

/* Spécifique aux vidéos et leurs contrôles (webkit) */
video,
video *,
video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-overlay-play-button,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-timeline,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
    cursor: none !important;
}

/* Pour Firefox */
video {
    cursor: none !important;
}

/* Masquer le curseur par défaut sur tout le site */
html, body, body * {
    cursor: none !important;
}



/* Effet « wow » : animation de pulsation légère */
.cursor-follower {
    animation: pulse 1.5s infinite;
}



/* Curseur virtuel aux couleurs de l’identité BAT & PREFAB */
.cursor-follower {
    position: fixed;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.85);  /* Bleu principal semi-transparent */
    backdrop-filter: blur(4px);
    border: 2px solid #FFC107;            /* Jaune d’or */
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.8), 0 0 5px rgba(255, 193, 7, 0.6);
    pointer-events: none;
    z-index: 1000000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    animation: pulse 1.5s infinite;
}

.cursor-follower.hover {
    width: 48px;
    height: 48px;
    background: rgba(255, 193, 7, 0.9);  /* Jaune en survol */
    border-color: #0066CC;               /* Bordure bleue */
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
}
/* Masquage absolu du curseur système sur tous les éléments sans exception */
*,
*::before,
*::after,
html, body, div, span, a, button, input, select, textarea,
.btn, .menu-toggle, .nav-links li a, .header-social-icons .social-icon,
.swiper-button-next, .swiper-button-prev, .project-card-modern,
.lb-nav, .dot, .close-lightbox, #chat-trigger, .promo-close,
.btn-promo-wa, .btn-promo-share, .promo-nav button,
video::-webkit-media-controls, video::-webkit-media-controls-panel,
video::-webkit-media-controls-enclosure, video::-webkit-media-controls-overlay-play-button,
video::-webkit-media-controls-play-button, video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-mute-button, video::-webkit-media-controls-timeline,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
    cursor: none !important;
}

video {
    cursor: none !important;
}

/* Bouton flottant de suivi */
.floating-suivi {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 9999;
    background: #0066CC;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,102,204,0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.2);
}

.floating-suivi i {
    font-size: 1.2rem;
}

.floating-suivi:hover {
    background: #004499;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,102,204,0.5);
}

@media (max-width: 768px) {
    .floating-suivi {
        bottom: 20px;
        left: 15px;
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    .floating-suivi i {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #promo-trigger-btn {
        padding: 4px 10px;
        font-size: 0.65rem;
        font-weight: normal;
    }
    #promo-trigger-btn i {
        font-size: 0.65rem;
        margin-right: 4px;
    }
}
#chatSavModal .message img,
#globalChatSavModal .message img {
    pointer-events: auto !important;
    cursor: pointer;
}