:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fdba74;
    --primary-50: #fff7ed;
    --primary-100: #ffedd5;
 --secondary: #1e3a5f;
    --secondary-dark: #0f2744;
    --secondary-light: #2d4a6f;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
--success: #10b981;
    --success-bg: #d1fae5;
    --error: #ef4444;
    --error-bg: #fee2e2;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --header-h: 96px;
    --container: 1100px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
 scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 20px);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

img {
 display: block;
    max-width: 100%;
    height: auto;
}

a {
 color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   CONTAINER - Fluide et responsive
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   ICONS - Tailles fixes pour éviter les SVG géants
   ========================================================================== */
.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.btn-icon {
    width: 18px;
  height: 18px;
    flex-shrink: 0;
    display: block;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
 -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
  flex-shrink: 0;
    color: inherit;
    text-decoration: none;
}

.logo {
    width: auto;
 height: 70px;
    max-height: calc(var(--header-h) - 20px);
    object-fit: contain;
    flex-shrink: 0;
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    white-space: nowrap;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--gray-500);
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--gray-900);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ==========================================================================
   BUTTONS - Responsive
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 14px;
    border: 2px solid transparent;
    font-family: inherit;
  font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.btn-white {
    background: #fff;
    color: var(--primary);
border-color: #fff;
}

.btn-white:hover {
    background: var(--gray-50);
    color: var(--primary-dark);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 16px 28px;
    font-size: 1rem;
}

.btn-phone {
    padding: 10px 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
 justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 10px;
  border-radius: 8px;
    transition: background 0.2s;
}

.nav-toggle:hover {
    background: var(--gray-100);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 999px;
    transition: all 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   HERO (Homepage)
   ========================================================================== */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 50%, var(--secondary-light) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::after {
  content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.hero-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
 gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.18);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge-icon {
    width: 16px;
  height: 16px;
    flex-shrink: 0;
}

.hero h1 {
    margin: 0 0 20px;
    color: #fff;
 font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
 line-height: 1.1;
    word-wrap: break-word;
}

.hero h1 span {
    color: var(--primary-light);
}

.lead {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-cta {
  display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hero-meta .icon {
    color: var(--primary-light);
    flex-shrink: 0;
}

.hero-meta a {
    color: var(--primary-light);
}

.separator {
    opacity: 0.5;
}

/* ==========================================================================
   CARDS - Responsive
   ========================================================================== */
.card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 28px;
    width: 100%;
}

.card-icon {
  width: 56px;
    height: 56px;
    border-radius: 14px;
  display: flex;
 align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary);
    margin-bottom: 16px;
}

.card-icon svg {
    width: 28px;
    height: 28px;
  flex-shrink: 0;
}

.card-title {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.card-text {
  color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-card {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.22);
}

.card-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 14px;
    background: var(--success-bg);
    color: var(--success);
    border-radius: 10px;
    font-weight: 600;
  font-size: 0.9rem;
}

.card-highlight svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ==========================================================================
   SECTIONS - Responsive
   ========================================================================== */
.section {
    padding: 60px 0;
}

.section.alt {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 32px;
    padding: 0 10px;
}

.section-badge {
 display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary-50);
    color: var(--primary);
    border: 1px solid var(--primary-100);
    margin-bottom: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-badge .badge-icon {
    width: 14px;
    height: 14px;
}

.section h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 12px;
    line-height: 1.2;
}

.section-desc {
    color: var(--gray-500);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    max-width: 600px;
    margin: 0 auto;
}

.intro-text {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 32px;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--gray-600);
    padding: 0 10px;
}

/* ==========================================================================
   GRIDS - Responsive
   ========================================================================== */
.grid-2 {
    display: grid;
    gap: 24px;
    width: 100%;
}

.grid-3 {
    display: grid;
    gap: 20px;
    width: 100%;
}

/* ==========================================================================
   SERVICES - Responsive
   ========================================================================== */
.service-card {
    text-align: center;
    padding: 24px;
}

