
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/inter-v20-latin-300.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/inter-v20-latin-regular.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/inter-v20-latin-500.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/inter-v20-latin-600.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/inter-v20-latin-700.woff2') format('woff2'); 
}


@font-face {
  font-display: swap; 
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/playfair-display-v40-latin-regular.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/playfair-display-v40-latin-italic.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/playfair-display-v40-latin-600.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/playfair-display-v40-latin-700.woff2') format('woff2'); 
}

:root {
    --color-wood-50: #fbf7f3;
    --color-wood-100: #f5ebe0;
    /* --color-wood-200: #D6C0AD; */
    --color-wood-200: #a68b74;
    --color-wood-500: #b08968;
    --color-wood-600: #8C6B4D;
    --color-wood-700: #7f5539;
    --color-wood-900: #3e2723;
    
    --color-slate-800: #1e293b;
    --color-slate-600: #475569;
    --color-slate-500: #64748b;
    --color-slate-400: #94a3b8; 
    
    --color-urgent: #e63946;
    --color-accent-green: #2C3E30;
    --color-white: #ffffff;
    --color-black: #000000;

    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --container-width: 1280px;
    --section-padding: 6rem 0;
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-slate-800);
    background-color: var(--color-wood-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
}

.bg-light { background-color: var(--color-white); }
.bg-dark { background-color: var(--color-slate-800); }

.italic { font-style: italic; color: var(--color-wood-200); }
.overline {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-wood-600);
    margin-bottom: 1rem;
}

.top-bar {
    background-color: #0f172a;
    color: white;
    font-size: 0.75rem;
    padding: 0.5rem 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-info i {
    margin-right: 0.25rem;
}

.badge-urgent {
    /* background-color: var(--color-urgent); */
    background-color: #d90429;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse 2s infinite;
    color: #ffffff;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-wood-900);
    cursor: pointer;
    padding: 10px;
}


.main-nav {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--color-wood-100);
    height: 90px;
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-wood-900);
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-wood-700);
}

.nav-links {
    display: flex;
    gap: 1rem; /* J'ai réduit un peu l'écart pour que ça tienne mieux */
    height: 100%;
    margin-left: auto; /* AJOUT : Pousse le menu vers la droite */
}

.nav-item {
    position: static !important; 
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar .container {
    position: relative; 
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-slate-600);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2rem 0;
    cursor: pointer;
}

.nav-item:hover .nav-link {
    color: var(--color-wood-700);
}

.mega-menu-item-link {
    display: flex !important; 
    align-items: flex-start;  
    gap: 1rem;                
    text-decoration: none;    
    color: inherit;           
    width: 100%;
}


.mega-list-icons li:has(.mega-menu-item-link):hover {
    background-color: var(--color-wood-50);
}

.mega-menu {
    position: absolute;
    top: 100%;
left: 0;
left: -15%; 
    transform: translateX(-50%); 
    right: 0;
    width: 100vw;
    background-color: white;
    border-top: 1px solid var(--color-wood-100);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    padding: 2.5rem 0;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-col-split {
    display: flex;
    flex-direction: column; 
    gap: 30px;
    width: 100%;
}

.mega-sub-col {
    width: 100%;
}

.mega-sub-title {
    font-size: 1.1em; 
    margin-bottom: 15px; 
    color: #2c1810; 
    border-bottom: 2px solid #d4a373; 
    padding-bottom: 8px; 
    display: inline-block;
}

.mega-content.split-layout {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mega-left {
    display: flex;
    gap: 1.5rem;
    border-right: 1px solid #f1f5f9;
    padding-right: 2rem;
}

.mega-image {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 0.75rem;
    overflow: hidden;
}

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

.mega-featured-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-overline {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-wood-500);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.mega-featured-text h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-slate-800);
    margin-bottom: 0.75rem;
}

.mega-featured-text p {
    font-size: 0.85rem;
    color: var(--color-slate-500);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.mega-right {
    display: flex;
    align-items: center;
}

.mega-list-icons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.mega-grid-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.mega-list-icons li, 
.mega-grid-icons li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
    cursor: pointer;
}

.mega-list-icons li:hover, 
.mega-grid-icons li:hover {
    background-color: var(--color-wood-50);
}

/* Reset pour que le bouton se comporte exactement comme votre ancien lien */
button.nav-link {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
    
    /* Reprend ta typo */
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-slate-600);
    
    /* Alignement */
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2rem 15px; /* Ajoute un peu d'espace horizontal entre les boutons */
    cursor: pointer;
    height: 100%;}

/* Gestion du survol (Hover) */
.nav-item:hover button.nav-link {
    color: var(--color-wood-700);
}

