:root {
    --colorBody: transparent;
    --colorText: white;
    --ColorNumberOne: #1b1b1b;
    --ColorNumber2: #8c8c8c;
    --ColorNumber3: #b3b3b3;
    --ColorNumber4: #e31212;
    --ColorNumber5: #5a5a5a;
    --colorText2: white;
    --c-bg-1: var(--ColorNumberOne);
    --c-bg-2: var(--ColorNumber2);
    --c-accent: var(--ColorNumberOne);
    --c-accent-2: var(--ColorNumber4);
    --c-tint: #efefef;
    --c-text: #f7f7f5;
    --c-card: rgba(255, 255, 255, .06);
    --c-border: rgba(255, 255, 255, .18);
    --radius: 14px;
    --radius-xl: 18px;
    --shadow: 0 10px 28px rgba(0, 0, 0, .22);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--colorText);
    background: var(--colorBody);
    scroll-behavior: smooth;
}

.Body {
    scroll-behavior: smooth;
    background-image: url('images/BackG.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: auto auto;
    overflow-x: hidden;
    overflow-y: auto;
}

#prefond {
    position: fixed;
    background: linear-gradient(114deg, var(--ColorNumberOne), var(--ColorNumber2), var(--ColorNumberOne), var(--ColorNumber3));
    background-size: 200% 400%;
    animation: gradient 10s ease infinite;
    width: 70vw;
    height: 100vh;
    z-index: -2;
    top: 0vh;
    left: 15vw;
}

#fond {
    position: fixed;
    background-image: url(images/fond.jpg);
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 90vw;
    left: 5vw;
    height: 50vh;
    z-index: -1;
    top: 35vh;
    transition: background-image 1s ease;
    display: none;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

a {
    color: var(--colorText);
    text-decoration: none;
}

a:hover {
    color: inherit;
}

a[href^="tel"] {
    text-decoration: none;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
}
::-webkit-scrollbar:vertical {
    width: 12px;
}
::-webkit-scrollbar:horizontal {
    height: 12px;
}
::-webkit-scrollbar-thumb {
    background-color: var(--ColorNumberOne);
    border-radius: 10px;
    border: 2px solid var(--ColorNumber2);
}
::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--ColorNumber2);
}

h1, h2, h3 {
    margin: 0;
}

p {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    font-weight: 300;
    padding: 3vh;
}

hr {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 10px;
    border-color: var(--colorText);
}

.margin-top-10 {
    padding-top: 10px;
}

.line-break {
    border-bottom: 3px solid var(--colorText);
    width: 60vw;
    margin: 0 auto;
    margin-bottom: 6vh;
}

img {
    image-rendering: auto;
}

.alternative {
    background: linear-gradient(114deg, var(--ColorNumber2), var(--colorBody), var(--ColorNumber4), var(--colorBody));
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    color: var(--colorText2);
}

.alternative2 {
    background: #0000001f;
}

.flex {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.Format80 {
    width: 80vw;
    margin: 3vh 10vw 3vh;
}

.Format60 {
    width: 60vw;
    margin: 3vh 20vw 3vh;
}

.Format60bis {
    width: 60vw;
    margin: 3vh 20vw 3vh;
    background-color: #4c819dcf;
    height: 60vh;
}

@media screen and (orientation: portrait) {
    .Format60 {
        width: 80vw;
        margin: 3vh 10vw 3vh;
    }

    .Format60bis {
        width: 80vw;
        margin: 3vh 10vw 3vh;
        height: 60vh;
    }
}

.supertitle {
    font-size: 2.5em;
    text-transform: uppercase;
    font-weight: 100;
    padding: 1vh;
    text-align: center;
}

.title {
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 100;
    padding: 1vh;
    text-align: center;
}

.subtitle {
    font-size: 1.5em;
    text-align: center;
    padding: 1vh;
}

.Photo {
    width: 15vw;
    border-radius: 10%;
    background: linear-gradient(114deg, var(--ColorNumberOne), var(--ColorNumber2), var(--ColorNumber3), var(--ColorNumber4));
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    margin: 5vh;
}

.Photo img {
    width: 95%;
    height: auto;
    border-radius: 10%;
}

@media screen and (orientation: portrait) {
    .Photo {
        width: 70vw;
        float: unset;
        margin: 4% 4% 4% 7%;
    }
}

@media screen and (orientation: portrait) {
    .supertitle {
        font-size: 2em;
    }

    .title {
        font-size: 1.5em;
    }

    .subtitle {
        font-size: 1.2em;
    }
}

@media screen and (orientation: landscape) and (max-width: 1024px) {
    .supertitle {
        font-size: 1.5em;
    }

    .title {
        font-size: 1.2em;
    }

    .subtitle {
        font-size: 1.1em;
    }
}

.shadow {
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(200, 200, 200, 0.2);
}

.shadow2 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}

