:root {
    --bg-light: #F6F4EF;
    --bg-dark: #2A2826;
    --text-main: #1C1B1A;
    --text-light: #F6F4EF;
    --text-muted: #6B6862;
    --accent: #E85D3B;
    --border-color: #E2DFD8;

    --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-serif: 'Instrument Serif', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Utilities */
.section-padding {
    padding: 100px 5%;
}

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

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

.section-bg {
    background-color: #F0EFE9;
}

.subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.dark-bg .subtitle {
    color: #A09D96;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 26px;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #CF4E2E;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

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

.full-width {
    width: 100%;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 4%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    padding-bottom: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
}

.logo.text-white {
    color: white;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: white;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a svg {
    margin-top: 2px;
    opacity: 0.8;
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-link {
    color: white;
    font-weight: 400;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
}

.header-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 120px;
    background-color: var(--accent);
    z-index: -1;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    z-index: -1;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 8rem);
    color: white;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-top: 15vh;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-text-block {
    position: absolute;
    right: 5%;
    top: -5vh;
    max-width: 550px;
}

.hero-description {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 31.9219px;
    letter-spacing: -0.84px;
    color: white;
    margin-bottom: 30px;
}

.text-yellow {
    color: #F8c246;
}

.btn-start-today {
    display: inline-block;
    background-color: #FDFBF7;
    color: #111;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    padding: 18px 40px;
    transition: all 0.3s ease;
}

.btn-start-today:hover {
    background-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .btn-start-today {
        padding: 15px 30px;
        font-size: 0.85rem;
    }

    .hero-text-block {
        position: relative;
        right: auto;
        top: auto;
        max-width: 100%;
        margin-top: 5vh;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 6rem);
        margin-top: 5vh;
    }
}

/* Intro Section */
.intro-container {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500;
}

.intro-text h2 strong {
    font-weight: 800;
}

.italic-accent {
    font-family: var(--font-serif);
    font-style: italic;
    color: #8C8983;
}

.service-list {
    list-style: none;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

.service-list li {
    border-bottom: 1px solid var(--border-color);
}

.service-list a {
    display: block;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
}

.service-list a::after {
    content: '+';
    position: absolute;
    right: 0;
    color: var(--accent);
    font-size: 1.5rem;
}

.intro-image {
    flex: 1;
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.partners {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-icon {
    font-weight: 800;
    font-size: 1.5rem;
    color: #A09D96;
    letter-spacing: 2px;
}

.partner-text {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Portfolio Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.project-card {
    background-color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-image {
    height: 250px;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    margin-bottom: 5px;
}

.project-info .location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.project-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: auto;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.stat strong {
    font-size: 1.1rem;
}

.mt-40 {
    margin-top: 40px;
}

/* Ticker Section */
.ticker-wrap {
    background-color: #D3C9B6;
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker {
    display: inline-flex;
    align-items: center;
    animation: ticker 20s linear infinite;
}

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

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

.ticker-item {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticker-separator {
    margin: 0 40px;
    color: var(--accent);
}

/* Philosophy */
.philosophy-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.philosophy-left {
    flex: 1;
}

.philosophy-right {
    flex: 1;
    max-width: 500px;
}

.philosophy-right p {
    font-size: 1.1rem;
    color: #A09D96;
    margin-bottom: 40px;
}

.stats-row {
    display: flex;
    gap: 60px;
}

.big-stat {
    display: flex;
    flex-direction: column;
}

.big-stat .number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.big-stat .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #A09D96;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.image-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Testimonial Section */
.testimonial {
    position: relative;
    padding: 150px 5%;
    overflow: hidden;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-content h3 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 50px;
}

.author {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
}

.author-info span {
    font-size: 0.9rem;
    color: #A09D96;
}

.massive-text {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: clamp(10rem, 20vw, 25rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 0.8;
    z-index: 1;
    pointer-events: none;
    text-transform: uppercase;
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 60px;
}

.contact-image {
    flex: 1;
}

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

.contact-form-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.form-box {
    background-color: white;
    padding: 60px;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--bg-light);
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 1px solid var(--accent);
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 4px;
}

.checkbox-label a {
    color: var(--accent);
    text-decoration: underline;
}

/* News Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.blog-card {
    background-color: white;
}

.blog-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.blog-info {
    padding: 30px;
}

.blog-info .meta {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.blog-info h3 {
    font-size: 1.3rem;
    line-height: 1.4;
}

/* Footer Banner */
.footer-banner {
    background-color: #D3C9B6;
    padding: 80px 5%;
    text-align: center;
}

.footer-banner h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 100px 5% 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.brand-col p {
    color: #A09D96;
    margin-top: 20px;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col p {
    color: #A09D96;
    margin-bottom: 15px;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #A09D96;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
}

.social-links a:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    color: #A09D96;
    font-size: 0.9rem;
}

/* Portfolio Internal Page */
.header-light {
    position: relative;
    background-color: white;
    padding: 20px 5%;
}

.header-light .header-container {
    border-bottom: 1px solid var(--border-color);
}

.header-light .nav-menu a {
    color: var(--text-main);
}

.header-light .nav-menu a:hover,
.header-light .nav-menu a.active {
    color: var(--accent);
}

.header-light .phone-link {
    color: var(--text-main);
}

.header-light .logo.text-dark {
    color: var(--text-main);
}

.header-light .mobile-toggle span {
    background-color: var(--text-main);
}

.page-header {
    background-color: var(--bg-light);
    padding-top: 80px;
    padding-bottom: 60px;
}

.page-header-content {
    max-width: 800px;
}

.page-header h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pt-0 {
    padding-top: 0;
}

.masonry-row {
    display: flex;
    gap: 30px;
    width: 100%;
}

.masonry-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.masonry-card {
    position: relative;
}

.masonry-card img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.masonry-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.masonry-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.highlights-section {
    border-top: 1px solid var(--border-color);
    background-color: white;
}

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

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.highlight-item p {
    color: var(--text-muted);
}

.massive-text-container {
    overflow: hidden;
    position: relative;
    padding: 60px 0;
    background-color: var(--bg-light);
}

.massive-text-light {
    text-align: center;
    font-size: clamp(8rem, 18vw, 22rem);
    font-weight: 800;
    color: #EAE6DB;
    line-height: 0.8;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

/* ===================== */
/* Services Page Styles  */
/* ===================== */

.service-detail-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.service-detail-container.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-weight: 500;
}

.service-detail-content h2 strong {
    font-weight: 800;
}

.service-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    margin-bottom: 40px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.service-features li:first-child {
    border-top: 1px solid var(--border-color);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 16px;
    height: 16px;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--font-main);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.process-step p {
    color: #A09D96;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ======================== */
/* Réalisation Page Styles  */
/* ======================== */

.breadcrumb-section {
    background-color: var(--bg-light);
    padding: 0 5% 20px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .separator {
    margin: 0 10px;
    opacity: 0.5;
}

.breadcrumb .current {
    color: var(--text-main);
    font-weight: 600;
}

.project-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

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

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 60px 5%;
}

.project-hero-content h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    color: white;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.project-hero-content .subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.project-meta-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

/* Project Details */
.project-details-grid {
    display: flex;
    gap: 80px;
}

.project-description {
    flex: 2;
}

.project-description h2 {
    margin-bottom: 20px;
}

.project-description p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-specs {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    align-self: flex-start;
}

.project-specs h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.spec-value {
    font-weight: 700;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.gallery-item p {
    margin-top: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.gallery-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--bg-dark);
    color: white;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.gallery-label-after {
    background-color: var(--accent);
}

/* Project CTA */
.project-cta-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content-inline {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-content-inline h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

/* =================== */
/* Devis Page Styles   */
/* =================== */

.devis-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.devis-form-wrapper {
    flex: 2;
}

.devis-form-wrapper .form-box {
    background-color: white;
    padding: 60px;
}

.devis-form-wrapper .form-box h2 {
    margin-bottom: 10px;
}

.form-intro {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.devis-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--bg-light);
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: border-color 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6862' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.full-width-group {
    grid-column: 1 / -1;
}

/* Devis Sidebar */
.devis-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background-color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.sidebar-card h4 {
    font-size: 1rem;
    font-weight: 700;
}

.sidebar-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.sidebar-card a {
    color: var(--accent);
}

.sidebar-card a:hover {
    text-decoration: underline;
}

.sidebar-map {
    background-color: white;
    overflow: hidden;
}

.sidebar-map img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.map-caption {
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Assurance Section */
.assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

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

.assurance-icon {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
}

.assurance-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.assurance-item p {
    color: #A09D96;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
/* =========================================
   Dropdown Navigation
   ========================================= */

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 100;
    top: 100%;
    left: 0;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--text-dark) !important;
    padding: 10px 20px !important;
    display: block !important;
    font-size: 0.95rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    border-bottom: none !important;
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--accent) !important;
}

/* =========================================
   Floating Action Buttons
   ========================================= */

.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.floating-btn.phone {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.1);
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
}

.floating-btn.phone svg {
    margin: 0;
}

.floating-btn.phone:hover {
    background-color: #fff;
}

.floating-btn.quote {
    background-color: var(--accent);
    color: white;
}

.floating-btn.quote:hover {
    background-color: #d1502f;
}

@media (max-width: 1024px) {
    .floating-actions {
        bottom: 15px;
        right: 15px;
        flex-direction: row-reverse;
        align-items: flex-end;
    }
    
    .floating-btn.phone {
        width: 45px;
        height: 45px;
    }
    
    .floating-btn.quote {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: transparent;
        padding-left: 20px;
        display: block; /* Always show on mobile menu */
    }
}

/* =========================================
   Responsive Global Adjustments
   ========================================= */

@media (max-width: 1024px) {

    .projects-grid,
    .image-gallery,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-card {
        right: 5%;
        max-width: 300px;
    }

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

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

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

@media (max-width: 768px) {

    .nav-menu,
    .header-right .phone-link,
    .header-right .btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        margin-top: 20vh;
    }

    .hero-card {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 40px;
        max-width: 100%;
    }

    .intro-container,
    .philosophy-container,
    .contact-container {
        flex-direction: column;
    }

    .projects-grid,
    .image-gallery,
    .blog-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .masonry-row {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .massive-text {
        font-size: 5rem;
        bottom: 0;
    }

    .partners {
        justify-content: center;
    }

    .service-detail-container,
    .service-detail-container.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-image img {
        height: 300px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-details-grid {
        flex-direction: column;
        gap: 40px;
    }

    .project-hero {
        height: 50vh;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-cta-grid {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cta-content-inline {
        flex-direction: column;
    }

    .devis-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .devis-sidebar,
    .devis-form-wrapper {
        width: 100%;
        box-sizing: border-box;
    }

    .devis-form-wrapper .form-box {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .assurance-grid {
        grid-template-columns: 1fr;
    }
}