.icon-circle-sm {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-wood-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-wood-700);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.mega-list-icons li:hover .icon-circle-sm,
.mega-grid-icons li:hover .icon-circle-sm {
    background-color: var(--color-wood-500);
    color: white;
}

.mega-right strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-slate-800);
    margin-bottom: 0.2rem;
}

.mega-right span {
    font-size: 0.75rem;
    color: var(--color-slate-500);
    display: block;
}


.mega-list-icons strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-slate-800);
    margin-bottom: 0.2rem;
}

.mega-list-icons span {
    font-size: 0.75rem;
    color: var(--color-slate-500);
    display: block;
}

.mega-content.columns-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mega-col {
    border-right: 1px solid #f1f5f9;
    padding-right: 1rem;
}

.mega-col:nth-last-child(1) {
    border-right: none;
}


.mega-col-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.mega-col-header i {
    color: var(--color-wood-500);
    font-size: 1.1rem;
}

 .mega-col-header h4 {
border-bottom: 2px solid #d4a373;font-family: var(--font-serif); font-size: 1.2rem; color: var(--color-slate-800); margin-bottom: 0.75rem;
} 

.mega-links-list li {
    margin-bottom: 0.5rem;
}

.mega-links-list a {
    font-size: 0.85rem;
    color: var(--color-slate-600);
    font-weight: 500;
    text-transform: none;
    display: block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.mega-links-list a:hover {
    color: var(--color-wood-700);
    background-color: var(--color-wood-50);
}

.mega-col-image {
    position: relative;
    height: 180px;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--color-wood-100);
}

.mega-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.mega-col-image:hover img {
    filter: grayscale(0%);
}

.map-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.map-tag strong {
    color: var(--color-wood-900);
}

.map-tag span {
    color: var(--color-wood-600);
}

.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden; 
    background-color: #1a1a1a; 
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; 
    max-width: 900px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f1f1f1;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--color-wood-500);
    color: white;
}

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

.btn-white {
    background-color: white;
    color: var(--color-wood-900);
}

.btn-white:hover {
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--color-slate-800);
    margin-bottom: 1.5rem;
}

.section-header p.lead {
    font-size: 1.125rem;
    color: var(--color-slate-600);
    font-weight: 300;
}

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

.feature-card {
    background-color: rgba(251, 247, 243, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.feature-card:hover {
    background-color: var(--color-wood-50);
    border-color: var(--color-wood-100);
}

.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-wood-600);
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-slate-800);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--color-slate-600);
}

.stats-bar {
    border-top: 1px solid #e2e8f0;
    padding: 3rem 0;
    background-color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-wood-600);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-slate-500);
}

.separator {
    width: 6rem;
    height: 4px;
    background-color: var(--color-wood-500);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: var(--font-sans);
}

.card-content p {
    font-size: 0.875rem;
    color: var(--color-slate-600);
    margin-bottom: 1.5rem;
}

.link-arrow {
    font-weight: 600;
    color: var(--color-wood-700);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.reviews-section {
    background-color: white;
    border-top: 1px solid #f1f5f9;
}

.reviews-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.reviews-left {
    flex: 1;
}

.reviews-left h2 {
    font-size: 2rem;
    color: var(--color-accent-green);
    margin-bottom: 1.5rem;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rating-score {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-slate-800);
}

.stars {
    color: #b08968; 
    font-size: 1.25rem;
}

.rating-source {
    font-size: 0.875rem;
    color: var(--color-slate-500);
}

.btn-dark {
    background-color: var(--color-accent-green);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

.btn-dark:hover {
    background-color: var(--color-wood-900);
}

.reviews-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card {
    background-color: var(--color-wood-50);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--color-wood-100);
}

.review-text {
    font-style: italic;
    color: var(--color-slate-800);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.review-author {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.review-author strong {
    color: var(--color-accent-green);
}

.review-author span {
    color: #94a3b8;
}

.values-bar {
    background-color: var(--color-wood-900);
    color: white;
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.value-item i, 
.value-item svg {
    font-size: 3rem;
    color: var(--color-wood-500);
}

.value-item span {
    font-weight: 700;
    font-size: 1.125rem;
}

.seo-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.seo-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.highlight {
    font-weight: 700;
    color: var(--color-wood-700);
}

.seo-section p {
    margin-bottom: 1.5rem;
    color: var(--color-slate-600);
}

.rge-box {
    background-color: var(--color-wood-100);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(176, 137, 104, 0.2);
    display: inline-block;
    margin-top: 1rem;
}

.rge-box p {
    margin-bottom: 0;
    color: var(--color-wood-900);
}

.split-section {
    display: flex;
    min-height: 500px;
    overflow: hidden; 
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 6rem; 
    display: flex;
    align-items: center;
}

 .split-image {
    flex: 1;
    line-height: 0; 
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.split-text p {
    margin-bottom: 1rem;
    color: var(--color-slate-600);
}

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

.ecology-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ecology-intro h2 {
    font-size: 1.8rem !important; 
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.quote-box {
    background-color: var(--color-wood-50);
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid var(--color-wood-500);
    font-weight: 500;
    font-style: italic;
    color: var(--color-wood-900);
    margin-top: 2rem;
}

.ecology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.eco-card {
    background-color: var(--color-wood-50);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-wood-100);
    transition: box-shadow 0.3s;
}

.eco-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.eco-icon-wrapper svg {
    width: 1.5rem; 
    height: 1.5rem;
    color: var(--color-wood-600); 
}

.eco-card h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-wood-900); 
}

.eco-card p {
    font-size: 0.85rem;
    color: var(--color-slate-600);
    line-height: 1.5;
}

.faq-container {
    max-width: 900px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--color-wood-100);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--color-slate-600);
    border-top: 1px solid var(--color-wood-50);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-row {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.icon-circle {
    width: 3rem;
    height: 3rem;
    background-color: var(--color-wood-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-wood-700);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.urgent-text {
    font-size: 0.7rem;
    color: var(--color-urgent);
    font-weight: 700;
    text-transform: uppercase;
}

.sub-text {
    font-size: 0.875rem;
    color: var(--color-wood-600);
}

.contact-form-container {
    background-color: var(--color-wood-50);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--color-wood-100);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-slate-600);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--color-wood-200);
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-wood-500);
    box-shadow: 0 0 0 3px rgba(176, 137, 104, 0.1);
}