.service-icon {
width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.service-features {
    list-style: none;
    padding: 0;
 margin: 16px 0 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    border-top: 1px solid var(--gray-100);
font-size: 0.9rem;
}

/* ==========================================================================
   NOTE - Responsive
   ========================================================================== */
.note {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border-left: 4px solid var(--primary);
    background: var(--primary-50);
    border-radius: 0 12px 12px 0;
    font-size: 0.95rem;
}

.note-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   GALLERY - Responsive
   ========================================================================== */
.gallery-grid {
    display: grid;
    gap: 16px;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    display: block;
    background: var(--gray-100);
}

.gallery-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
 left: 0;
    right: 0;
    bottom: 0;
    padding: 14px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.gallery-title {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.gallery-desc {
    font-size: 0.85rem;
    opacity: 0.9;
}

.gallery-zoom {
    position: absolute;
    top: 10px;
 right: 10px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
 align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-700);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

.gallery-zoom svg {
    width: 18px;
    height: 18px;
 flex-shrink: 0;
}

.gallery-note {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--gray-600);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.gallery-note code {
    background: var(--gray-100);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.gallery-note-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ==========================================================================
   CTA BANNER - Responsive
   ========================================================================== */
.cta-section {
    padding-top: 40px;
}

.banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.banner-content {
    display: flex;
flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.banner-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
    margin-bottom: 10px;
}

.banner-icon svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.banner-title {
    font-size: clamp(1.25rem, 4vw, 1.9rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 6px;
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
 line-height: 1.5;
}

.banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   CONTACT PAGE - HERO - Responsive
   ========================================================================== */
.contact-hero {
  padding: 48px 0;
background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    color: #fff;
    text-align: center;
    position: relative;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
 background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.contact-hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
}

.contact-hero .lead {
    max-width: 100%;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 10px;
}

/* ==========================================================================
 CONTACT PAGE - CARDS & LAYOUT - Responsive
   ========================================================================== */
.contact-card {
 height: fit-content;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: background 0.2s ease;
}

.contact-item:hover {
background: var(--gray-100);
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
}

.contact-content {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
 color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--gray-800);
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-value a {
    color: var(--primary);
    font-weight: 500;
}

.contact-value a:hover {
  color: var(--primary-dark);
}

/* ==========================================================================
   CONTACT PAGE - TIP BOX - Responsive
   ========================================================================== */
.contact-tip {
    margin-top: 20px;
 padding: 16px;
    background: var(--primary-50);
    border-radius: 12px;
    border: 1px solid var(--primary-100);
}

.contact-tip-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.contact-tip-list {
 display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.contact-tip-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
font-size: 0.85rem;
    color: var(--gray-600);
}

.contact-tip-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ==========================================================================
   CONTACT PAGE - FORM - Responsive
   ========================================================================== */
.form-card {
    height: fit-content;
}

.form-card .card-title {
    margin-bottom: 20px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-100);
}

.form-section:first-of-type {
    padding-top: 0;
}

.form-section:last-of-type {
    border-bottom: none;
 padding-bottom: 0;
}

.form-section-title {
    font-size: 0.85rem;
    font-weight: 700;
 color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.form-row {
    margin-bottom: 16px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
font-size: 0.85rem;
 font-weight: 600;
    color: var(--gray-700);
}

.form-group label .required {
    color: var(--error);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
 font-family: inherit;
    font-size: 1rem;
    color: var(--gray-900);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-50);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input[type="number"] {
    -moz-appearance: textfield;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Checkbox style */
.form-checkbox {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 16px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.checkbox-label:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-box {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid var(--gray-300);
  border-radius: 6px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.checkbox-box::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 3px;
    transform: scale(0);
    transition: transform 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-box {
    border-color: var(--primary);
    background: var(--primary-50);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-box::after {
    transform: scale(1);
}

.checkbox-text {
    display: flex;
  flex-direction: column;
gap: 2px;
}

.checkbox-text strong {
    color: var(--gray-900);
    font-size: 0.95rem;
}

.checkbox-text small {
    color: var(--gray-500);
    font-size: 0.8rem;
}

.btn-submit {
    margin-top: 16px;
    width: 100%;
}

.field-validation-error {
  font-size: 0.8rem;
    color: var(--error);
  font-weight: 500;
}

/* ==========================================================================
   ALERTS - Responsive
   ========================================================================== */
.alert {
    display: flex;
    align-items: flex-start;
 gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 500;
    margin-top: 14px;
    font-size: 0.95rem;
}

.alert-success {
    background: var(--success-bg);
    color: #065f46;
    border: 1px solid var(--success);
}

.alert-error {
    background: var(--error-bg);
    color: #991b1b;
    border: 1px solid var(--error);
}

.alert-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ==========================================================================
   CONTACT PAGE - MAP - Responsive
   ========================================================================== */
.map-container {
    margin-top: 40px;
    border-radius: 16px;
overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.map-container iframe {
  width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* ==========================================================================
   FOOTER - Responsive
   ========================================================================== */
.footer {
  padding: 40px 0 28px;
    background: var(--secondary-dark);
    color: rgba(255, 255, 255, 0.82);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    flex-shrink: 0;
}

.footer-company {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-col {
    display: flex;
 flex-direction: column;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.footer-col address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-col address p {
    margin: 0;
font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.footer-col address a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-col address a:hover {
    color: var(--primary-light);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--primary-light);
}

.footer-map-link {
    display: inline-block;
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-map-link:hover {
    color: #fff;
}

.footer-hours {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-hours strong {
    color: rgba(255, 255, 255, 0.9);
}

.footer-icon {
    width: 18px;
 height: 18px;
  color: var(--primary-light);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
  font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin: 0;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-muted {
    color: var(--gray-500);
}

.text-sm {
    font-size: 0.85rem;
}

.mt-2 {
    margin-top: 8px;
}

.mt-4 {
    margin-top: 16px;
}

/* ==========================================================================
   RESPONSIVE - DESKTOP (>= 992px)
   ========================================================================== */
@media (min-width: 992px) {
    :root {
      --header-h: 96px;
    }

    .hero {
        padding: 80px 0 100px;
    }

    .hero-grid {
        grid-template-columns: 1.3fr 0.7fr;
    }

    .hero-content {
        max-width: 620px;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
   max-width: 760px;
     margin-bottom: 40px;
    }

    .grid-2 {
        grid-template-columns: 1fr 1fr;
     gap: 32px;
  }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .card {
    padding: 32px;
    }

    .banner {
      flex-direction: row;
 align-items: center;
        justify-content: space-between;
    padding: 40px 48px;
  }

    .banner-content {
   flex-direction: row;
        align-items: center;
    gap: 20px;
    }

    .banner-icon {
   margin-bottom: 0;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .map-container iframe {
        height: 420px;
    }
}

/* ==========================================================================
   RESPONSIVE - TABLET (768px - 991px)
   ========================================================================== */
@media (max-width: 991px) and (min-width: 768px) {
    :root {
        --header-h: 80px;
    }

 .container {
    padding: 0 24px;
}

    .logo {
     height: 55px;
    }

    .brand-info {
        display: none;
    }

    .nav {
      display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
    right: 0;
      background: #fff;
   padding: 24px;
        flex-direction: column;
        gap: 16px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     z-index: 999;
}

    .nav.active {
    display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 50px 0 70px;
    }

    .section {
        padding: 60px 0;
    }

    .grid-2 {
    grid-template-columns: 1fr;
        gap: 24px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
   gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
  }

    .footer-grid {
 grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .banner {
        padding: 28px;
    }

    .btn-lg {
padding: 14px 24px;
    }
}

/* ==========================================================================
   RESPONSIVE - MOBILE LARGE (576px - 767px)
   ========================================================================== */
@media (max-width: 767px) and (min-width: 576px) {
    :root {
        --header-h: 72px;
    }

    .container {
 padding: 0 20px;
    }

    .logo {
        height: 50px;
    }

    .brand-info {
        display: none;
    }

    .nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
  right: 0;
        background: #fff;
        padding: 20px;
        flex-direction: column;
        gap: 14px;
      border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

 .nav.active {
        display: flex;
  }

    .nav-toggle {
        display: flex;
    }

    .header-cta .btn-text {
        display: none;
    }

    .header-cta .btn {
        padding: 10px;
        min-width: 44px;
    }

    .hero {
 padding: 40px 0 60px;
    }

    .section {
        padding: 50px 0;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-grid {
     grid-template-columns: 1fr;
     gap: 24px;
    }

    .banner {
        padding: 24px;
        text-align: center;
    }

    .banner-content {
        align-items: center;
    }

    .banner-actions {
        justify-content: center;
    }

    .note {
        flex-direction: column;
        gap: 10px;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* ==========================================================================
   RESPONSIVE - MOBILE SMALL (< 576px)
   ========================================================================== */
@media (max-width: 575px) {
    :root {
  --header-h: 68px;
    }

    .container {
        padding: 0 16px;
    }

 .logo {
   height: 46px;
    }

 .brand-info {
     display: none;
    }

    .nav {
        display: none;
position: fixed;
     top: var(--header-h);
        left: 0;
 right: 0;
        background: #fff;
        padding: 16px;
 flex-direction: column;
 gap: 12px;
   border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
}

    .nav.active {
     display: flex;
    }

    .nav-toggle {
  display: flex;
    }

  .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
  font-size: 1rem;
    }

    .header-cta .btn-text {
        display: none;
    }

    .header-cta .btn {
   padding: 10px;
      min-width: 44px;
}

    .header-cta .btn-primary .btn-text {
        display: inline;
    }

 .header-cta .btn-primary {
   padding: 10px 16px;
    }

    .hero {
 padding: 32px 0 48px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .badge {
      font-size: 0.7rem;
        padding: 6px 12px;
    }

    .hero-cta {
    flex-direction: column;
    gap: 10px;
    }

    .hero-cta .btn {
        width: 100%;
    }

 .section {
        padding: 40px 0;
    }

    .section h2 {
   font-size: 1.4rem;
    }

    .grid-2,
    .grid-3 {
 grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-grid {
    grid-template-columns: 1fr;
        gap: 14px;
  }

    .card {
 padding: 20px;
        border-radius: 14px;
    }

 .card-title {
        font-size: 1.1rem;
    }

 .service-card {
 padding: 20px;
    }

.service-icon {
        width: 60px;
        height: 60px;
 }

 .service-icon svg {
    width: 28px;
        height: 28px;
    }

    .contact-item {
        padding: 12px;
    gap: 10px;
 }

  .contact-icon {
  width: 40px;
    height: 40px;
        min-width: 40px;
 border-radius: 10px;
    }

    .contact-icon svg {
    width: 20px;
        height: 20px;
    }

    .contact-tip-list {
        flex-direction: column;
        gap: 8px;
    }

    /* Form responsive */
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-section {
        padding: 16px 0;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 16px; /* Empeche le zoom iOS */
    }

    .checkbox-label {
        padding: 14px;
    }

    .checkbox-box {
     width: 22px;
        height: 22px;
  min-width: 22px;
  }

    .checkbox-text strong {
        font-size: 0.9rem;
    }

    .banner {
        padding: 20px;
  border-radius: 16px;
        text-align: center;
    }

    .banner-title {
        font-size: 1.2rem;
    }

 .banner-subtitle {
        font-size: 0.9rem;
    }

    .banner-actions {
      flex-direction: column;
     gap: 10px;
        width: 100%;
    }

    .banner-actions .btn {
        width: 100%;
    }

    .banner-icon {
      width: 48px;
     height: 48px;
 margin: 0 auto 10px;
  }

    .banner-icon svg {
 width: 22px;
   height: 22px;
    }

 .footer-grid {
  grid-template-columns: 1fr;
     gap: 24px;
    }

  .footer-brand {
 flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer {
   padding: 32px 0 24px;
    }

    .map-container {
 margin-top: 32px;
  border-radius: 12px;
    }

  .map-container iframe {
 height: 260px;
    }

    .note {
 flex-direction: column;
padding: 14px;
  gap: 8px;
    }

    .gallery-note {
        flex-direction: column;
align-items: flex-start;
        gap: 8px;
    }

    .alert {
        flex-direction: row;
   align-items: flex-start;
        gap: 10px;
padding: 14px;
    }

    .card-actions {
        flex-direction: column;
 }

    .card-actions .btn {
        width: 100%;
    }

    .btn {
        font-size: 0.9rem;
        padding: 12px 18px;
 }

    .btn-lg {
        padding: 14px 20px;
     font-size: 0.95rem;
    }
}

/* ==========================================================================
   TOUCH DEVICE OPTIMIZATIONS
   ========================================================================== */
@media (hover: none) and (pointer: coarse) {
    .gallery-zoom {
        opacity: 1;
        transform: scale(1);
    }

    .gallery-item:hover .gallery-img {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .header,
    .nav-toggle,
    .banner,
    .footer {
   display: none;
    }

  body {
        font-size: 12pt;
        color: #000;
    }

    .section {
        padding: 20px 0;
    }
}