.radius {
    border-radius: 2vh;
}

#BaliseH1 {
    width: 92%;
    margin: 4%;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    width: 92%;
    margin: 4%;
}

.column {
    flex: 40%;
    margin: 20px;
    display: grid;
    align-content: center;
    max-width: 80vw;
    justify-content: center;
    justify-items: center;
}

.column1 {
    flex: 40%;
    margin: 20px;
    display: grid;
    align-content: center;
    max-width: 80vw;
    justify-content: center;
    justify-items: center;
}

.column2 {
    flex: 30%;
    margin: 20px;
    display: grid;
    align-content: center;
    max-width: 80vw;
    justify-content: center;
    justify-items: center;
}

.Boutique {
    position: fixed;
    width: 20vw;
    height: 12vh;
    background-color: var(--ColorNumberOne);
    z-index: 1000;
    opacity: .7;
    margin-top: 75vh;
    border-radius: 50px;
    left: 75vw;
    display: flex;
    transition: 1s ease-in;
    justify-content: center;
}

.Boutique:hover {
    transition: 1s ease-out;
    opacity: .95;
}

.Boutique img {
    width: 15%;
}

.Boutique a {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--colorText);
}

@media screen and (orientation: portrait) {
    .Boutique {
        width: 70vw;
        height: 10vh;
        left: 15vw;
        margin-top: 80vh;
    }

    .Boutique img {
        width: 15%;
    }
}

.Depannage img {
    width: 30%;
    border-radius: 2vh;
}

.Boutique2 {
    position: relative;
    width: 25vw;
    height: 12vh;
    background-color: var(--ColorNumber2);
    z-index: 1000;
    opacity: .7;
    border-radius: 50px;
    display: flex;
    transition: 1s ease-in;
    justify-content: center;
}

.Boutique2 a {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--colorText);
}

#Decennale1 img {
    width: 50%;
    border-radius: 2vh;
}

@media screen and (orientation: portrait) {
    .Depannage img {
        width: 100%;
    }

    .Boutique2 {
        width: 70vw;
        height: 10vh;
        position: relative;
    }

    .Boutique2 img {
        width: 15%;
    }
}

/* contact */

input {
    width: 30vw;
    padding: 6px 10px;
    margin: 8px 0;
    box-sizing: border-box;
    margin-left: 0vw;
    background-color: transparent;
    color: white;
    border: solid white 1px;
}

input::placeholder {
    font-style: italic;
    color: white;
}

textarea {
    width: 30vw;
    padding: 6px 10px;
    margin: 8px 0;
    box-sizing: border-box;
    margin-left: 0vw;
    background-color: transparent;
    color: white;
    border: solid white 1px;
}

textarea::placeholder {
    font-style: italic;
    color: white;
}

.ButtonForm {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50px;
    width: 30vw;
    margin-left: 0vw;
}

.ButtonForm:hover {
    background-color: grey;
}

@media screen and (orientation: portrait) {
    input {
        width: 80vw;
    }

    textarea {
        width: 80vw;
    }

    .ButtonForm {
        width: 50vw;
    }
}

/* contact */

