/* ═══════════════════════════════════════════════════════
   CABINET FALKNER & ASSOCIÉS — Lawnux Design System
   Adapté du template Lawnux Law & Consultancy
════════════════════════════════════════════════════════ */

/* ─── KEYFRAMES ─── */
@keyframes preloader { 0%, to { opacity: .5 } 50% { opacity: 1 } }
@keyframes opacity { 0% { opacity: 0 } to { opacity: 1 } }

/* ─── FONTS ─── */
@font-face {
    font-family: "Montserrat";
    src: url(../font/Montserrat/Montserrat-Regular.woff)format("woff");
    font-display: swap
}
@font-face {
    font-family: "MonteCarlo";
    src: url(../font/MonteCarlo/MonteCarlo.woff2)format("woff2");
    font-display: swap
}
@font-face {
    font-family: "general";
    src: url(../font/users/general/general.ttf)format("truetype"),
         url(../font/users/general/general.woff)format("woff"),
         url(../font/users/general/general.eot);
    font-display: swap
}

/* ─── CSS VARIABLES ─── */
:root {
    --primary-color: #171f34;
    --gray-color: #f3f2f0;
    --light-panel-color: #f3f3f3;
    --panel-color: #8d8d8d;
    --medium-panel-color: #4a4a4a;
    --dark-panel-color: #000000;
    --secondary-color: #ceac6e;
    --table-border-color: var(--light-panel-color);
    --dwidth: 1910px;
}

