/* ========================================
   AMENITE - Modern CSS with Subtle Animations
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #003F3A;
    --accent-color: #003F3A;
    --bg-light: #F1F1F1;
    --text-primary: #003F3A;
    --text-secondary: #666;
    --white: #ffffff;
    --border-color: #CCCCCC;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Oswald', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    max-width: 100vw;
}

html {
    max-width: 100vw;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Prevent horizontal overflow */
main,
section,
.main-content {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #005550;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* Section Styles */
section {
    padding: 80px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    animation: slideIn 0.6s ease;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 50px;
    }
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-primary);
    text-transform: uppercase;
    line-height: 1.3;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-text {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    color: rgb(255, 255, 255);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-number,
.show-phone-btn {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 23px;
}

.show-phone-btn,
.show-phone-btn-footer {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    text-decoration: underline;
    transition: var(--transition-fast);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 23px;
}

.show-phone-btn:hover,
.show-phone-btn-footer:hover {
    opacity: 0.8;
}

.top-bar-social {
    display: flex;
    gap: 0.75rem;
}

.top-bar-social a {
    color: var(--white);
    transition: var(--transition-fast);
}

.top-bar-social a:hover {
    transform: translateY(-2px);
}

/* ========================================
   NAVIGATION
   ======================================== */
.main-nav {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    overflow: visible;
}

.main-nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.nav-logo {
    grid-column: 1;
}

.nav-logo img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-light {
    display: none;
}

.nav-menu {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide mobile-only elements on desktop */
.mobile-menu-header,
.mobile-menu-backdrop,
.mobile-menu-cta {
    display: none;
}

.dropdown-icon {
    display: none;
}

.desktop-chevron {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--primary-color);
    padding: 0.5rem 0;
    transition: var(--transition-fast);
    text-transform: uppercase;
}

.nav-link:hover {
    color: rgb(140, 151, 150);
}

.nav-item.active .nav-link {
    color: var(--primary-color);
    position: relative;
}

.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.nav-cta {
    grid-column: 3;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    min-width: 250px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: rgb(0, 63, 58);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    opacity: 0;
    animation: slideInRight 0.6s ease 1s forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.floating-cta-btn {
    background: #C41E3A;
    color: var(--white);
    border: none;
    padding: 18px 22px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-radius: 6px 0 0 6px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.3);
}

.floating-cta-btn:hover {
    background: #a01830;
    padding-left: 28px;
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.hero-slider:active {
    cursor: grabbing;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 63, 58, 0.85) 0%, rgba(0, 63, 58, 0.6) 100%);
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.hero-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-description {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--white);
    font-size: 3rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition-smooth);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: translateY(0);
}

.feature-card:hover .feature-content h3,
.feature-card:hover .feature-content p {
    color: var(--white);
}

.feature-card:hover .feature-icon img {
    filter: brightness(0) invert(1);
}

.feature-icon {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.feature-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    transition: var(--transition-smooth);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: center;
}

.about-images-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    justify-content: center;
}