#SectionArticle {
    min-width: 90vw;
    max-width: 90vw;
    margin-left: 5vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px;
    position: relative;
    border-radius: 3vh;
}

#SectionArticleText {
    display: grid;
    align-content: center;
    color: white;
    justify-items: center;
}

/* Container for flexboxes */
.rowPresentation {
    display: flex;
    flex-wrap: wrap;
    top: 15vh;
    width: 90vw;
    justify-content: center;
}

/* Create two equal columns */
.columnPresentationA {
    flex: 60%;
    padding: 2vh;
    margin: 2vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    hyphens: auto;
    text-align: justify;
}

.columnPresentationA .title {
    font-size: 2em;
    text-align: center;
    color: white;
    margin: 2vh;
}

.columnPresentationA .text {
    text-align: justify;
    hyphens: auto;
    color: white;
    margin: 2vh;
}

.columnPresentationA ul {
    max-width: 30vw;
    margin: 2vh;
}

@media only screen and (orientation: portrait) {
    .columnPresentationA .title {
        font-size: 1.3em;
    }

    .columnPresentationA ul {
        max-width: 50vw;
        margin: 2vh;
        font-size: 1em;
    }
}

.columnPresentationA ul .title {
    font-size: 1.1em;
    text-align: center;
    color: white;
    margin: 2vh;
    font-weight: 700;
}

.columnPresentationB {
    flex: 25%;
    padding: 3vh;
    margin: 3vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
    border-radius: 3vh;
    height: fit-content;
}

.underMenu {
    font-size: 2em;
    padding: 2vh;
}

@media only screen and (orientation: portrait) {
    .underMenu {
        font-size: 1.3em;
    }
}

.underMenu li {
    margin: 0 0 2vh 0;
}

.underMenu a {
    color: white;
    text-decoration: underline;
    margin: 0;
}

#footer {
    background: black;
    display: flex;
    justify-content: center;
    padding: 2vh;
    height: 10vh;
}

#footer p {
    font-size: 12px;
}

#footer a {
    color: blue;
    text-decoration: underline;
}

/* ===========================
   CTS TOITURE - HOMEPAGE
   =========================== */

.cts-home {
    --cts-bg: #f3f3f1;
    --cts-surface: #ffffff;
    --cts-surface-2: #f7f7f5;
    --cts-text: #161616;
    --cts-text-soft: #5f5f5f;
    --cts-red: #e31212;
    --cts-red-dark: #bf0f0f;
    --cts-black: #121212;
    --cts-line: rgba(0, 0, 0, .08);
    --cts-shadow: 0 18px 40px rgba(0, 0, 0, .10);
    --cts-shadow-soft: 0 10px 24px rgba(0, 0, 0, .07);

    margin: 0;
    color: var(--cts-text);
    font-family: Inter, Arial, sans-serif;
    background:
        linear-gradient(180deg, #ededea 0%, #f6f6f3 35%, #f3f3f1 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.cts-home * {
    box-sizing: border-box;
}

.cts-home h1,
.cts-home h2,
.cts-home h3,
.cts-home p {
    margin: 0;
    padding: 0;
    text-align: left;
    hyphens: none;
    -webkit-hyphens: none;
}

.cts-home img {
    display: block;
    max-width: 100%;
    height: auto;
}

.cts-home a,
.cts-home a:hover {
    /*color: inherit;*/
    text-decoration: none;
}

.cts-shell {
    width: min(1260px, 92vw);
    margin-inline: auto;
}

/* HERO */

.cts-hero {
    position: relative;
    padding: 28px 0 42px;
    overflow: hidden;
    background:
        linear-gradient(120deg, #111111 0%, #171717 58%, #1f1f1f 100%);
    color: #fff;
}

.cts-hero::before {
    content: "";
    position: absolute;
    right: -8vw;
    top: -10vh;
    width: 42vw;
    height: 120%;
    background: linear-gradient(180deg, rgba(227,18,18,.95), rgba(227,18,18,.75));
    transform: skewX(-18deg);
    opacity: .95;
}

.cts-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #ffffff 0 18%, var(--cts-red) 18% 100%);
}

.cts-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 40px;
    align-items: center;
    min-height: 80vh;
}

