:root {
    /* Colors from Stitch Design */
    --primary: #990000;
    --primary-hover: #770000;
    --gold: #f0c664;
    --bg-dark: #121212;
    --bg-darker: #0d0d0d;
    --bg-card: #1a1a1a;
    --text-light: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.55);
    --border-light: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-display: 'Lexend', sans-serif;
    --font-technical: 'Space Grotesk', sans-serif;

    /* Transitions */
    --transition-slow: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    position: relative;

}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-display);
    line-height: 1.6;

}

/* Typography Utilities */
h1,
h2,
h3,
h4,
.technical {
    font-family: var(--font-technical);
}

.text-shadow-premium {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.gradient-overlay {
    background: linear-gradient(to bottom,
            rgba(18, 18, 18, 0.8) 0%,
            rgba(18, 18, 18, 0.4) 50%,
            var(--bg-dark) 100%);
}

/* Layout Modules */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Custom Components */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    border: 1px solid var(--border-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-white {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.btn-white:hover {
    background-color: var(--gold);
}

/* Animations */
@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes rotate3d {
    0% {
        transform: perspective(400px) rotateY(0deg);
    }

    100% {
        transform: perspective(400px) rotateY(360deg);
    }
}

.animate-scroll {
    animation: scrollLine 2s infinite ease-in-out;
}

/* Navigation Links */
.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2.5rem;
        margin-left: auto;
        margin-right: 2.5rem;
    }
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0 1.5rem;
}

.social-link {
    color: var(--text-light);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: black;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--border-light);
    border: 1px solid var(--border-light);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-side {
    padding: 4rem;
    background: var(--bg-dark);
}

.contact-map-side {
    background: #111;
    position: relative;
    min-height: 400px;
}

.contact-map-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.7;
    background: rgba(18, 18, 18, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    pointer-events: none;
    /* Allow clicks to pass to the map */
    transition: background 0.5s ease;
}

.contact-map-side:hover .contact-map-overlay {
    background: rgba(18, 18, 18, 0);
    /* Fade background on hover */
}


.location-card {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    padding: 3rem;
    text-align: center;
    max-width: 320px;
}

.phone-contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    transition: var(--transition-base);
    width: fit-content;
}

.phone-contact:hover {
    transform: translateX(8px);
}

.phone-contact span {
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition-base);
}

.phone-contact a {
    color: white;
    text-decoration: none;
    font-family: var(--font-technical);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: var(--transition-base);
}

.phone-contact:hover a,
.phone-contact:hover span {
    color: var(--gold);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.form-control {
    width: 100%;
    background: #1a1a1a;
    border: none;
    padding: 0 1.5rem;
    color: white;
    font-family: var(--font-display);
    font-size: 0.875rem;
    min-height: 4rem;
}

textarea.form-control {
    min-height: 12rem;
    padding: 1.5rem;
    resize: vertical;
}

.form-control:focus {
    outline: 1px solid var(--gold);
}

/* Interactive Map Features */
.location-card {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
}

.contact-map-side:hover .location-card {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .location-card {
        display: none;
    }

    .contact-form-side {
        padding: 1.5rem;
    }
}

.google-map-iframe {
    filter: grayscale(100%) invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
    opacity: 0.6;
    transition: var(--transition-base);
}

.contact-map-side:hover .google-map-iframe {
    filter: grayscale(0%) invert(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    opacity: 1;
}

.sidebar-link.active {
    background-color: rgba(204, 0, 0, 0.1) !important;
    color: var(--primary) !important;
    border-color: rgba(204, 0, 0, 0.2) !important;
}

/* Partners Carousel */
.partners {
    padding: 4rem 0;
    background: var(--bg-darker);
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-light);
}

.partners-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scrollBrands 40s linear infinite;
    align-items: center;
}

.partners-track:hover {
    animation-play-state: paused;
}

.brand-logo {
    height: 150px;
    /* Increased size to compensate for image padding */
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: opacity(0.4);
    mix-blend-mode: screen;
    /* Hides black backgrounds if present */
    transition: var(--transition-base);
}