.btn-submit {
    width: 100%;
    background-color: var(--color-wood-600);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    justify-content: center;
}

.btn-submit:hover {
    background-color: var(--color-wood-900);
}

footer {
    background-color: var(--color-wood-50);
    border-top: 1px solid #e2e8f0;
    padding-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-slate-600);
}

.footer-col ul li a:hover {
    color: var(--color-wood-700);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-600);
    transition: all 0.3s;
}

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

.contact-footer li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-footer li {
    display: flex;
    align-items: flex-start; 
    gap: 12px;               
    margin-bottom: 15px;
    color: var(--color-slate-600);
}


.contact-footer li svg {
    color: var(--color-wood-700); 
    width: 20px;                  
    height: 20px;
    flex-shrink: 0;             
    margin-top: 3px;              
}

.contact-footer i {
    color: var(--color-wood-700);
    font-size: 1.1rem;
    margin-top: 2px;
}

.map-placeholder {
    position: relative;
    height: 160px;
    border-radius: 0.75rem;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(62, 39, 35, 0.1);
}

.btn-map {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-wood-900);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    background-color: #0f172a;
    /* color: var(--color-slate-500); */
    color: #cbd5e1;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.75rem;
}

.icon-circle {
    width: 3.5rem; 
    height: 3.5rem;
    background-color: var(--color-wood-100); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle svg {
    color: var(--color-wood-700); 
    width: 24px;
    height: 24px;
}

.pane-container {
    display: flex;
    min-height: 550px;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-white);
}

.pane-text {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 6rem; 
}

.pane-content-wrapper {
    width: 100%; 
}

.pane-content-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pane-content-wrapper p {
    margin-bottom: 1rem;
    color: var(--color-slate-600);
}

.pane-content-wrapper .btn {
    margin-top: 1rem;
}

.pane-slider-box {
    flex: 1;
    position: relative;
    background-color: #1a1a1a;
    min-height: 500px; 
}

.pane-slider-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.pane-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.pane-slide.active {
    opacity: 1;
    z-index: 2;
}

.pane-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.pane-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.pane-nav-btn:hover {
    background: var(--color-wood-500);
}

.pane-nav-btn.prev { left: 20px; }
.pane-nav-btn.next { right: 20px; }

.services-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 3rem; 
    max-width: 1000px; 
    margin: 0 auto;
}