.about-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.about-images-main {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.about-img-large {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.about-img-large:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.about-overlay {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    z-index: 3;
    pointer-events: none;
}

.about-content {
    padding-left: 2rem;
}

.about-intro {
    font-size: 16px;
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    margin: 2rem 0;
}

.about-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 15px;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.about-signature {
    width: 150px;
    height: auto;
}

/* ========================================
   PARTNERS SECTION
   ======================================== */
.partners-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.partners-slider {
    overflow: hidden;
    margin-top: 3rem;
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.partners-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Continue in next part... */

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-header {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Top row: Card 1 (Projet de rénovation) and Card 2 (Décoration) */
.service-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.service-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

/* Bottom row: Cards 3, 4, 5 (Aménagement, Dépannage, Menuiserie) */
.service-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.service-card:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.service-card:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    height: 100%;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-light);
    display: block;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-number {
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 1rem;
}

.service-card h3 a {
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.service-card:hover h3 a {
    color: var(--primary-color);
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    opacity: 0.1;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    opacity: 0.3;
    transform: scale(1.1) rotate(5deg);
}

.service-link {
    position: absolute;
    bottom: 20px;
    left: 2.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.service-card:hover .service-link {
    transform: translateX(5px);
}

/* ========================================
   QUOTE SECTION
   ======================================== */
.quote-section {
    position: relative;
    padding: 0;
    margin: 0;
}

.quote-hero {
    position: relative;
    height: 500px;
    background-image: url('/assets/img/banners/devis.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.quote-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 63, 58, 0.5);
}

.quote-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--white);
    padding-left: 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.quote-hero-content h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin: 0;
    color: var(--white);
    text-transform: uppercase;
}

.quote-white-section {
    background: var(--white);
    padding: 80px 0;
    position: relative;
}

.quote-form-wrapper {
    max-width: 100%;
    margin: -200px 5% 0;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.quote-form-wrapper h3 {
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
}

.form-group textarea + label {
    top: 20px;
    transform: none;
}

/* Quote form input-wrapper styles */
.quote-form .input-wrapper {
    background: #F8F8F8;
    border: 2px solid #F8F8F8;
    border-radius: 6px;
    padding: 0 15px;
}

.quote-form .input-wrapper:focus-within {
    border-color: #E0E0E0;
    background: #F8F8F8;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.02);
}

.quote-form .input-wrapper svg {
    color: var(--primary-color);
}

.quote-form .input-wrapper input,
.quote-form .input-wrapper textarea {
    padding: 14px 0;
    font-size: 15px;
    color: var(--text-primary);
}

.quote-form .input-wrapper input::placeholder,
.quote-form .input-wrapper textarea::placeholder {
    color: #999;
}

.quote-form select {
    width: 100%;
    padding: 14px;
    border: 2px solid #F8F8F8;
    border-radius: 6px;
    background: #F8F8F8;
    font-family: var(--font-body);
    font-size: 15px;
    color: #666;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.quote-form select:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.quote-form select option:first-child {
    color: #999;
}

.quote-form .textarea-wrapper textarea {
    min-height: 120px;
    resize: vertical;
}

/* Legacy form-control styles (for backward compatibility) */
.form-control {
    width: 100%;
    padding: 14px 14px 14px 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.form-control::placeholder {
    color: #999;
    opacity: 1;
}

select.form-control {
    cursor: pointer;
    padding-left: 14px;
    color: #666;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    padding-left: 50px;
}

.form-submit {
    text-align: center;
    margin-top: 1rem;
}

.form-submit .btn {
    min-width: 250px;
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projects-section {
    padding: 80px 0;
    background: var(--white);
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.projects-header .section-subtitle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.projects-header .section-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.projects-header .section-subtitle::after {
    display: none;
}

.projects-header .btn {
    border-radius: 4px;
    padding: 12px 28px;
}

/* Row 1: 2 equal images */
.projects-row-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Row 2: smaller left, larger right */
.projects-row-2 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1.5rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }

.projects-row-1 .project-card {
    height: 280px;
}

.projects-row-2 .project-card {
    height: 300px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay span {
    font-size: 18px;
    font-weight: 500;
}

/* ========================================
   PAGE BANNER / HERO
   ======================================== */
.page-banner {
    position: relative;
    padding: 100px 0 80px;
    background: var(--primary-color);
    background-size: cover;
    background-position: center;
    color: var(--white);
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 63, 58, 0.75);
    z-index: 0;
}

.page-banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-banner-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.page-banner-line {
    width: 4px;
    height: 120px;
    background: #C41E3A;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.page-banner-text {
    text-align: left;
}

.page-banner h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    color: rgb(255, 255, 255);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs a {
    color: rgb(255, 255, 255);
    transition: var(--transition-fast);
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
}

.breadcrumbs a:hover {
    color: rgb(255, 255, 255);
    opacity: 0.8;
}

.breadcrumbs span {
    color: rgb(255, 255, 255);
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
}

.breadcrumbs svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   PROCESS / METHODOLOGY SECTION
   ======================================== */
.process-section {
    padding: 0;
    margin: 0;
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.process-image {
    position: relative;
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-content {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-content .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.process-content .section-subtitle::after {
    background: rgba(255, 255, 255, 0.5);
}

.process-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 33px;
    color: rgb(255, 255, 255);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.process-steps {
    list-style: none;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.process-step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.process-step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.process-step-icon svg {
    width: 100%;
    height: 100%;
    color: rgb(255, 255, 255);
}

.process-step-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    color: rgb(255, 255, 255);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.process-step-content p {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(255, 255, 255);
    margin: 0;
}

/* Process content text-only variant (no steps) */
.process-content > p {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(255, 255, 255);
    margin-bottom: 1rem;
}

.process-content > p:last-child {
    margin-bottom: 0;
}

/* ========================================
   SERVICE CONTENT SECTION
   ======================================== */
.service-content-section {
    padding: 80px 0;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

/* Reversed layout: Text on left, Images on right */
.service-content-reversed {
    direction: rtl;
}

.service-content-reversed > * {
    direction: ltr;
}

.service-content-reversed .service-images {
    grid-template-columns: 1.8fr 1fr;
}

.service-content-reversed .service-text {
    order: -1;
}

.service-images {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 1rem;
    height: 100%;
}

.service-images-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.service-images-col .service-img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    border-radius: 0;
}

.service-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.service-logo-overlay {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    z-index: 2;
}

.service-logo-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Service Text Styling - Premium Look */
.service-text .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--text-secondary);
    letter-spacing: 0;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
}

.service-text .section-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.service-text .section-subtitle::after {
    display: none;
}

.service-text h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 34px;
}

.service-text .service-intro {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    color: rgb(33, 37, 41);
    margin-bottom: 1rem;
}

.service-text ul.service-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.service-text ul.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    color: rgb(33, 37, 41);
    line-height: 23px;
}

.service-text ul.service-list li svg {
    flex-shrink: 0;
    color: var(--primary-color);
    width: 16px;
    height: 16px;
}

.service-text p {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(33, 37, 41);
    margin-bottom: 0.75rem;
}

.service-text p:last-child {
    margin-bottom: 0;
}

.service-text p strong {
    font-weight: 700;
    color: rgb(33, 37, 41);
}

/* ========================================
   SERVICE LIST COLUMNS
   ======================================== */
.service-list-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

@media (max-width: 576px) {
    .service-list-columns {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PROCESS STEPS SIMPLE (Depannage)
   ======================================== */
.process-steps-simple {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.process-steps-simple li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    color: rgb(255, 255, 255);
}

.process-steps-simple li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================
   DEPANNAGE SERVICES SECTIONS
   ======================================== */
.depannage-services-title {
    padding: 60px 0 20px;
    background: var(--white);
}

.depannage-services-title .section-header {
    text-align: center;
}

.depannage-service-section {
    padding: 60px 0;
    background: var(--white);
}

.depannage-service-section.alt {
    background: var(--bg-light);
}

.depannage-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.depannage-service-grid.reversed {
    direction: rtl;
}

.depannage-service-grid.reversed > * {
    direction: ltr;
}

.depannage-service-text .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.depannage-service-text .section-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.depannage-service-text h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.depannage-service-text p {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: rgb(33, 37, 41);
    margin-bottom: 0.75rem;
}

.depannage-service-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .depannage-service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .depannage-service-grid.reversed {
        direction: ltr;
    }
    
    .depannage-service-image {
        order: -1;
    }
}

/* Removed duplicate exterior works section - see line ~4360 for correct implementation */

/* ========================================
   PROJECTS CAROUSEL (Service Pages)
   ======================================== */
.projects-carousel-section {
    padding: 80px 0;
    background: var(--white);
}

.projects-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
}

.projects-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.project-carousel-slide {
    min-width: 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.project-carousel-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 63, 58, 0.8);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 4px;
}

.carousel-nav:hover {
    background: var(--primary-color);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 63, 58, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-color);
    background-image: url('/assets/img/banners/footer-bg.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 63, 58, 0.92);
    z-index: 0;
}

.footer-content,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.footer-social {
    margin-top: 2rem;
}

.footer-social span {
    display: block;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.footer-instagram-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition-smooth);
}

.footer-instagram-link:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    transform: translateY(-3px);
}

.footer-instagram-link:hover svg {
    stroke: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-contact li {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
}

.phone-number-footer {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #005550;
    transform: translateY(-5px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-header {
        grid-column: 1 / -1;
        grid-row: 1;
        text-align: center;
    }
    
    .about-grid {
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* ========================================
       GLOBAL MOBILE FIXES
       ======================================== */
    
    /* Container - consistent padding for all pages */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* All sections - proper spacing */
    section {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Content sections - add breathing room */
    .service-content,
    .depannage-content,
    .process-content,
    .page-content {
        padding: 2rem 1.5rem;
    }
    
    /* Text content - prevent edge-to-edge */
    p, ul, ol, h1, h2, h3, h4, h5, h6 {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Lists - proper indentation */
    ul, ol {
        padding-left: 1.5rem;
    }
    
    /* Images - responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix icon sizes globally */
    svg {
        flex-shrink: 0;
    }
    
    .contact-info-detail svg {
        width: 20px;
        height: 20px;
    }
    
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
        order: 2;
        z-index: 10001;
    }
    
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
    }
    
    .nav-logo {
        order: 1;
        z-index: 10001;
    }
    
    .nav-logo img {
        height: 40px;
        max-width: 140px;
    }
    
    /* Hide CTA button on mobile */
    .nav-cta {
        display: none;
    }
    
    /* Mobile Menu Backdrop */
    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: 9998;
    }
    
    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile Menu - Full screen slide from right */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        padding: 0;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: 9999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }
    
    /* Mobile Menu Header - Green bar (only visible inside active menu) */
    .nav-menu .mobile-menu-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        background: var(--primary-color);
        padding: 1rem 1.5rem;
        flex-shrink: 0;
    }
    
    .nav-menu .mobile-menu-logo {
        display: block;
    }
    
    .nav-menu .mobile-menu-logo img {
        height: 40px;
        width: auto;
    }
    
    .nav-menu .mobile-menu-close {
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu .mobile-menu-close svg {
        display: block;
    }
    
    /* Nav List */
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .nav-link {
        padding: 1.25rem 1.5rem;
        width: 100%;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        font-family: 'Oswald', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-color) !important;
        text-decoration: none;
        text-transform: uppercase;
    }
    
    /* Hide desktop SVG chevron on mobile */
    .nav-link > svg {
        display: none;
    }
    
    /* Dropdown Icon - Plus sign */
    .dropdown-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }
    
    .dropdown-icon svg {
        display: block;
        width: 20px;
        height: 20px;
    }
    
    .has-dropdown.active .dropdown-icon {
        transform: rotate(45deg);
    }
    
    /* Dropdown Menu */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f8f8f8;
        border-radius: 0;
        margin: 0;
    }
    
    .has-dropdown.active .dropdown-menu {
        max-height: 600px;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid rgba(0, 79, 58, 0.08);
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 1rem 2rem;
        font-family: 'Oswald', sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 27px;
        color: var(--text-primary);
        display: block;
        transition: background 0.2s ease, padding-left 0.2s ease;
    }
    
    .dropdown-menu a:hover {
        background: rgba(0, 79, 58, 0.08);
        padding-left: 2.5rem;
    }
    
    /* Mobile CTA Button */
    .mobile-menu-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        background: var(--primary-color);
        color: white;
        text-align: center;
        padding: 1.25rem 2rem;
        margin: 2rem 1.5rem 1.5rem;
        border-radius: 6px;
        font-family: 'Oswald', sans-serif;
        font-weight: 500;
        font-size: 16px;
        text-decoration: none;
        transition: background 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 12px rgba(0, 79, 58, 0.2);
    }
    
    .mobile-menu-cta:hover {
        background: #003d32;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 79, 58, 0.3);
    }
    
    .mobile-menu-cta svg {
        stroke: white;
        flex-shrink: 0;
    }
    
    .btn-text-desktop {
        display: none;
    }
    
    /* Show mobile menu elements */
    .nav-menu .mobile-menu-header {
        display: flex !important;
    }
    
    .mobile-menu-backdrop {
        display: block !important;
    }
    
    .nav-menu .mobile-menu-cta {
        display: flex !important;
    }
    
    /* Dropdown icon visible on mobile, hide desktop chevron */
    .dropdown-icon {
        display: flex !important;
    }
    
    .desktop-chevron {
        display: none !important;
    }
    
    .btn-text-mobile {
        display: inline;
    }
    
    /* Hero */
    .hero-slider {
        height: 450px;
    }
    
    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 17px;
        font-weight: 500;
        line-height: 26px;
    }
    
    .hero-title {
        font-size: 32px;
        font-weight: 700;
        line-height: 38px;
    }
    
    .hero-description {
        font-size: 16px;
        font-weight: 400;
        line-height: 27px;
        margin-bottom: 1.5rem;
    }
    
    /* Hide navigation arrows on mobile */
    .hero-nav {
        display: none;
    }
    
    /* Make slider draggable - add cursor */
    .hero-slider {
        cursor: grab;
        user-select: none;
    }
    
    .hero-slider:active {
        cursor: grabbing;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 14px;
    }
    
    .hero-nav {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
    
    .hero-prev {
        left: 10px;
    }
    
    .hero-next {
        right: 10px;
    }
    
    /* Features */
    .features-section {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* About */
    .about-section {
        padding: 40px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .about-images-col {
        flex-direction: row;
        gap: 1rem;
    }
    
    .about-images-col img {
        width: calc(50% - 0.5rem);
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Services */
    .services-section {
        padding: 40px 0;
        background: var(--primary-color);
    }
    
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .service-header {
        text-align: center;
        margin-bottom: 1.5rem;
        color: white;
    }
    
    .service-header .section-subtitle,
    .service-header h2 {
        color: white;
    }
    
    .service-header h2 {
        font-size: 1.5rem;
    }
    
    /* Service cards - centered single column */
    .service-card {
        text-align: center;
        padding: 2.5rem 2rem;
        margin: 0 auto;
        max-width: 90%;
        width: 100%;
        background: white;
        border-radius: 8px;
    }
    
    .service-card .service-number {
        font-size: 2rem;
        display: block;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }
    
    .service-card h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
        color: var(--text-primary);
    }
    
    .service-card p {
        font-family: 'Oswald', sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 27px;
        color: var(--text-secondary);
    }
    
    .service-card .service-icon {
        position: static;
        margin: 1rem auto 0;
        opacity: 0.3;
        width: 50px;
        height: 50px;
    }
    
    .service-card .service-link {
        position: static;
        display: block;
        margin-top: 1rem;
        color: var(--primary-color);
    }
    
    /* Quote Form */
    .quote-section {
        padding: 0;
    }
    
    .quote-hero {
        height: 300px;
    }
    
    .quote-hero-content {
        padding-left: 1.5rem;
    }
    
    .quote-hero-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0;
    }
    
    .quote-white-section {
        padding: 40px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-form-wrapper {
        margin: -120px 1rem 0;
        padding: 1.5rem;
    }
    
    .quote-form-wrapper h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Enlarge form text on mobile */
    .quote-form .input-wrapper input,
    .quote-form .input-wrapper textarea {
        font-size: 15px;
        padding: 15px 0;
    }
    
    .quote-form select {
        font-size: 15px;
        padding: 15px;
    }
    
    .quote-form .input-wrapper input::placeholder,
    .quote-form .input-wrapper textarea::placeholder,
    .quote-form select option {
        font-size: 15px;
    }
    
    /* Fix form icons on mobile */
    .form-group label {
        left: 10px;
    }
    
    .form-group label svg {
        width: 18px;
        height: 18px;
    }
    
    .form-control {
        padding: 12px 12px 12px 42px;
        font-size: 14px;
    }
    
    textarea.form-control {
        padding-left: 42px;
    }
    
    select.form-control {
        padding-left: 12px;
    }
    
    /* Projects */
    .projects-section {
        padding: 40px 0;
    }
    
    .projects-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .projects-row-1,
    .projects-row-2 {
        grid-template-columns: 1fr;
    }
    
    /* Partners */
    .partners-section {
        padding: 40px 0;
    }
    
    .quote-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    /* Projects */
    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .projects-row-1,
    .projects-row-2 {
        grid-template-columns: 1fr;
    }
    
    .projects-row-1 .project-card,
    .projects-row-2 .project-card {
        height: 220px;
    }
    
    .project-large {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Page Banner */
    .page-banner {
        padding: 80px 0 60px;
        min-height: 250px;
    }
    
    .page-banner-line {
        height: 80px;
    }
    
    /* Service Pages */
    .service-content-section {
        padding: 40px 0;
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-text {
        padding: 0 1.5rem;
    }
    
    .service-text h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .service-text p,
    .service-text ul {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .service-images {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .service-img,
    .service-img-large {
        height: 250px;
    }
    
    .service-logo-overlay {
        width: 80px;
        height: 80px;
        bottom: -20px;
        left: -20px;
    }
    
    /* Depannage specific */
    .depannage-intro,
    .depannage-service-item {
        padding: 0 1.5rem;
    }
    
    .depannage-service-item h3 {
        font-size: 1.25rem;
    }
    
    .depannage-service-item p,
    .depannage-service-item ul {
        font-size: 15px;
    }
    
    .process-wrapper {
        grid-template-columns: 1fr;
    }
    
    .process-content {
        padding: 2rem 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Projects Carousel */
    .project-carousel-slide {
        min-width: 100%;
    }
    
    .project-carousel-slide img {
        height: 250px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    /* Floating CTA */
    .floating-cta {
        display: none;
    }
    
    /* Top Bar */
    .top-bar {
        padding: 0.5rem 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .top-bar-text {
        font-size: 11px;
        width: 100%;
    }
    
    .top-bar-right {
        justify-content: center;
        gap: 1rem;
    }
    
    .top-bar-phone {
        font-size: 12px;
    }
    
    .show-phone-btn {
        font-size: 12px;
        padding: 0.25rem 0.5rem;
    }
    
    /* Container */
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 350px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        line-height: 24px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .section-subtitle {
        font-size: 11px;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Feature cards */
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon img {
        width: 40px;
        height: 40px;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 13px;
    }
    
    /* Service cards */
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    /* Quote section */
    .quote-hero-content h2 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quote-hero {
        height: 250px;
    }
    
    .quote-hero-content h2 {
        font-size: 1.25rem;
    }
    
    .quote-form-wrapper {
        margin: -100px 1rem 0;
        padding: 1.25rem;
    }
    
    .quote-form-wrapper h3 {
        font-size: 1.35rem;
    }
    
    .quote-form .input-wrapper input,
    .quote-form .input-wrapper textarea,
    .quote-form select {
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-col h4 {
        font-size: 1rem;
    }
    
    .footer-col p,
    .footer-col a {
        font-size: 13px;
    }
    
    /* Page banner */
    .page-banner {
        min-height: 200px;
        padding: 60px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 1.5rem;
    }
    
    .breadcrumbs {
        font-size: 12px;
    }
}

/* Desktop-only elements */
@media (min-width: 769px) {
    .btn-text-mobile {
        display: none;
    }
    
    .btn-text-desktop {
        display: inline;
    }
    
    .mobile-cta {
        display: none !important;
    }
    
    .mobile-menu-header {
        display: none !important;
    }
    
    .dropdown-icon {
        display: none !important;
    }
    
    .nav-link svg {
        display: block !important;
    }
}

/* Print styles */
@media print {
    .top-bar,
    .main-nav,
    .floating-cta,
    .back-to-top,
    .hero-nav,
    .hero-dots {
        display: none;
    }
}


/* ========================================
   GALLERY SECTION STYLES
   ======================================== */

.gallery-section {
    padding: 80px 0;
    background: #F8F8F8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-large {
    grid-column: span 7;
}

.gallery-small {
    grid-column: span 5;
}

.gallery-equal {
    grid-column: span 4;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    min-height: 350px;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 63, 58, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content svg {
    color: #fff;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Pagination Styles */
.gallery-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-page,
.pagination-prev,
.pagination-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: #fff;
    color: #003F3A;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pagination-page:hover,
.pagination-prev:hover,
.pagination-next:hover {
    background: #003F3A;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 63, 58, 0.2);
}

.pagination-page.active {
    background: #003F3A;
    color: #fff;
    cursor: default;
}

.pagination-prev svg,
.pagination-next svg {
    stroke: currentColor;
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-large,
    .gallery-small {
        grid-column: span 12;
    }
    
    .gallery-equal {
        grid-column: span 6;
    }
    
    .gallery-image-wrapper img {
        min-height: 280px;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-grid {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .gallery-equal {
        grid-column: span 12;
    }
    
    .gallery-image-wrapper img {
        min-height: 250px;
    }
    
    .pagination-page,
    .pagination-prev,
    .pagination-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}


/* ========================================
   BEFORE/AFTER SECTION STYLES (MODERN)
   ======================================== */

.before-after-section {
    padding: 80px 0;
    background: #F8F8F8;
}

.ba-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.ba-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ba-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.ba-comparison {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: ew-resize;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.ba-comparison img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    pointer-events: none;
}

.ba-comparison .ba-after {
    position: relative;
    z-index: 1;
}

.ba-comparison .ba-before {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    object-position: right center;
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.95);
    color: #003F3A;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ba-label-after {
    left: 20px;
}

.ba-label-before {
    right: 20px;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    margin-left: -2px;
    background: #fff;
    z-index: 5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    will-change: left;
}

.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    cursor: ew-resize;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ba-handle-circle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.ba-handle-circle:active {
    transform: translate(-50%, -50%) scale(1.05);
}

.ba-handle-circle svg {
    width: 20px;
    height: 20px;
    stroke: #003F3A;
    flex-shrink: 0;
}

.ba-handle-circle svg:first-child {
    margin-right: -2px;
}

.ba-handle-circle svg:last-child {
    margin-left: -2px;
}

/* Responsive Before/After */
@media (max-width: 992px) {
    .ba-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ba-comparison img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .before-after-section {
        padding: 50px 0;
    }
    
    .ba-row {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .ba-comparison img {
        height: 300px;
    }
    
    .ba-handle-circle {
        width: 46px;
        height: 46px;
    }
    
    .ba-handle-circle svg {
        width: 16px;
        height: 16px;
    }
    
    .ba-label {
        font-size: 12px;
        padding: 8px 16px;
        top: 15px;
    }
    
    .ba-label-after {
        left: 15px;
    }
    
    .ba-label-before {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .ba-comparison img {
        height: 250px;
    }
    
    .ba-handle-circle {
        width: 40px;
        height: 40px;
    }
    
    .ba-handle-circle svg {
        width: 14px;
        height: 14px;
    }
}


/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Info Cards Section */
.contact-info-section {
    padding: 80px 0;
    background: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-info-image {
    height: 200px;
    overflow: hidden;
}

.contact-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.contact-info-card:hover .contact-info-image img {
    transform: scale(1.05);
}

.contact-info-content {
    padding: 25px;
}

.contact-info-content h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #003F3A;
    margin-bottom: 15px;
}

.contact-info-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.contact-info-detail svg {
    flex-shrink: 0;
    color: #003F3A;
    margin-top: 2px;
}

.contact-info-detail a {
    color: #003F3A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-detail a:hover {
    color: #00635a;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #F8F8F8;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-header h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #003F3A;
    margin-bottom: 15px;
}

.contact-form-header p {
    color: #666;
    font-size: 16px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-row {
    margin-bottom: 20px;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Make email field same width as phone field */
.form-row.two-cols .form-group {
    width: 100%;
}

.form-group.full-width {
    width: 100%;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #F8F8F8;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0 15px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: #003F3A;
    background: #fff;
}

.input-wrapper svg {
    flex-shrink: 0;
    color: #999;
    margin-right: 12px;
    transition: color 0.3s ease;
}

.input-wrapper:focus-within svg {
    color: #003F3A;
}

.input-wrapper input,
.input-wrapper textarea {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    color: #333;
    outline: none;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #999;
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper svg {
    margin-top: 15px;
}

.textarea-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #003F3A;
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background: #00524b;
    transform: translateY(-2px);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

/* Social Card */
.contact-social-card {
    background: #003F3A;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 63, 58, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.social-card-image {
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    flex: 1;
}

.social-card-image img {
    max-width: 250px;
    height: auto;
}

.social-card-content {
    padding: 40px;
    text-align: center;
}

.social-handle {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.social-card-content h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link svg {
    fill: #fff;
}

.social-link:hover {
    background: #fff;
    transform: translateY(-5px);
}

.social-link:hover svg {
    fill: #003F3A;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.instagram:hover svg {
    fill: #fff;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-info-grid .contact-info-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-info-section,
    .contact-form-section {
        padding: 50px 0;
    }
    
    .contact-info-section {
        padding: 40px 0;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 1rem;
    }
    
    /* Make all cards same width on mobile */
    .contact-info-card {
        max-width: 100%;
        width: 100%;
    }
    
    .contact-info-grid .contact-info-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .contact-info-image {
        height: 200px;
    }
    
    .contact-info-image img {
        object-fit: cover;
    }
    
    .contact-info-content {
        padding: 20px;
    }
    
    .contact-info-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .contact-info-detail {
        font-size: 14px;
    }
    
    .contact-form-header h2 {
        font-size: 24px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .form-row.two-cols {
        grid-template-columns: 1fr;
    }
    
    .social-card-image {
        padding: 30px;
    }
    
    .social-card-image img {
        max-width: 180px;
    }
    
    .social-card-content {
        padding: 30px;
    }
}


/* ========================================
   ERROR PAGES STYLES
   ======================================== */

.error-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
}

.error-section .error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-section h1 {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.error-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.error-section p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ========================================
   FORM SPINNER & NOTIFICATIONS
   ======================================== */

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    max-width: 400px;
}

.notification-success {
    background: #4CAF50;
    color: white;
}

.notification-error {
    background: #f44336;
    color: white;
}

@keyframes slideOutRight {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Form validation states */
.form-group.error input,
.form-group.error textarea,
.form-group.error select,
.input-wrapper.error input,
.input-wrapper.error textarea {
    border-color: #f44336;
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select,
.input-wrapper.success input,
.input-wrapper.success textarea {
    border-color: #4CAF50;
}

button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


/* ========================================
   LEGAL PAGE STYLES
   ======================================== */

.legal-content-section {
    padding: 80px 0;
    background: #F1F1F1;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section p {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(33, 37, 41);
    margin-bottom: 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-info-box {
    background: #fff;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-list li {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(33, 37, 41);
    padding: 0.5rem 0;
}

.legal-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-content-section {
        padding: 40px 0;
    }
    
    .legal-content {
        padding: 0 1.5rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-section p,
    .legal-list li {
        font-size: 15px;
    }
    
    .legal-info-box {
        padding: 1rem;
    }
}


/* ========================================
   EXTERIOR CAROUSEL SECTION (Amenagement Exterieur)
   ======================================== */

.exterior-carousel-section {
    padding: 80px 0;
    background: #F1F1F1;
}

.exterior-carousel-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.exterior-carousel-section .section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.exterior-carousel-wrapper {
    position: relative;
    padding: 0 60px; /* Space for arrows */
}

.exterior-carousel-container {
    overflow: hidden;
    width: 100%;
}

.exterior-carousel {
    display: flex;
    transition: transform 0.4s ease;
    gap: 20px;
}

.exterior-card {
    flex: 0 0 calc((100% - 40px) / 3); /* 3 cards with 2 gaps of 20px */
    background: var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
}

.exterior-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.exterior-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.exterior-card:hover .exterior-card-image img {
    transform: scale(1.05);
}

.exterior-card-content {
    padding: 1.5rem;
    color: white;
}

.exterior-card-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.exterior-card-content p {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.exterior-card-content p:last-child {
    margin-bottom: 0;
}

/* Navigation Arrows */
.exterior-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.exterior-carousel-nav:hover {
    background: #005550;
    transform: translateY(-50%) scale(1.1);
}

.exterior-carousel-prev {
    left: 0;
}

.exterior-carousel-next {
    right: 0;
}

/* Dots */
.exterior-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.exterior-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exterior-carousel-dot.active {
    background: var(--primary-color);
    width: 28px;
    border-radius: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .exterior-carousel-section {
        padding: 50px 0;
    }
    
    .exterior-carousel-wrapper {
        padding: 0 50px;
    }
    
    .exterior-carousel {
        gap: 0;
    }
    
    .exterior-card {
        flex: 0 0 100%;
    }
    
    .exterior-card-image {
        height: 220px;
    }
    
    .exterior-card-content {
        padding: 1.25rem;
    }
    
    .exterior-card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .exterior-card-content p {
        font-size: 13px;
        line-height: 22px;
    }
    
    .exterior-carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .exterior-carousel-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .exterior-carousel-wrapper {
        padding: 0 40px;
    }
    
    .exterior-carousel-nav {
        width: 35px;
        height: 35px;
    }
    
    .exterior-carousel-nav svg {
        width: 18px;
        height: 18px;
    }
}


/* ========================================
   ESTIMATION PAGE STYLES
   ======================================== */

.page-banner-small {
    min-height: 200px;
    padding: 80px 0 60px;
}

.estimation-section {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
}

.estimation-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.estimation-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #00796B 100%);
}

.estimation-header {
    text-align: center;
    margin-bottom: 40px;
}

.estimation-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.estimation-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Progress Bar */
.estimation-progress {
    margin-bottom: 40px;
}

.progress-bar {
    height: 4px;
    background: #E0E0E0;
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, #00796B 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 0%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #E0E0E0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 63, 58, 0.3);
}

.progress-step.completed .step-number {
    background: var(--primary-color);
    color: white;
}

.step-label {
    font-size: 12px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--primary-color);
}

/* Form Steps */
.form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.form-step.active {
    display: block;
}

.form-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-align: center;
}

.step-subtitle {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
}

.step-section {
    margin-bottom: 35px;
}

.section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 15px;
}

/* Option Cards (Step 1) */
.option-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.option-card {
    cursor: pointer;
}

.option-card input {
    display: none;
}

.option-card .card-content {
    background: #F8F8F8;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover .card-content {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 63, 58, 0.15);
}

.option-card input:checked + .card-content {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 8px 25px rgba(0, 63, 58, 0.15);
}

.card-image {
    height: 140px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.option-card:hover .card-image img {
    transform: scale(1.05);
}

.card-text {
    padding: 15px;
}

.card-title {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.card-desc {
    display: block;
    font-size: 13px;
    color: #666;
}

.card-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.card-check svg {
    color: var(--primary-color);
}

.option-card input:checked + .card-content .card-check {
    opacity: 1;
    transform: scale(1);
}

/* Option Buttons (Step 2 & 4) */
.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.option-button {
    cursor: pointer;
}

.option-button input {
    display: none;
}

.option-button .button-content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #F8F8F8;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.option-button:hover .button-content {
    border-color: var(--primary-color);
    background: white;
}

.option-button input:checked + .button-content {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.option-button input:checked + .button-content svg {
    stroke: white;
}

.timeline-buttons,
.budget-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.budget-buttons {
    grid-template-columns: repeat(2, 1fr);
}

/* Surface Input */
.surface-input-wrapper {
    display: flex;
    align-items: center;
    max-width: 200px;
    background: #F8F8F8;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.surface-input-wrapper:focus-within {
    border-color: var(--primary-color);
    background: white;
}

.surface-input-wrapper input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    background: transparent;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    outline: none;
}

.surface-unit {
    padding: 14px 16px;
    background: var(--primary-color);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

.surface-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.preset-btn {
    padding: 8px 16px;
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preset-btn:hover,
.preset-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}


/* Service Cards (Step 3 - Estimation Form) */
.estimation-form .service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.estimation-form .service-card {
    cursor: pointer;
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.estimation-form .service-card input {
    display: none;
}

.estimation-form .service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 63, 58, 0.15);
}

.estimation-form .service-card:has(input:checked) {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 63, 58, 0.2);
}

.estimation-form .service-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.estimation-form .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.estimation-form .service-card:hover .service-image img {
    transform: scale(1.1);
}

.estimation-form .service-info {
    padding: 16px;
    text-align: center;
    background: #F8F8F8;
    margin: 0;
}

.estimation-form .service-card:has(input:checked) .service-info {
    background: white;
}

.estimation-form .service-name {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    display: block;
}

.estimation-form .service-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.estimation-form .service-check svg {
    color: white;
    width: 16px;
    height: 16px;
}

.estimation-form .service-card:has(input:checked) .service-check {
    opacity: 1;
    transform: scale(1);
}

/* Contact Form Grid (Step 5) */
.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-form-grid .form-group.full-width {
    grid-column: 1 / -1;
}

.estimation-form .input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F8F8F8;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0 16px;
    transition: all 0.3s ease;
}

.estimation-form .input-wrapper:focus-within {
    border-color: var(--primary-color);
    background: white;
}

.estimation-form .input-wrapper svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.estimation-form .input-wrapper input,
.estimation-form .input-wrapper textarea {
    flex: 1;
    padding: 14px 0;
    border: none;
    background: transparent;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
}

.estimation-form .input-wrapper input::placeholder,
.estimation-form .input-wrapper textarea::placeholder {
    color: #999;
}

.estimation-form .textarea-wrapper {
    align-items: flex-start;
    padding-top: 14px;
}

.estimation-form .textarea-wrapper textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #E0E0E0;
}

.form-navigation .btn {
    min-width: 160px;
}

.form-navigation .btn-outline {
    background: transparent;
    border: 2px solid #E0E0E0;
    color: #666;
}

.form-navigation .btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

/* Success Message */
.estimation-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00796B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon svg {
    color: white;
}

.estimation-success h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.estimation-success p {
    color: #666;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .estimation-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
        border-radius: 12px;
    }
    
    .estimation-header h2 {
        font-size: 22px;
    }
    
    .progress-steps {
        gap: 5px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .step-label {
        font-size: 10px;
        display: none;
    }
    
    .option-cards {
        grid-template-columns: 1fr;
    }
    
    .estimation-form .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .timeline-buttons,
    .budget-buttons {
        grid-template-columns: 1fr;
    }
    
    .option-buttons {
        flex-direction: column;
    }
    
    .option-button .button-content {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-navigation .btn {
        width: 100%;
    }
    
    .step-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .estimation-form .service-cards {
        grid-template-columns: 1fr;
    }
    
    .card-image {
        height: 120px;
    }
}

/* Nav Badge for "Nouveau" */
.nav-badge {
    display: inline-block;
    background: #E53935;
    color: white;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
    animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