/* ─── RESET & BASE ─── */
html { background: var(--primary-color); font-family: "Montserrat"; scroll-behavior: smooth; font-size: 18px; color: var(--primary-color); margin: 0; overflow-x: hidden; min-height: 100%; }
body { background: #fff; font-size: 18px; color: var(--primary-color); margin: 0; overflow-x: hidden; min-height: 100%; display: flex; flex-direction: column; font-family: "Montserrat","Noto Sans",sans-serif; }
html::-webkit-scrollbar { width: .7rem }
html::-webkit-scrollbar-thumb { background: var(--gray-color) }
html::-webkit-scrollbar-track { background: var(--primary-color) }
html::-webkit-scrollbar-thumb:hover { background: var(--secondary-color) }
.preload * { transition: auto !important }
* { outline: 0; font-family: "Noto Sans", sans-serif; }
button, input { appearance: none; -webkit-appearance: none; outline: 0; cursor: pointer; font-family: inherit; }
input:-webkit-autofill { transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s !important }
label[required]::after { color: #cd5c5c; content: " *" }
dl, ol, ul { padding: 0; margin: 0; list-style: none }
a { text-decoration: none; color: inherit }
a:-webkit-any-link { text-decoration: none; color: inherit }
h1 { font-size: 2rem }
h2 { font-size: 1.25rem }
h3 { font-size: 1.17rem }
p { font-size: .9rem; line-height: 2 }
kalenux-template { display: none }
img { max-width: 100%; height: auto; display: block; }
address { font-style: normal; }
main { position: relative; z-index: 0; }

/* ─── PRELOADER ─── */
.preloader { transition: .1s; opacity: 1; visibility: visible; position: fixed; width: 100%; height: 100%; left: 0; top: 0; z-index: 99999999; background: var(--primary-color); }
.preloader[data-state=""] { opacity: 0; visibility: hidden }
.preload-inner { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; }
.preload-inner img { width: 300px; animation: preloader 1s infinite; }
.preload-inner p { color: var(--secondary-color); font-size: 1rem; margin-top: 1rem; }

/* ─── COOKIE CONSENT ─── Floating Modern Bar */
.cookie { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); width: auto; max-width: 90%; color: #fff; text-align: center; display: flex; flex-direction: column; z-index: 9999; opacity: 0; visibility: hidden; transition: .3s; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.25); }
.cookie[data-state=open] { opacity: 1; visibility: visible }
.cookie-inner { position: relative; padding: 1rem 2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.cookie-bg { background: #171f34; opacity: .95; position: absolute; width: 100%; height: 100%; top: 0; left: 0; }
.cookie p { margin: 0; max-width: 600px; font-size: .85rem; position: relative; }
.cookie p a { color: var(--secondary-color); text-decoration: underline; }
.cookie .btn { background: #fff; color: var(--primary-color); margin: 0; flex-shrink: 0; border-radius: 8px; }

/* ─── STATUS / ALERT ─── */
.status { position: absolute; transition: .3s; color: transparent; text-align: center; margin: auto; display: table; top: -.5rem; left: 50%; transform: translate(-50%,-100%); white-space: nowrap; font-size: .9rem; }
.status[data-status=error] { color: #cd5c5c }
.status[data-status=valid] { color: #3cb371 }
.status[data-status=info] { color: gray }

/* ─── SEPARATOR ─── */
.sep { position: relative }
.sep:after { content: ""; position: absolute; width: calc(100% + 3rem); height: 3px; bottom: -20px; transform: translateX(-50%); left: 50%; border-radius: 3px; }
.sep-secondary:after { background: var(--secondary-color) }

/* ═══════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════ */
.btn { border: 0; padding: .6rem 1.2rem; font-size: .9rem; transition: .3s; border-radius: 4px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; text-decoration: none; }
.btn.btn-secondary { background: var(--secondary-color); color: #fff; border: solid 2px var(--secondary-color); }
.btn.btn-secondary:hover, .btn.btn-secondary:focus { color: var(--secondary-color); background: 0 0; }
.btn.btn-primary { background: var(--primary-color); color: var(--gray-color); border: solid 2px var(--primary-color); }
.btn.btn-primary:hover, .btn.btn-primary:focus { color: var(--primary-color); background: 0 0; }
.btn.btn-white { background: #fff; color: var(--primary-color); border: solid 2px #fff; }
.btn.btn-white:hover, .btn.btn-white:focus { color: var(--secondary-color); background: 0 0; border-color: #fff; }
.btn.btn-outline { background: 0 0; color: var(--primary-color); border: solid 2px var(--primary-color); }
.btn.btn-outline:hover { background: var(--primary-color); color: #fff; }
.btn.btn-sm { padding: .3rem .8rem; font-size: .8rem; }
.btn.btn-lg { padding: .8rem 2rem; font-size: 1rem; }

/* ═══════════════════════════════════════════════════════
   WIDTH CONSTRAINT
════════════════════════════════════════════════════════ */
.widther { max-width: 1600px; margin: auto; padding: 0 2rem; box-sizing: border-box; justify-content: center; width: 100%; }
.container { max-width: 1600px; margin: auto; padding: 0 2rem; width: 100%; box-sizing: border-box; }

/* ═══════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════ */
.home-top { display: flex; flex-direction: column; min-height: 600px; position: relative; padding-top: 100px; }
.home-top--inner { min-height: auto; }

.header { position: absolute; width: 100%; top: 0; height: 100px; z-index: 1000; display: flex; border-bottom: solid 4px var(--secondary-color); background: rgba(23,31,52,.8); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.header[data-state=open] { position: fixed; background: #fff; backdrop-filter: none; border-bottom-color: var(--secondary-color); box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.header-bg { display: none; }
.header-holder { display: flex; width: 100%; }
.header-inner { display: flex; max-width: 1600px; margin: auto; color: #fff; height: 100%; flex-direction: row; align-self: center; padding: 0 2rem; width: 100%; }
.header[data-state=open] .header-inner { color: var(--primary-color); }

.header-logo { margin: 0; transform: translateY(calc(50% - 1.5rem)); max-width: initial; display: flex; padding: .8rem 1rem; background: var(--primary-color); box-sizing: border-box; width: auto; height: fit-content; border-top: solid 4px var(--secondary-color); transition: .3s; position: relative; align-items: center; gap: 10px; text-decoration: none; border-radius: 0 0 4px 4px; }
.header[data-state=open] .header-logo { border: 0; padding: 0; transform: none; height: 80px; margin: auto 0; display: flex; align-items: center; gap: 10px; background: 0 0; width: auto; border-radius: 0; }
.header-logo:before { left: -4px }
.header-logo:after { right: -4px }
.header-logo:after, .header-logo:before { content: ""; background: var(--secondary-color); width: 4px; height: calc(50% - .75rem + 4px); z-index: 2; position: absolute; top: -4px; }
.header[data-state=open] .header-logo:after,
.header[data-state=open] .header-logo:before { display: none }

.logo-mark { width: 40px; height: 40px; background: var(--secondary-color); color: var(--primary-color); font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; }
.header[data-state=open] .logo-mark { background: var(--primary-color); color: #fff; }
.logo-text strong { display: block; font-size: 14px; font-weight: 700; line-height: 1.2; color: #fff; }
.header[data-state=open] .logo-text strong { color: var(--primary-color); }
.logo-text span { font-size: 10px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; opacity: .8; color: rgba(255,255,255,.9); }
.header[data-state=open] .logo-text span { color: var(--panel-color); }
.header-img { height: 100px; margin: auto; display: table; opacity: 1; }
.header[data-state=open] .header-img { opacity: 0 }

.header-navs { display: flex; width: auto; margin: auto 0 auto auto; height: 100%; align-items: center; }
.header-nav { height: 100%; display: flex; align-items: center; justify-content: center; width: auto; transition: .3s; font-size: .9rem; border-bottom: solid 1px transparent; }
.header-nav a { display: flex; align-items: center; color: #fff; height: 100%; justify-content: center; padding: 0 1rem; font-weight: 700; transition: color .3s; }
.header[data-state=open] .header-nav a { color: var(--primary-color); }
.header-nav a:hover { color: var(--secondary-color); }
.header-nav:hover { border-bottom: solid 2px var(--secondary-color); cursor: pointer; }
.header-nav span { font-size: 1.5rem; margin: 0 .25rem; color: #fff; }
.header[data-state=open] .header-nav span { color: var(--primary-color); }

/* Dropdown arrow */
.dd-arrow { display: inline-block; margin-left: 4px; transition: transform .3s ease; }
.header-down:hover .dd-arrow { transform: rotate(180deg); }
.header-nav a .dd-arrow { vertical-align: middle; }
.header-menu { display: none !important }

/* Header dropdown */
.header-down { display: flex; position: relative; }
.hd-holder { width: auto; min-width: 280px; position: absolute; left: 50%; transform: translateX(-50%); top: 100%; opacity: 0; visibility: hidden; transition: .3s; z-index: 999; background: var(--primary-color); border-radius: 8px; box-shadow: 0 12px 40px rgba(0,0,0,.2); padding: .5rem 0; margin-top: 0; }
.hd-holder:before { content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); width: 12px; height: 12px; background: var(--primary-color); rotate: 45deg; border-radius: 2px; }
.header[data-state=open] .hd-holder { background: #fff; }
.header[data-state=open] .hd-holder:before { background: #fff; }
.header[data-state=open] .hd-part a { color: var(--primary-color); }
.header[data-state=open] .hd-part a:hover { background: var(--gray-color); color: var(--secondary-color); }
.header-down:hover .hd-holder { opacity: 1; visibility: visible; margin-top: 4px; }
.hd-inner { display: flex; flex-direction: column; }
.hd-part { display: flex; text-align: left; margin: 0; transition: .3s; width: 100%; padding: 0; }
.hd-part a { color: #fff; font-size: .9rem; padding: .7rem 1.5rem; transition: .3s; display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.hd-part a span { font-size: 1.1rem; color: var(--secondary-color); }
.hd-part a:hover { background: rgba(206,172,110,.1); color: var(--secondary-color); }
.header[data-state=open] .hd-part a span { color: var(--secondary-color); }

/* Mobile menu */
.header-mobile-menu { position: fixed; left: 0; top: 0; width: 100%; height: 100%; z-index: 1001; opacity: 0; visibility: hidden; transition: .3s; }
.header-mobile-menu[data-state=open] { opacity: 1; visibility: visible }
.hmm-inner { position: absolute; right: 0; top: 0; height: 100%; z-index: 2; color: #fff; min-width: 33.33%; transform: translateX(100%); transition: .3s; background: var(--primary-color); }
.header-mobile-menu[data-state=open] .hmm-inner { transform: translateX(0) }
.hmm-bg { background: #000; position: absolute; width: 100%; height: 100%; top: 0; left: 0; opacity: .8; }
.menu-close { background: #000; position: absolute; width: 100%; height: 100%; opacity: .5; z-index: 1; }
.hmm-minner { position: relative; list-style: none; flex-direction: column; padding: 80px 0; margin: auto; display: flex; }
.header-mobile-menu li { display: flex; }
.header-mobile-menu li a { margin: auto 0; padding: 1rem 40px; font-size: 1rem; width: 100%; box-sizing: border-box; transition: .3s; font-weight: 600; color: #fff; }
.header-mobile-menu li a:hover { background: var(--secondary-color); }

.header[data-state=open] .header-nav.social-medias span { color: var(--primary-color) !important; }

@media (max-width:900px) {
    .header-menu { display: flex !important; background: rgba(23,31,52,.15); border-radius: 6px; padding: 4px; margin: auto 0; }
    .header[data-state=open] .header-menu { background: 0 0; }
    .header-nav { display: none }
    .header[data-state=open] .header-menu span { color: var(--primary-color); }
}
@media (max-width:650px) {
    .header { height: 80px }
    .header-logo { border: 0; padding: 0 1rem; transform: none; height: 80px; margin: auto 0; width: auto; display: flex; background: 0 0; }
    .header-logo:after, .header-logo:before { display: none }
    .header[data-state=open] .header-logo { height: 80px; }
    .home-top { min-height: 300px; padding-top: 80px }
    .header-inner, .widther, .container { padding: 0 1rem }
}

/* ═══════════════════════════════════════════════════════
   HOME / HERO SECTION
════════════════════════════════════════════════════════ */
/* ─── HERO CAROUSEL ─── */
.ht-carousel { width: 100%; display: flex; position: relative; z-index: 1; min-height: 600px; overflow: hidden; }
.ht-carousel-slides { position: absolute; inset: 0; }
.ht-carousel-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease-in-out; }
.ht-carousel-slide.active { opacity: 1; }
.ht-carousel-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(23,31,52,.8) 0%, rgba(23,31,52,.4) 100%); z-index: 2; }
.ht-carousel-p { margin: auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 100%; text-align: center; color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 5; padding: 0 2rem; box-sizing: border-box; }
.ht-carousel-title { font-family: "Montserrat"; font-size: 3.2rem; font-weight: 300; line-height: 1.15; letter-spacing: -.02em; max-width: 800px; margin: 0 auto; }
.ht-carousel-title em { font-style: normal; font-weight: 700; color: var(--secondary-color); }
.ht-carousel-subtitle { font-family: "Montserrat"; font-size: 1.1rem; margin-top: 1.5rem; letter-spacing: .08em; font-weight: 300; opacity: .8; text-transform: uppercase; }
.ht-carousel-desc { font-family: "Montserrat"; font-size: 1rem; width: 100%; max-width: 600px; margin: 1.5rem auto 0; line-height: 1.8; font-weight: 400; opacity: .9; }
.ht-carousel-actions { width: 100%; margin-top: 2.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.ht-carousel-actions .btn { border-radius: 6px; font-size: .9rem; padding: .8rem 2rem; }
.ht-carousel-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 6; display: flex; gap: .6rem; }
.ht-carousel-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: background .3s; }
.ht-carousel-dots span.active { background: var(--secondary-color); }

/* ─── 3-CARD SWISS DESIGN SECTION ─── */
.ht-cards-section { position: relative; z-index: 10; margin-top: 0; padding: 3rem 0; background: var(--gray-color); }
.ht-threes { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.ht-three { width: 360px; box-sizing: border-box; position: relative; background: #fff; display: flex; flex-direction: column; border-radius: 8px; box-shadow: 0 4px 24px rgba(23,31,52,.10); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.ht-three:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(23,31,52,.16); }
.ht-three:before, .ht-three:after { display: none; }
.ht-three__img { width: 100%; height: 180px; background-size: cover; background-position: center; flex-shrink: 0; }
.ht-three__body { padding: 0; }
.htt-header { background: 0 0; text-align: left; padding: 1.5rem 1.5rem 0; color: var(--primary-color); }
.htt-header h3 { margin: 0; padding: 0; font-size: 1rem; font-weight: 700; color: var(--primary-color); letter-spacing: .02em; position: relative; padding-bottom: .8rem; }
.htt-header h3:after { content: ""; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--secondary-color); border-radius: 2px; }
.htt-footer { padding: 1rem 1.5rem 1.5rem; color: var(--primary-color); text-align: left; position: relative; box-sizing: border-box; }
.htt-footer p { margin: 0; font-size: .85rem; line-height: 1.8; color: var(--primary-color); }
.httf-bg { display: none; }

.ht-bot { padding: 3rem 2rem 2rem; box-sizing: border-box; position: relative; z-index: 1; background: var(--primary-color); display: flex; margin: auto; width: 100%; }
.ht-bot h2 { color: #fff; margin-right: auto; font-size: 1.5rem; }
.ht-bot .btn { background: #fff; color: var(--primary-color); font-weight: 600; margin: auto 0; padding: .5rem 1rem; }

@media (max-width:1360px) { .ht-three { width: 300px; } }
@media (max-width:900px) {
    .ht-threes { flex-direction: column; margin: 0 auto; }
    .ht-three { margin: 0 auto 1.5rem; width: 90%; max-width: 400px; }
    .ht-carousel-title { font-size: 2.2rem; }
    .ht-carousel { min-height: 450px; }
}
@media (max-width:650px) {
    .home-top { padding-top: 80px }
    .ht-carousel-title { font-size: 1.8rem; }
    .ht-carousel { min-height: 400px; }
}
@media (max-width:450px) {
    .ht-carousel-title { font-size: 1.5rem; }
    .ht-carousel { min-height: 350px; }
}

/* ═══════════════════════════════════════════════════════
   OUR SERVICES (Home)
════════════════════════════════════════════════════════ */
.our-services { padding: 5rem 0; display: flex; flex-direction: column; }
.our-services .btn-primary { margin: 2rem auto auto; display: table; }
.kt-mid { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; }
service { display: flex; text-align: center; position: relative; width: 320px; height: 380px; margin: auto 2rem 4rem; flex-direction: column; overflow: hidden; min-width: calc(33.33% - 12rem); }
service:hover .service-bg { width: 120%; height: 120%; left: -10%; top: -10%; }
.service-bg { background-position: center; background-size: cover; width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 1; transition: .3s; }
.service-bg-filter { background: var(--primary-color); opacity: .5; z-index: 2; }
.service-inner { position: relative; z-index: 3; color: #fff; display: flex; flex-direction: column; height: 100%; }
service h3 { margin: 2rem auto 1rem 1rem; position: relative; width: auto; box-sizing: border-box; text-align: left; display: table; }
service p { text-align: left; margin: 0 1rem; }
.service-header.sep:after { width: 100% }
service .btn { align-items: center; margin: auto auto 2rem 0; display: flex; font-size: .8rem; position: absolute; bottom: 0; left: 1rem; }
service .service-footer { margin: 1rem; text-align: left; font-size: .8rem; overflow: hidden; max-height: 11rem; }
.service-inner .btn span { margin-left: .5rem; font-size: 1rem; }

@media (max-width:1024px) {
    service { margin: auto auto 2rem; width: 300px; height: 350px }
    service .service-footer { font-size: .9rem }
}

/* ═══════════════════════════════════════════════════════
   POINTER / WORK STYLES
════════════════════════════════════════════════════════ */
.pointer { width: 100%; text-align: center; color: #fff; background: var(--primary-color); padding: 3rem 0; }
.pointer h2 { position: relative; margin: 0 auto; display: inline-block; text-align: center; padding: 0 0 1rem 0; font-size: 1.3rem; letter-spacing: .05em; }
.pointer h2:after { content: ""; position: absolute; width: 60px; height: 3px; background: var(--secondary-color); bottom: 0; left: 50%; transform: translateX(-50%); border-radius: 2px; }
.pointer h2:before { display: none; }

.work-styles { display: flex; flex-direction: column; background: var(--gray-color); }
.wss-inner { padding: 4rem 0; }
.wss-inner .ht-three { border-radius: 8px; box-shadow: 0 4px 24px rgba(23,31,52,.10); }
.wss-inner .ht-three:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(23,31,52,.16); }
.wss-inner .ht-three:before, .wss-inner .ht-three:after { display: none; }

/* ═══════════════════════════════════════════════════════
   LET'S WORK TOGETHER
════════════════════════════════════════════════════════ */
.work-together { position: relative; }
.wt-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url(../img/work-together.jpg); background-position: center; background-size: cover; }
.wt-filter { left: 0; top: 0; background: #171f34; z-index: 1; opacity: .9; position: absolute; width: 100%; height: 100%; }
.wt-inner { display: flex; flex-direction: column; text-align: center; max-width: 900px; padding: 5rem 0; color: #fff; z-index: 2; position: relative; margin: auto; }
.wt-inner h2 { margin: auto auto 2rem; }
.wt-inner p { padding: 0 2rem; position: relative; }
.wt-inner .btn { margin: 2rem auto auto; }

/* ═══════════════════════════════════════════════════════
   CONTACT (Home)
════════════════════════════════════════════════════════ */
.contact { margin: 5rem 0; }
.offset { position: relative; top: calc(-100px - 5rem); }
.contact-inner { display: flex; justify-content: center; max-width: 1600px; margin: auto; }
.contact-map { margin: auto 1rem auto 2rem; width: 50%; height: 500px; border: 0; }
.contact-form { margin: auto 2rem auto 1rem; width: 50%; display: flex; flex-direction: column; }
.contact-form form { display: flex; flex-direction: column; }
.contact-form h3 { margin: auto auto 2rem; text-align: center; }
.contact-input, .contact-textarea { box-sizing: border-box; width: 100%; border: 0; border-bottom: solid 1px var(--secondary-color); padding: 1rem; margin-bottom: 1rem; font-size: 1rem; background: var(--gray-color); }
.contact-input::placeholder, .contact-textarea::placeholder { color: var(--primary-color); }
.cb-agreement { display: table; text-align: center; margin-bottom: 1rem; font-size: .85rem; }
.cb-agreement a { font-weight: 700; color: var(--secondary-color); }
.contact-form .btn { margin: 1rem auto auto; }

@media (max-width:900px) {
    .contact-inner { flex-direction: column-reverse }
    .contact-map { width: 100%; margin: auto; height: 350px; }
    .contact { margin: auto 0 }
    .contact-form { margin: 3rem auto; width: 100%; max-width: 650px; padding: 0 2rem; box-sizing: border-box; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer { display: flex; flex-direction: column; border-top: solid 5px var(--secondary-color); min-height: 100%; position: relative; background: var(--primary-color); line-height: 2; color: #fff; }
.footer-top { max-width: 1366px; margin: auto; position: relative; z-index: 2; padding: 2rem 0; display: flex; width: 100%; }
.footer-parts { display: flex; width: 100%; margin: 0 auto; }
.footer-part { display: flex; margin: 0 auto 1rem; flex-direction: column; position: relative; }
.footer-part h3 { margin: 0 auto 1rem; color: var(--secondary-color); font-size: 1rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-logo { width: 240px; margin-bottom: 1rem; }
.footer-social { z-index: 2; position: relative; display: flex; align-items: center; color: #fff; }
.footer-social span { padding-right: 1rem; margin: 0; align-self: flex-start; padding-top: .9rem; font-size: 1.2rem; }
.footer-services { margin: 0 0 1rem; }
.footer-services li { list-style: none; }
.footer-service { list-style: none; }
.footer-services a { color: #fff; font-size: .9rem; transition: .3s; line-height: 2; }
.footer-services a:hover { color: var(--secondary-color); }
footer .social-medias { width: 100%; margin-top: 1rem; }
footer .social-medias span { font-size: 1.5rem; margin-right: .5rem; }
footer a:hover { color: var(--secondary-color); }
.footer-top-bg { top: 0; left: 0; width: 100%; height: 100%; position: absolute; background-position: center; background-image: url(../img/aries.png); filter: invert(.5) opacity(.08); background-repeat: no-repeat; background-size: contain; }
.footer-bot { display: flex; width: 100%; justify-content: center; position: relative; z-index: 2; border-top: solid 1px rgba(206,172,110,.2); }
.footer-bot p { margin: auto; padding: 30px 0; color: #fff; font-size: .85rem; }

@media (max-width:650px) {
    .footer-parts { flex-direction: column }
    .footer-part { margin: 0 auto 2rem }
    .footer-logo { margin: 0 auto 1rem; }
    .footer-part h3 { text-align: center; }
    .footer-services { text-align: center; }
    footer .social-medias { text-align: center; }
    .footer-social { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   ICON FONT
════════════════════════════════════════════════════════ */
[class^="icon-"], [class*=" icon-"] { font-family: "general" !important; speak: never; font-style: normal; font-weight: 400; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.icon-add:before { content: "\EA01" }
.icon-applications:before { content: "\EA02" }
.icon-arrow-down:before { content: "\EA03" }
.icon-arrow-right:before { content: "\EA04" }
.icon-articles:before { content: "\EA05" }
.icon-close:before { content: "\EA06" }
.icon-date:before { content: "\EA07" }
.icon-delete:before { content: "\EA08" }
.icon-edit:before { content: "\EA09" }
.icon-hide:before { content: "\EA0A" }
.icon-home:before { content: "\EA0B" }
.icon-instagram:before { content: "\EA0C" }
.icon-last_page:before { content: "\EA0D" }
.icon-linkedin:before { content: "\EA0E" }
.icon-mail:before { content: "\EA0F" }
.icon-menu:before { content: "\EA10" }
.icon-messages:before { content: "\EA11" }
.icon-new-users:before { content: "\EA12" }
.icon-news:before { content: "\EA13" }
.icon-no:before { content: "\EA14" }
.icon-notifications:before { content: "\EA15" }
.icon-phone:before { content: "\EA16" }
.icon-policies:before { content: "\EA17" }
.icon-profile:before { content: "\EA18" }
.icon-services:before { content: "\EA19" }
.icon-share:before { content: "\EA1A" }
.icon-time:before { content: "\EA1B" }
.icon-twitter:before { content: "\EA1C" }
.icon-update:before { content: "\EA1D" }
.icon-user:before { content: "\EA1E" }
.icon-users:before { content: "\EA1F" }
.icon-writers:before { content: "\EA20" }
.icon-yes:before { content: "\EA21" }
.icon-youtube:before { content: "\EA22" }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (Inner Pages)
════════════════════════════════════════════════════════ */
.page-hero { position: relative; min-height: 300px; display: flex; align-items: center; background: var(--primary-color); padding-top: 100px; z-index: 1; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-hero-filter { position: absolute; inset: 0; background: #171f34; opacity: .5; z-index: 1; }
.page-hero .container { position: relative; z-index: 2; text-align: center; color: #fff; padding: 4rem 2rem; }
.page-hero h1 { font-size: 2.2rem; font-weight: 300; margin-bottom: 1rem; position: relative; display: inline-block; }
.page-hero h1:after { content: ""; position: absolute; width: 100%; height: 3px; background: var(--secondary-color); bottom: -12px; left: 0; border-radius: 3px; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 700px; margin: 2rem auto 0; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--secondary-color); font-size: .85rem; margin-bottom: 1rem; transition: gap .3s; }
.back-link:hover { gap: 12px; }

@media (max-width:650px) { .page-hero { padding-top: 80px; min-height: 200px; } .page-hero .container { padding: 3rem 1rem; } }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════════ */
.contact-page-section { background: var(--gray-color); padding: 5rem 0; }
.contact-page-inner { display: flex; max-width: 1200px; margin: auto; background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.contact-page-info { width: 40%; background: var(--primary-color); color: #fff; padding: 3rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.contact-page-info h2 { color: var(--secondary-color); font-size: 1.1rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .5rem; }
.contact-page-info p { font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.8; }
.contact-page-form { width: 60%; padding: 3rem; }
.contact-page-form form { display: flex; flex-direction: column; }
.contact-page-form .form-row { display: flex; gap: 1rem; }
.contact-page-form .form-group { flex: 1; display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1.2rem; }
.contact-page-form label { font-size: .8rem; font-weight: 600; color: var(--primary-color); text-transform: uppercase; letter-spacing: .03em; }
.contact-page-form input, .contact-page-form select, .contact-page-form textarea { width: 100%; border: 0; border-bottom: solid 1px var(--secondary-color); background: var(--gray-color); padding: .8rem 1rem; font-size: .9rem; box-sizing: border-box; font-family: inherit; border-radius: 0; appearance: none; }
.contact-page-form textarea { min-height: 100px; resize: vertical; }
.contact-page-form .btn { margin-top: 1rem; align-self: flex-start; }
.contact-secure-badge { display: flex; align-items: center; gap: 12px; padding: 1rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; }
.contact-secure-badge strong { display: block; font-size: .85rem; color: var(--secondary-color); }
.contact-secure-badge span { font-size: .8rem; color: rgba(255,255,255,.6); }
.office-address { display: flex; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.7; }
.office-address span { color: var(--secondary-color); }
.contact-info__hours { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); }
.contact-info__hours h3 { font-size: .8rem; font-weight: 600; letter-spacing: .05em; color: var(--secondary-color); text-transform: uppercase; margin-bottom: .8rem; }
.contact-info__hours div { display: flex; justify-content: space-between; font-size: .85rem; padding: .3rem 0; }

@media (max-width:900px) {
    .contact-page-inner { flex-direction: column; }
    .contact-page-info, .contact-page-form { width: 100%; }
}
@media (max-width:650px) {
    .contact-page-form .form-row { flex-direction: column; }
    .contact-page-form { padding: 2rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════
   TEAM DETAIL PAGE
════════════════════════════════════════════════════════ */
.team-detail-section { background: var(--gray-color); padding: 5rem 0; }
.team-detail-list { max-width: 1100px; margin: auto; display: flex; flex-direction: column; gap: 0; }
.team-detail-card { display: flex; gap: 3rem; padding: 3rem; background: #fff; margin-bottom: 2px; align-items: flex-start; }
.team-detail-card__photo { width: 280px; flex-shrink: 0; position: relative; }
.team-detail-card__photo-wrap { border-radius: 4px; overflow: hidden; background: var(--primary-color); aspect-ratio: 4/5; }
.team-detail-card__photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-detail-card__icon { position: absolute; bottom: -10px; right: -10px; width: 44px; height: 44px; background: var(--secondary-color); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.team-detail-card__content { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.team-detail-card__badge { display: inline-block; padding: .2rem .8rem; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: 2px; width: fit-content; }
.badge--gold { background: var(--secondary-color); color: var(--primary-color); }
.badge--outline { border: 2px solid var(--secondary-color); color: var(--secondary-color); }
.team-detail-card__name { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); }
.team-detail-card__role { font-size: .85rem; font-weight: 600; color: var(--secondary-color); text-transform: uppercase; letter-spacing: .06em; }
.team-detail-card__bio { font-size: .9rem; line-height: 2; color: var(--primary-color); }
.team-detail-card__label { display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--panel-color); margin-bottom: .5rem; }
.team-detail-card__expertise ul { display: flex; flex-wrap: wrap; gap: .5rem; }
.team-detail-card__expertise li { padding: .3rem .8rem; font-size: .8rem; border: 1px solid var(--secondary-color); color: var(--primary-color); border-radius: 2px; }

@media (max-width:768px) {
    .team-detail-card { flex-direction: column; padding: 2rem; }
    .team-detail-card__photo { width: 200px; }
}

/* ═══════════════════════════════════════════════════════
   SERVICES DETAIL PAGE
════════════════════════════════════════════════════════ */
.services-detail-section { background: var(--gray-color); padding: 5rem 0; }
.service-detail { background: #fff; margin-bottom: 2px; padding: 3rem; }
.service-detail__inner { display: flex; gap: 2rem; max-width: 1100px; margin: auto; }
.service-detail__icon { width: 56px; height: 56px; color: var(--secondary-color); flex-shrink: 0; }
.service-detail__content { flex: 1; }
.service-detail__content h2 { font-size: 1.4rem; font-weight: 700; color: var(--primary-color); margin-bottom: 1rem; }
.service-detail__content > p { font-size: .9rem; line-height: 2; color: var(--primary-color); max-width: 700px; margin-bottom: 1.5rem; }
.service-detail__points { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; max-width: 700px; margin-bottom: 1.5rem; }
.service-detail__points li { font-size: .85rem; padding: .4rem 0 .4rem 1.5rem; position: relative; color: var(--primary-color); }
.service-detail__points li:before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; background: var(--secondary-color); border-radius: 50%; }

@media (max-width:768px) {
    .service-detail { padding: 2rem; }
    .service-detail__inner { flex-direction: column; gap: 1rem; }
    .service-detail__points { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   REAL ESTATE (Biens)
════════════════════════════════════════════════════════ */
.biens-section { background: var(--gray-color); padding: 5rem 0; }
.biens-filters { margin-bottom: 2rem; background: #fff; border-radius: 4px; padding: 2rem; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.biens-filters__form { display: flex; gap: 1.5rem; align-items: flex-end; flex-wrap: wrap; }
.biens-filters__group { display: flex; flex-direction: column; gap: .3rem; min-width: 180px; }
.biens-filters__group label { font-size: .75rem; font-weight: 600; color: var(--primary-color); text-transform: uppercase; letter-spacing: .03em; }
.biens-filters__group select { width: 100%; border: 0; border-bottom: solid 1px var(--secondary-color); background: var(--gray-color); padding: .7rem 1rem; font-size: .85rem; font-family: inherit; appearance: none; cursor: pointer; }
.biens-filters__action { display: flex; gap: .5rem; align-items: flex-end; }
.biens-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.bien-card { background: #fff; border-radius: 4px; overflow: hidden; transition: transform .3s, box-shadow .3s; position: relative; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.bien-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.bien-card__badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; padding: .25rem .75rem; font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; border-radius: 2px; }
.bien-card__image { height: 220px; background: var(--primary-color); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.bien-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.bien-card:hover .bien-card__img { transform: scale(1.05); }
.bien-card__image-placeholder { width: 64px; height: 64px; color: rgba(255,255,255,.2); }
.bien-card__body { padding: 1.5rem; }
.bien-card__title { font-size: 1.1rem; font-weight: 700; color: var(--primary-color); margin-bottom: .3rem; line-height: 1.3; }
.bien-card__location { font-size: .8rem; color: var(--panel-color); margin-bottom: 1rem; }
.bien-card__location span { color: var(--secondary-color); }
.bien-card__meta { display: flex; gap: 1rem; margin-bottom: .8rem; flex-wrap: wrap; }
.bien-card__meta-item { display: inline-flex; align-items: center; gap: .3rem; font-size: .8rem; font-weight: 500; color: var(--primary-color); }
.bien-card__meta-item span { color: var(--secondary-color); font-weight: 700; }
.bien-card__desc { font-size: .85rem; line-height: 1.7; color: var(--primary-color); margin-bottom: 1rem; }
.bien-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; color: var(--secondary-color); text-decoration: none; text-transform: uppercase; letter-spacing: .05em; transition: gap .3s; }
.bien-card:hover .bien-card__link { gap: 12px; }
.biens-empty { text-align: center; padding: 5rem 0; color: var(--panel-color); }
.biens-empty a { color: var(--secondary-color); font-weight: 600; }

/* Bien Detail */
.bien-detail-section { background: var(--gray-color); padding: 5rem 0; }
.bien-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1200px; margin: auto; background: #fff; border-radius: 4px; padding: 3rem; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.bien-detail__gallery { position: relative; }
.bien-detail__image-placeholder { width: 100%; aspect-ratio: 4/3; background: var(--primary-color); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.15); margin-bottom: 1rem; }
.bien-detail__main-photo-wrap { width: 100%; border-radius: 4px; overflow: hidden; margin-bottom: 1rem; background: var(--gray-color); }
.bien-detail__main-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.bien-detail__gallery-thumbs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.bien-detail__gallery-thumb { width: 80px; height: 60px; border-radius: 4px; overflow: hidden; border: 1px solid var(--border); transition: opacity .15s; }
.bien-detail__gallery-thumb:hover { opacity: .8; }
.bien-detail__gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bien-detail__price { background: var(--primary-color); border-radius: 4px; padding: 1.5rem; border-left: 4px solid var(--secondary-color); }
.bien-detail__price-label { display: block; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--secondary-color); margin-bottom: .3rem; }
.bien-detail__price-value { display: block; font-size: 1.8rem; font-weight: 700; color: #fff; }
.bien-detail__content { display: flex; flex-direction: column; gap: 2rem; }
.bien-detail__meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bien-detail__meta-item { padding: 1rem; background: var(--gray-color); border-radius: 4px; border-left: 3px solid var(--secondary-color); }
.bien-detail__meta-label { display: block; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--panel-color); margin-bottom: .2rem; }
.bien-detail__meta-value { display: block; font-size: 1.1rem; font-weight: 700; color: var(--primary-color); }
.bien-detail__description h2, .bien-detail__features h2, .bien-detail__contact h2 { font-size: 1.1rem; font-weight: 700; color: var(--primary-color); margin-bottom: .8rem; }
.bien-detail__description p { font-size: .9rem; line-height: 2; color: var(--primary-color); }
.bien-detail__features ul { display: flex; flex-wrap: wrap; gap: .5rem; }
.bien-detail__features li { padding: .4rem 1rem; font-size: .8rem; background: var(--gray-color); border: 1px solid var(--secondary-color); border-radius: 2px; color: var(--primary-color); }
.bien-detail__contact p { font-size: .9rem; color: var(--primary-color); margin-bottom: 1rem; }

@media (max-width:900px) {
    .bien-detail { grid-template-columns: 1fr; padding: 2rem; }
    .biens-grid { grid-template-columns: 1fr; }
    .biens-filters__form { flex-direction: column; }
}
@media (max-width:650px) {
    .bien-detail__meta-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════
   SIMULATOR / CALCULATOR PAGES
════════════════════════════════════════════════════════ */
.calc-section { background: var(--gray-color); padding: 5rem 0; }
.calc-card { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1100px; margin: auto; background: #fff; border-radius: 4px; padding: 3rem; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.calc-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.calc-form .form-group { display: flex; flex-direction: column; gap: .3rem; }
.calc-form .form-label { font-size: .8rem; font-weight: 600; color: var(--primary-color); text-transform: uppercase; letter-spacing: .02em; }
.calc-form .form-control { width: 100%; border: 0; border-bottom: solid 1px var(--secondary-color); background: var(--gray-color); padding: .7rem 1rem; font-size: .9rem; font-family: inherit; box-sizing: border-box; }
.calc-form .form-hint { font-size: .75rem; color: var(--panel-color); }
.calc-submit { margin-top: .5rem; }
.calc-results { padding-top: 1rem; }
.calc-results__title { font-size: 1.1rem; font-weight: 700; color: var(--primary-color); margin-bottom: 1.5rem; padding-bottom: .8rem; border-bottom: 2px solid var(--secondary-color); }
.results-highlight { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.result-main { padding: 1.2rem; background: var(--gray-color); border-radius: 4px; border-left: 3px solid var(--secondary-color); }
.result-main--total { background: var(--primary-color); border-left-color: var(--secondary-color); }
.result-main__label { display: block; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--panel-color); margin-bottom: .3rem; }
.result-main--total .result-main__label { color: var(--secondary-color); }
.result-main__value { display: block; font-size: 1.3rem; font-weight: 700; color: var(--primary-color); }
.result-main--total .result-main__value { color: #fff; }
.results-table { width: 100%; border-collapse: collapse; font-size: .85rem; margin-bottom: 1rem; }
.results-table td { padding: .7rem .5rem; border-bottom: 1px solid var(--gray-color); color: var(--primary-color); }
.td--number { text-align: right; font-weight: 600; }
.results-table__total td { font-weight: 700; border-top: 2px solid var(--secondary-color); border-bottom: none; }
.calc-disclaimer { font-size: .8rem; color: var(--panel-color); line-height: 1.7; padding: 1rem; background: var(--gray-color); border-radius: 4px; border-left: 3px solid var(--secondary-color); margin-top: 1rem; }
.results-tranche-detail { margin-top: 1.5rem; }
.results-tranche-detail h4 { font-size: .85rem; font-weight: 600; color: var(--primary-color); margin-bottom: .8rem; }
.tranche-table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.tranche-table th, .tranche-table td { padding: .5rem; border-bottom: 1px solid var(--gray-color); }
.tranche-table th { font-weight: 600; color: var(--panel-color); font-size: .75rem; text-align: left; }

@media (max-width:768px) {
    .calc-card { grid-template-columns: 1fr; padding: 2rem; }
    .calc-form__grid { grid-template-columns: 1fr; }
    .results-highlight { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES
════════════════════════════════════════════════════════ */
.legal-section { background: var(--gray-color); padding: 5rem 0; }
.legal-content { max-width: 900px; margin: auto; background: #fff; border-radius: 4px; padding: 3rem; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.legal-content article { padding: 1.5rem 0; border-bottom: 1px solid var(--gray-color); }
.legal-content article:last-child { border-bottom: none; }
.legal-content h2 { font-size: 1.1rem; font-weight: 700; color: var(--primary-color); margin-bottom: .8rem; }
.legal-content p, .legal-content li { font-size: .9rem; line-height: 2; color: var(--primary-color); }
.legal-content a { color: var(--secondary-color); font-weight: 600; }

/* Sitemap */
.sitemap-list > li { font-size: .95rem; font-weight: 600; padding: .8rem 0; border-bottom: 1px solid var(--gray-color); }
.sitemap-list > li a { color: var(--primary-color); transition: color .3s; }
.sitemap-list > li a:hover { color: var(--secondary-color); }
.sitemap-list ul { padding: .5rem 0 0 1.5rem; }
.sitemap-list ul li { font-weight: 400; font-size: .85rem; padding: .4rem 0; }

/* ═══════════════════════════════════════════════════════
   TOOLS PREVIEW (Home)
════════════════════════════════════════════════════════ */
.tools-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin: 2rem auto 0; }
.tool-preview-card { display: block; padding: 2.5rem 2rem; background: #fff; border-radius: 4px; text-decoration: none; transition: transform .3s, box-shadow .3s; border: 1px solid var(--gray-color); text-align: center; }
.tool-preview-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.tool-preview-card__icon { width: 48px; height: 48px; color: var(--secondary-color); margin: 0 auto 1rem; }
.tool-preview-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary-color); margin-bottom: .5rem; }
.tool-preview-card p { font-size: .85rem; color: var(--primary-color); margin-bottom: 1rem; }
.tool-preview-card__link { font-size: .8rem; font-weight: 600; color: var(--secondary-color); text-transform: uppercase; letter-spacing: .05em; }

@media (max-width:650px) { .tools-preview-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════════════════════ */
.section-eyebrow { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--secondary-color); margin-bottom: .5rem; }
.section-header { margin-bottom: 2rem; text-align: center; }
.section-header h2 { font-size: 1.5rem; font-weight: 300; color: var(--primary-color); position: relative; display: inline-block; padding-bottom: 1rem; }
.section-header h2:after { content: ""; position: absolute; width: 60px; height: 3px; background: var(--secondary-color); bottom: 0; left: 50%; transform: translateX(-50%); border-radius: 3px; }
.section-sub { font-size: .9rem; color: var(--primary-color); max-width: 600px; margin: 1.5rem auto 0; line-height: 2; }
.section-footer-link { text-align: center; margin-top: 2rem; }

/* ═══════════════════════════════════════════════════════
   FORM FEEDBACK
════════════════════════════════════════════════════════ */
.form-feedback { padding: .8rem 1rem; border-radius: 4px; font-size: .85rem; font-weight: 500; margin-bottom: .5rem; }
.form-feedback--success { background: #d4edda; color: #155724; }
.form-feedback--error { background: #f8d7da; color: #721c24; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ═══════════════════════════════════════════════════════
   SOCIAL MEDIAS
════════════════════════════════════════════════════════ */
.social-medias { margin: auto; padding: 0; display: flex; gap: .5rem; }
.social-media { color: inherit; font-size: 1.2rem; transition: color .3s; }
.social-media:hover { color: var(--secondary-color); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════════════════════ */
@media (max-width:1366px) { html { font-size: 16px } }
@media (max-width:1276px) { html { font-size: 15px } }
@media (max-width:1024px) { html { font-size: 14px } }
@media (max-width:650px) {
    .preloader img { width: 200px !important; }
    .social-medias { width: auto; margin: auto; display: flex; justify-content: center; }
}