.cts-hero-copy {
    padding: 18px 0;
}

.cts-topline {
    display: inline-block;
    margin-bottom: 18px;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}

.cts-logo {
    width: clamp(180px, 19vw, 280px);
    margin-bottom: 22px;
    background: rgba(255,255,255,.94);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,.20);
}

.cts-hero-copy h1 {
    font-size: clamp(2.5rem, 6vw, 5.7rem);
    line-height: .94;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.05em;
    max-width: 8ch;
}

.cts-lead {
    margin-top: 22px;
    max-width: 58ch;
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255,255,255,.82);
}

.cts-hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cts-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65em;
    min-height: 56px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    border: 2px solid transparent;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.cts-btn:hover {
    transform: translateY(-2px);
}

.cts-btn-primary {
    background: var(--cts-red);
    color: #fff;
    border-color: var(--cts-red);
    box-shadow: 0 14px 30px rgba(227,18,18,.26);
}

.cts-btn-primary:hover {
    background: var(--cts-red-dark);
    border-color: var(--cts-red-dark);
}

.cts-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.28);
}

.cts-btn-secondary:hover {
    background: #fff;
    color: var(--cts-black);
    border-color: #fff;
}

.cts-btn-light {
    border-color: rgba(255,255,255,.28);
}

.cts-hero-points {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cts-hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
}

.cts-hero-visual {
    position: relative;
    display: grid;
    gap: 18px;
    justify-items: end;
}

.cts-hero-photo {
    width: min(520px, 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,.24);
    border: 1px solid rgba(255,255,255,.10);
}

.cts-hero-photo img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.cts-address-card {
    width: min(400px, 88%);
    margin-right: 24px;
    margin-top: -92px;
    background: rgba(255,255,255,.96);
    color: var(--cts-text);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--cts-shadow);
}

.cts-address-title {
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.cts-address-card p {
    line-height: 1.55;
    color: var(--cts-text-soft);
    margin-top: 8px;
}

.cts-address-zone {
    color: var(--cts-red) !important;
    font-weight: 800;
}

/* MAIN */

.cts-main {
    display: grid;
    gap: 0;
}

/* STRIP */

.cts-strip {
    position: relative;
    z-index: 3;
    margin-top: -28px;
}

.cts-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.cts-strip-grid article {
    background: #fff;
    border-radius: 22px;
    padding: 24px 18px;
    box-shadow: var(--cts-shadow-soft);
    border: 1px solid var(--cts-line);
    display: grid;
    gap: 8px;
}

.cts-strip-grid strong {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    font-weight: 900;
    color: var(--cts-black);
}

.cts-strip-grid span {
    color: var(--cts-text-soft);
    font-weight: 600;
    line-height: 1.45;
}

/* SECTIONS */

.cts-section {
    padding: 76px 0;
}

.cts-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .24em;
    color: rgba(0,0,0,.42);
}

.cts-label-light {
    color: rgba(255,255,255,.60);
}

.cts-section-head {
    margin-bottom: 24px;
}

.cts-section-head h2,
.cts-section-title h2,
.cts-dark-copy h2,
.cts-info-card h2,
.cts-map-text h2,
.cts-final-copy h2 {
    font-size: clamp(1.9rem, 3vw, 3.4rem);
    line-height: 1.03;
    font-weight: 900;
    letter-spacing: -.04em;
    text-transform: uppercase;
    color: var(--cts-black);
}

/* INTRO */

.cts-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
    align-items: start;
}

.cts-intro-text {
    display: grid;
    gap: 18px;
}

.cts-intro-text p {
    color: var(--cts-text-soft);
    font-size: 1.04rem;
    line-height: 1.85;
}

/* SERVICES */

.cts-service-stack {
    display: grid;
    gap: 14px;
}