.services-grid-2col .card-image {
    height: 350px; 
}
        .hero-google-link {
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        .hero-google-link:hover {
            transform: scale(1.05);
        }
        .hero-google-rating {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            padding: 10px;
        }
        .hero-google-rating .stars {
            display: flex;
            gap: 2px;
        }
        .hero-google-rating .rating-text {
            font-size: 0.9rem;
            font-weight: 600;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

@media (max-width: 1024px) {
        button.nav-link {
        width: 100%;
        padding: 1.5rem 24px;
        justify-content: space-between;
        font-size: 1rem;
        color: var(--color-wood-900);
    }

      .services-grid-2col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid-2col .card-image {
        height: 250px; 
    }
    
    .features-grid, .services-grid, .stats-grid, .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

.mega-col-split {
    flex-direction: column !important; 
    gap: 0;
}

.mega-sub-col {
    margin-bottom: 1rem;
    width: 100%;
}

.mega-sub-title {
    margin-left: 1.5rem;
    margin-top: 1rem;
    border-bottom: none; 
    color: var(--color-wood-600);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
    
    .reviews-container, .ecology-container, .contact-wrapper {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .split-section, .split-section.reverse {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-links {
        display: none; 
        flex-direction: column;
        position: fixed;
        top: 90px; 
        left: 0;
        width: 100%;
        height: calc(100vh - 90px); 
        background-color: white; 
        padding: 0;
        border-top: 1px solid var(--color-wood-100);
        overflow-y: auto; 
        z-index: 998;
    }
    
    .nav-links.active {
        display: flex; 
    }

    .mobile-menu-btn {
        display: block; 
    }
    
    .nav-item {
        width: 100%;
        display: flex;
        flex-direction: column; 
        align-items: flex-start; 
        border-bottom: 1px solid #f1f5f9;
        position: relative;
        height: auto; 
    }

    .nav-link {
        width: 100%;
        padding: 1.5rem 24px; 
        justify-content: space-between; 
        font-size: 1rem;
        color: var(--color-wood-900);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .mega-menu {
        display: none !important; 
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: 100% !important;
        box-shadow: none !important;
        background: #fcfcfc !important; 
        padding: 0 !important;
        border-top: 1px solid #eee;
    }

    .mega-menu.mobile-open {
        display: block !important;
    }

    .nav-item:has(.mega-menu.mobile-open) .nav-caret {
        transform: rotate(180deg);
        transition: transform 0.3s;
    }

    .mega-content.split-layout, 
    .mega-content.columns-layout {
        display: flex !important;
        flex-direction: column;
        padding: 0 !important;
        gap: 0;
    }
    
    .mega-left, .mega-right, .mega-col {
        width: 100%;
        padding: 0 !important;
        border: none !important;
    }

    .mega-image, 
    .mega-col-image,
    .invisible, 
    .mega-featured-text p,
    .mega-featured-text .link-arrow,
    .mega-overline {
        display: none !important;
    }

    .mega-featured-text {
        padding: 1rem 1.5rem 0.5rem 1.5rem;
    }
    .mega-featured-text h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--color-wood-600);
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.05em;
    }
    
    .mega-col-header {
        padding: 1rem 1.5rem;
        background: rgba(0,0,0,0.03);
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .mega-list-icons li, 
    .mega-grid-icons li {
        padding: 0.8rem 1.5rem !important;
        margin: 0 !important;
        border-bottom: 1px solid #fff;
        border-radius: 0;
    }
    
    .mega-links-list a {
        padding: 0.8rem 2rem;
        border-bottom: 1px solid #fafafa;
    }
        .split-section, .split-section.reverse {
        flex-direction: column; 
        min-height: auto;
    }

    .split-content {
        padding: 3rem 1.5rem; 
    }

    .split-text h2 {
        font-size: 1.8rem; 
        word-wrap: break-word; 
        hyphens: auto; 
    }

    .split-image {
        height: 300px; 
        width: 100%;
    }
     .ecology-grid {
        grid-template-columns: 1fr !important; 
        gap: 1rem;
    }

    .eco-card {
        padding: 1.5rem; 
    }


    .quote-box {
        font-size: 1rem;
        padding: 1.2rem;
        margin-top: 1.5rem;
    }
        .pane-container {
        flex-direction: column; 
        min-height: auto;
    }

        .pane-text {
        flex: none; 
        padding: 3rem 1.5rem; 
        order: 1; 
    }

    .pane-content-wrapper h2 {
        font-size: 1.8rem; 
    }

        .pane-slider-box {
        flex: none; 
        order: 2; 
        height: 350px; 
        width: 100%;
        min-height: 350px;
    }
}

@media (max-width: 640px) {
    .features-grid, .services-grid, .stats-grid, .values-grid, .footer-content, .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info span:first-child {
        display: none;
    }

    .badge-urgent {
        font-size: 0.65rem; 
        padding: 4px 8px;
    }
                .hero-buttons {
                flex-direction: column-reverse !important;
                gap: 2rem !important;
            }
    /* .hero-buttons {
        display: flex;
        flex-direction: column; 
        align-items: center;    
        gap: 15px;              
        width: 100%;
    } */


    /* .hero-buttons .btn-white {
        width: fit-content;     
        min-width: 250px;      
        margin: 0 auto;         
    } */


    /* .hero-google-link {
        order: 2;             
        display: flex;
        justify-content: center;
    } */
}