.brand-logo:hover {
    filter: opacity(1);
    transform: scale(1.1);
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partners {
        padding: 4rem 0;
    }

    .partners-track {
        gap: 2rem;
    }

    .brand-logo {
        height: 150px;
    }

    .conclusion-text {
        padding-right: 2rem;
    }
}

/* --- Styles moved from index.html internal <style> block --- */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 1.125rem;
}

.brand-tagline {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.3em;
    font-weight: 500;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.6;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.45), rgba(18, 18, 18, 0.8));
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5) 2px,
            transparent 2px,
            transparent 4px);
    background-size: 6px 6px;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 1rem;
}

.fade-in-logo {
    opacity: 0;
    transform: translateY(30px);
}

.hero-content.active .fade-in-logo {
    animation: fadeInLogo 4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.h1-line-wrapper {
    overflow: hidden;
    display: block;
}

.slide-left {
    display: inline-block;
    opacity: 0;
}

.hero-content.active .slide-left {
    animation: slideFromLeft 2.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.2s;
}

.slide-right {
    display: inline-block;
    opacity: 0;
}

.hero-content.active .slide-right {
    animation: slideFromRight 2.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.5s;
}

@keyframes slideFromLeft {
    from {
        transform: translateX(-150%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromRight {
    from {
        transform: translateX(150%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.expertise {
    padding: 6rem 0;
    background: var(--bg-card);
    background-image: linear-gradient(to left top, #000000, #0e0609, #160d12, #1c1219, #211621, #2c182a, #371a32, #441a3a, #5f113a, #780032, #8d0020, #9a0000);
}

.section-header {
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}

.section-title h2 {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title h3 {
    font-size: 2.5rem;
    max-width: 680px;
    line-height: 1.4;
}

.section-intro {
    width: 100%;
    color: var(--text-dim);
    font-size: 0.875rem;
    text-align: justify;
}

.cert-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(234, 179, 8, 0.05);
    border: 1px solid rgba(234, 179, 8, 0.2);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
}

.cert-badge .material-symbols-outlined {
    font-size: 1.25rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1px;
    background: transparent;
    border: 1px solid var(--border-light);
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: transparent;
    padding: 3rem;
    transition: var(--transition-base);
    opacity: 0.8;
}

.service-card:hover {
    background: #1a1a1a;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.portfolio {
    padding: 6rem 0;
}

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

.portfolio-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #111;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-slow);
    transform: scale(1.1);
}

.portfolio-item:hover img {
    filter: grayscale(0);
    transform: scale(1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 1;
}

.portfolio-info {
    transform: translateY(45px);
    transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.portfolio-info h5 {
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.portfolio-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0;
    transition: var(--transition-base);
    margin-top: 0.5rem;
}

.portfolio-item:hover .portfolio-info p {
    opacity: 1;
}

.testimonials {
    padding: 6rem 0;
    background-image: linear-gradient(to right top, #000000, #060606, #0c0c0c, #111111, #151515, #1c1921, #261c2c, #321e35, #50193d, #700738, #8a0025, #9a0000);
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    padding: 2rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
}

.stars {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.875rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Animated Border Card */
.animated-border-card {
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: var(--bg-dark);
    border: 1px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.animated-border-card::before {
    content: '';
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: conic-gradient(transparent, var(--gold), transparent);
    animation: rotate-border 8s linear infinite;
}

.animated-border-card::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: var(--bg-dark);
}

@keyframes rotate-border {
    100% {
        transform: rotate(1turn);
    }
}

/* Page Loader */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

#loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-main-logo {
    width: 250px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.loader-logo {
    width: 40px;
    height: 60px;
    margin-bottom: 2.5rem;
    position: relative;
}

.electric-bolt {
    width: 100%;
    height: 100%;
    fill: var(--gold);
    filter: drop-shadow(0 0 15px rgba(234, 179, 8, 0.8));
    animation: electric-flicker 1.5s infinite, fadeInDown 2.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes electric-flicker {

    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(234, 179, 8, 0.9));
        transform: scale(1);
    }

    5%,
    15% {
        opacity: 0.8;
        filter: drop-shadow(0 0 5px rgba(234, 179, 8, 0.4));
        transform: scale(0.98);
    }

    10% {
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(234, 179, 8, 1));
        transform: scale(1.02);
    }

    20% {
        opacity: 0.9;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.01);
    }
}

@keyframes electric-flicker-soft {

    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.7));
        transform: scale(1);
    }

    25%,
    75% {
        opacity: 0.95;
        filter: drop-shadow(0 0 5px rgba(234, 179, 8, 0.4));
        transform: scale(0.99);
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(234, 179, 8, 0.9));
        transform: scale(1.01);
    }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.loader-progress {
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
    animation: loading 2.5s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes loading {
    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

footer {
    padding: 5rem 0 6rem;
    border-top: 1px solid var(--border-light);
    position: relative;
    background-image: linear-gradient(to left top, #000000, #0e0609, #160d12, #1c1219, #211621, #2c182a, #371a32, #441a3a, #5f113a, #780032, #8d0020, #9a0000)
}

footer .lampe {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col h4 span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    font-size: 10px;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition-base);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.mobile-nav-link {
    font-size: 1.5rem;
    text-decoration: none;
    color: white;
    font-family: var(--font-technical);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 1024px) {

    .nav-links,
    .social-links,
    header .btn-primary {
        display: none !important;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        white-space: nowrap;
    }

    .hero p {
        font-size: clamp(0.7rem, 3vw, 0.85rem);
        letter-spacing: 0.2em;
        white-space: nowrap;
        margin-bottom: 2rem;
    }

    .section-title h3 {
        line-height: 3rem;
    }

    .brand-name {
        font-size: 0.9rem;
        letter-spacing: 0.13em;
        white-space: nowrap;
    }

    .brand-tagline {
        font-size: 8px;
        letter-spacing: 0.15em;
        white-space: nowrap;
    }

    footer .container {
        margin-left: 0 !important;
        padding-left: 2rem !important;
    }

    .footer-col .logo-group,
    .footer-col p {
        padding-right: 5rem;
    }
}

/* Open State */
body.mobile-menu-active {
    overflow: hidden;
}

body.mobile-menu-active .mobile-menu {
    opacity: 1;
    visibility: visible;
}

/* Resize & Fix reCAPTCHA Badge */
.grecaptcha-badge {
    position: static !important;
    display: inline-block !important;
    transform: scale(0.85) !important;
    transform-origin: left bottom !important;
    margin-top: 1rem;
    box-shadow: none !important;
    opacity: 0.4;
}

#recaptcha-v3-container {
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
    height: 70px;
}

body.mobile-menu-active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

body.mobile-menu-active .mobile-nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

body.mobile-menu-active .mobile-nav-link:nth-child(2) {
    transition-delay: 0.2s;
}

body.mobile-menu-active .mobile-nav-link:nth-child(3) {
    transition-delay: 0.3s;
}

body.mobile-menu-active .mobile-nav-link:nth-child(4) {
    transition-delay: 0.4s;
}

/* Burger Animation */
body.mobile-menu-active .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.mobile-menu-active .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
}

body.mobile-menu-active .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.fill-current {
    fill: currentColor;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.w-20px {
    width: 20px !important;
}

.h-20px {
    height: 20px !important;
}

.w-24px {
    width: 24px !important;
}

.h-24px {
    height: 24px !important;
}

.rgpd-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.rgpd-checkbox {
    margin-top: 0.125rem;
    accent-color: var(--gold);
}

.map-iframe {
    position: absolute;
    inset: 0;
    border: 0;
}

.footer-content-col {
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.footer-lamp-box {
    width: 80px;
    height: 120px;
    flex-shrink: 0;
}

.footer-lamp-box {
    width: 80px;
    height: 120px;
    flex-shrink: 0;
}

/* Final Specific Classes */
.padding-t-5px {
    padding-top: 5px !important;
}

.text-fibre {
    color: #f700ff !important;
}

.bg-fibre {
    background: #f700ff !important;
}

.bg-white {
    background: #ffffff !important;
}

.bg-dark {
    background: #000000 !important;
}

.text-blue {
    color: #00d2ff !important;
}

.bg-blue {
    background: #00d2ff !important;
}

.text-red {
    color: #ff3b3b !important;
}

.bg-red {
    background: #ff3b3b !important;
}

.text-indigo {
    color: #6366f1 !important;
}

.bg-indigo {
    background: #6366f1 !important;
}

.text-green {
    color: #22c55e !important;
}

.bg-green {
    background: #22c55e !important;
}

.animate-rotate3d {
    display: inline-block;
    transform-origin: center center;
    animation: rotate3d 3s linear infinite;
}

.h3-large {
    font-size: 2.5rem !important;
}

.h3-medium {
    font-size: 2.25rem !important;
}

.icon-large {
    font-size: 2.5rem !important;
}

.btn-review {
    padding: 0.75rem 1.5rem;
    font-size: 0.7rem;
    border-color: var(--gold);
}

.section-title-inner {
    color: var(--gold);
    font-size: 0.75rem !important;
    letter-spacing: 0.4em !important;
    text-transform: uppercase !important;
    margin-bottom: 1rem !important;
}

.contact-title-anim {
    animation: electric-flicker-soft 2.5s infinite, fadeInDown 2.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.underline {
    text-decoration: underline;
}

.text-sm {
    font-size: 0.875rem !important;
}

.text-sm-relaxed {
    font-size: 0.875rem !important;
    line-height: 1.8 !important;
}

.text-white {
    color: white !important;
}

.text-dark {
    color: var(--bg-dark) !important;
}

.text-dark-red {
    color: #770000 !important;
}

.bg-dark-red {
    background: #770000 !important;
}

/* Global Utility Classes */

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

.obj-contain {
    object-fit: contain;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: white;
}

.text-muted-70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-black-70 {
    color: rgba(0, 0, 0, 0.7);
}

.opacity-70 {
    opacity: 0.7 !important;
}

.text-justify {
    text-align: justify;
}

.text-center {
    text-align: center;
}

.technical {
    font-family: var(--font-technical);
}

.margin-t-1 {
    margin-top: 1rem !important;
}

.margin-t-1-5 {
    margin-top: 1.5rem !important;
}

.margin-b-1 {
    margin-bottom: 1rem !important;
}

.margin-b-1-5 {
    margin-bottom: 1.5rem !important;
}

.margin-b-2 {
    margin-bottom: 2rem !important;
}

.margin-b-3 {
    margin-bottom: 3rem !important;
}

.margin-b-4 {
    margin-bottom: 4rem !important;
}

.max-w-320 {
    max-width: 320px;
}

.max-w-400 {
    max-width: 400px;
}

.max-w-450 {
    max-width: 450px;
}

.max-w-680 {
    max-width: 680px;
}

.max-w-800 {
    max-width: 800px;
}

.w-full {
    width: 100% !important;
}

.h-full {
    height: 100% !important;
}

.w-40px {
    width: 40px !important;
}

.w-60px {
    width: 60px !important;
}

.w-80px {
    width: 80px !important;
}

.h-1px {
    height: 1px !important;
}

.h-50px {
    height: 50px !important;
}

.h-120px {
    height: 120px !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-dark-red {
    background-color: #770000 !important;
}

.display-none {
    display: none !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.position-absolute {
    position: absolute !important;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-0-5 {
    gap: 0.5rem;
}

.gap-0-75 {
    gap: 0.75rem;
}

.gap-1 {
    gap: 1rem;
}

.gap-4 {
    gap: 4rem;
}

/* Component Specific Refactoring */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.hero-scroll-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.4);
}

.hero-scroll-line {
    height: 50px;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.service-card-divider {
    height: 1px;
    width: 40px;
    margin-top: 1rem;
}

.rgpd-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.rgpd-label {
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.4;
}