.cts-service-row {
    background: #fff;
    border: 1px solid var(--cts-line);
    border-radius: 24px;
    padding: 20px 22px;
    display: grid;
    grid-template-columns: 84px 1fr 72px;
    align-items: center;
    gap: 18px;
    box-shadow: var(--cts-shadow-soft);
    transition: transform .18s ease, box-shadow .18s ease;
}

.cts-service-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0,0,0,.10);
}

.cts-service-num {
    width: 84px;
    height: 84px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #151515, #2a2a2a);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -.03em;
}

.cts-service-content h3 {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--cts-black);
    margin-bottom: 8px;
}

.cts-service-content p {
    color: var(--cts-text-soft);
    line-height: 1.7;
}

.cts-service-link {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f4f4f1;
    color: var(--cts-red);
    border: 1px solid rgba(227,18,18,.18);
    justify-self: end;
    transition: background .18s ease, transform .18s ease, color .18s ease;
}

.cts-service-link:hover {
    background: var(--cts-red);
    color: #fff;
    transform: scale(1.04);
}

/* DARK METHOD BAND */

.cts-dark-band {
    background:
        linear-gradient(135deg, #161616 0%, #1f1f1f 60%, #242424 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cts-dark-band::before {
    content: "";
    position: absolute;
    left: -12vw;
    top: 22%;
    width: 32vw;
    height: 220px;
    background: rgba(227,18,18,.22);
    transform: skewX(-28deg);
}

.cts-dark-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.cts-dark-copy h2 {
    color: #fff;
}

.cts-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cts-step-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(4px);
}

.cts-step-card span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--cts-red);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.cts-step-card h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cts-step-card p {
    color: rgba(255,255,255,.78);
    line-height: 1.65;
}

/* INFO + PHOTO */

.cts-duo-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 20px;
    align-items: stretch;
}

.cts-info-card {
    background: #fff;
    border: 1px solid var(--cts-line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--cts-shadow-soft);
}

.cts-check-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 12px;
}

.cts-check-list li {
    position: relative;
    padding-left: 22px;
    color: var(--cts-text-soft);
    line-height: 1.7;
    font-weight: 500;
}

.cts-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cts-red);
    transform: translateY(-50%);
}

.cts-photo-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--cts-shadow);
    min-height: 420px;
}

.cts-photo-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.cts-photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.46)),
        linear-gradient(135deg, rgba(227,18,18,.22), transparent 45%);
}

.cts-photo-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    background: rgba(255,255,255,.94);
    color: var(--cts-black);
    border-radius: 18px;
    padding: 16px 18px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.5;
}

/* MAP */

.cts-map-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 20px;
    align-items: stretch;
}

.cts-map-text {
    background: #fff;
    border: 1px solid var(--cts-line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--cts-shadow-soft);
}

.cts-map-text p {
    color: var(--cts-text-soft);
    line-height: 1.8;
    margin-top: 14px;
}

.cts-map-frame {
    min-height: 440px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--cts-shadow);
    border: 1px solid var(--cts-line);
    background: #ddd;
}

/* FINAL */

.cts-final {
    position: relative;
    padding: 80px 0;
    background:
        linear-gradient(135deg, #151515 0%, #1d1d1d 60%, #262626 100%);
    overflow: hidden;
}

.cts-final::before {
    content: "";
    position: absolute;
    right: -8vw;
    top: -40px;
    width: 28vw;
    height: 180px;
    background: rgba(227,18,18,.86);
    transform: skewX(-28deg);
}

.cts-final-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: center;
}

.cts-final-copy h2,
.cts-final-copy p {
    color: #fff;
}

.cts-final-copy p {
    margin-top: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.82);
}

.cts-final-box {
    background: rgba(255,255,255,.96);
    color: var(--cts-black);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 50px rgba(0,0,0,.20);
}

.cts-final-box p {
    color: var(--cts-text-soft);
    line-height: 1.65;
    margin-top: 8px;
}

.cts-final-actions {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.cts-final-box .cts-btn-secondary {
    color: var(--cts-black);
    border-color: rgba(0,0,0,.12);
}

.cts-final-box .cts-btn-secondary:hover {
    background: var(--cts-black);
    color: #fff;
    border-color: var(--cts-black);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .cts-hero-grid,
    .cts-intro-grid,
    .cts-dark-grid,
    .cts-duo-grid,
    .cts-map-grid,
    .cts-final-grid {
        grid-template-columns: 1fr;
    }

    .cts-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cts-hero-copy h1 {
        max-width: none;
    }

    .cts-hero-visual {
        justify-items: stretch;
    }

    .cts-hero-photo {
        width: 100%;
    }

    .cts-address-card {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 760px) {
    .cts-hero {
        padding: 22px 0 34px;
    }

    .cts-hero::before {
        width: 56vw;
        opacity: .9;
    }

    .cts-hero-grid {
        min-height: auto;
        gap: 26px;
    }

    .cts-hero-copy h1 {
        font-size: clamp(2.2rem, 12vw, 3.7rem);
        line-height: .98;
    }

    .cts-lead {
        font-size: 1rem;
    }

    .cts-hero-actions {
        flex-direction: column;
    }

    .cts-btn {
        width: 100%;
    }

    .cts-hero-photo img {
        height: 360px;
    }

    .cts-address-card {
        margin-top: 0;
    }

    .cts-strip-grid {
        grid-template-columns: 1fr;
    }

    .cts-service-row {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .cts-service-link {
        justify-self: start;
    }

    .cts-steps-grid {
        grid-template-columns: 1fr;
    }

    .cts-photo-card,
    .cts-photo-card img {
        min-height: 320px;
    }

    .cts-map-frame {
        min-height: 320px;
    }

    .cts-section {
        padding: 56px 0;
    }
}

.cts-call-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e11d22, #b91015);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  box-shadow:
    0 12px 30px rgba(0,0,0,.28),
    0 6px 16px rgba(225,29,34,.28);
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.cts-call-float .material-icons{
  font-size: 22px;
  line-height: 1;
}

.cts-call-float:hover{
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(0,0,0,.34),
    0 8px 18px rgba(225,29,34,.34);
}

.cts-call-float:focus-visible{
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@media (max-width: 640px){
  .cts-call-float{
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-content: center;
    padding: 14px 16px;
    font-size: 16px;
  }
}

.cts-hero-photo{
  position: relative;
}

.cts-hero-badges{
  position: absolute;
  top: 18px;
  right: 235px;
  display: flex;
  gap: 12px;
  z-index: 5;
}

.cts-hero-badges img{
  width: 90px;
  height: 70px;
  object-fit: contain;
  background: rgba(255,255,255,0.92);
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
  border: 1px solid rgba(0,0,0,.06);
}



/* ===========================
   CTS TOITURE - CONTACT PAGE
   =========================== */

.cts-contact-page .cts-topline,
.cts-contact-page .cts-lead {
    color: rgba(255,255,255,.84);
}

.cts-contact-hero {
    position: relative;
    padding: 34px 0 56px;
    overflow: hidden;
    background: linear-gradient(120deg, #111111 0%, #171717 58%, #1f1f1f 100%);
    color: #fff;
}

.cts-contact-hero::before {
    content: "";
    position: absolute;
    right: -8vw;
    top: -10vh;
    width: 42vw;
    height: 120%;
    background: linear-gradient(180deg, rgba(227,18,18,.95), rgba(227,18,18,.75));
    transform: skewX(-18deg);
    opacity: .95;
}

.cts-contact-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #ffffff 0 18%, var(--cts-red) 18% 100%);
}

.cts-contact-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 30px;
    align-items: center;
    min-height: 62vh;
}

.cts-contact-hero-copy {
    padding: 16px 0;
}

.cts-contact-hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: .96;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.05em;
    max-width: 10ch;
}

.cts-contact-hero-card {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,.96);
    color: var(--cts-text);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--cts-shadow);
    border: 1px solid rgba(255,255,255,.10);
}

.cts-contact-card-label {
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--cts-red);
    margin-bottom: 18px;
}

.cts-contact-quicklist,
.cts-contact-side-list,
.cts-contact-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cts-contact-quicklist {
    display: grid;
    gap: 14px;
}

.cts-contact-quicklist li,
.cts-contact-side-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--cts-text-soft);
    line-height: 1.6;
}

.cts-contact-quicklist .material-icons,
.cts-contact-side-list .material-icons {
    color: var(--cts-red);
    font-size: 20px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.cts-contact-quicklist a,
.cts-contact-side-list a,
.cts-contact-breadcrumb a {
    color: var(--cts-text);
    text-decoration: none;
}

.cts-contact-section {
    padding-top: 72px;
}

.cts-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 22px;
    align-items: start;
}

.cts-contact-card {
    background: #fff;
    border: 1px solid var(--cts-line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--cts-shadow-soft);
}

.cts-contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--cts-text-soft);
    font-size: .95rem;
}

.cts-contact-breadcrumb strong {
    color: var(--cts-black);
}

.cts-contact-intro {
    margin-top: 14px;
    color: var(--cts-text-soft);
    line-height: 1.75;
}

.cts-contact-form {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cts-contact-form label {
    display: grid;
    gap: 8px;
}

.cts-contact-form label > span {
    color: var(--cts-black);
    font-size: .95rem;
    font-weight: 700;
}

.cts-contact-form .wide {
    grid-column: 1 / -1;
}

.cts-contact-form input,
.cts-contact-form select,
.cts-contact-form textarea {
    width: 100%;
    margin: 0;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.12);
    background: #f7f7f5;
    color: var(--cts-black);
    box-sizing: border-box;
    font: inherit;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.cts-contact-form input::placeholder,
.cts-contact-form textarea::placeholder {
    color: #8d8d8d;
    font-style: normal;
}

.cts-contact-form input:focus,
.cts-contact-form select:focus,
.cts-contact-form textarea:focus {
    border-color: rgba(227,18,18,.45);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(227,18,18,.08);
}

.cts-contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.cts-contact-consent {
    padding: 14px 16px;
    border-radius: 18px;
    background: #f7f7f5;
    border: 1px solid var(--cts-line);
}

.cts-contact-consent span {
    color: var(--cts-text-soft) !important;
    font-size: .95rem;
    line-height: 1.7;
    font-weight: 500 !important;
}

.cts-contact-recaptcha {
    overflow-x: auto;
}

.cts-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2px;
}

.cts-contact-help {
    color: var(--cts-text-soft);
    line-height: 1.7;
    font-size: .95rem;
}

.cts-contact-side-title {
    margin-top: 24px;
    margin-bottom: 14px;
    color: var(--cts-black);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.cts-contact-services-list {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.cts-contact-services-list li {
    position: relative;
    padding-left: 18px;
    color: var(--cts-text-soft);
    line-height: 1.65;
    font-weight: 500;
}

.cts-contact-services-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .8em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cts-red);
    transform: translateY(-50%);
}

.cts-contact-map {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--cts-line);
    box-shadow: var(--cts-shadow-soft);
    background: #ddd;
}

.cts-contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 1100px) {
    .cts-contact-hero-grid,
    .cts-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .cts-contact-hero {
        padding: 24px 0 38px;
    }

    .cts-contact-hero::before {
        width: 56vw;
        opacity: .9;
    }

    .cts-contact-hero-copy h1 {
        font-size: clamp(2.1rem, 11vw, 3.6rem);
        max-width: none;
    }

    .cts-contact-card,
    .cts-contact-hero-card {
        padding: 22px;
        border-radius: 22px;
    }

    .cts-contact-form {
        grid-template-columns: 1fr;
    }

    .cts-contact-actions {
        flex-direction: column;
    }

    .cts-contact-actions .cts-btn {
        width: 100%;
    }

    .cts-contact-map,
    .cts-contact-map iframe {
        min-height: 300px;
    }
}