/* ====================================================
   STYLE CSS DAVAR GROUP SARL
   Design moderne, responsive, animations
   ==================================================== */

/* ============ VARIABLES & RESET ============ */
:root {
    --blue: #0f2c6b;
    --blue-dark: #091a44;
    --blue-light: #1e3a8a;
    --teal: #00a9b4;
    --teal-dark: #008a94;
    --gold: #f0b429;
    --gold-dark: #d49816;
    --gold-light: #f4d03f;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.25);
    --transition: all 0.3s ease;
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
    font-weight: 800;
    color: var(--blue);
    line-height: 1.2;
}

.section-label {
    display: inline-block;
    color: var(--teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-teal { color: var(--teal) !important; }
.text-gold { color: var(--gold) !important; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 700;
    border-radius: 0.375rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-slow);
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
}

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

.btn-dark {
    background: var(--white);
    color: var(--blue);
}

.btn-dark:hover {
    background: var(--gold);
}

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--blue-dark);
    color: var(--white);
    font-size: 0.875rem;
    padding: 0.625rem 0;
}

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

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-left i {
    color: var(--gold);
    margin-right: 0.375rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
}

.phone-link:hover {
    color: var(--gold);
}

.phone-link i {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.social-icons a {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.social-icons a:hover {
    background: var(--gold);
}

/* ============ HEADER ============ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-icon {
    width: 3.5rem;
    height: 3.5rem;
}

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

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

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.2em;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-700);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
}

.header-cta {
    padding: 0.75rem 1.5rem;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--blue);
    cursor: pointer;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,44,107,0.92) 0%, rgba(9,26,68,0.85) 50%, rgba(0,169,180,0.75) 100%);
}

.hero-shape-1,
.hero-shape-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-shape-1 {
    width: 16rem;
    height: 16rem;
    background: rgba(240,180,41,0.1);
    top: 5rem;
    right: 2.5rem;
}

.hero-shape-2 {
    width: 24rem;
    height: 24rem;
    background: rgba(0,169,180,0.1);
    bottom: 2.5rem;
    left: 2.5rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 48rem;
    padding: 5rem 0;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero h1 .text-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 40rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============ PAGE BANNER ============ */
.page-banner {
    position: relative;
    height: 20rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,44,107,0.92) 0%, rgba(9,26,68,0.85) 50%, rgba(0,169,180,0.75) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-banner-content h1 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-banner-content p {
    font-size: 1.125rem;
    color: #e5e7eb;
    max-width: 40rem;
}

/* ============ SECTIONS ============ */
.section {
    padding: 5rem 0;
}

.section-gray {
    background: var(--gray-50);
}

.section-dark {
    background: var(--blue);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

/* ============ SERVICES GRID ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-top: 4px solid transparent;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--gold);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal);
    font-weight: 600;
    margin-top: 1.5rem;
}

.service-link:hover {
    gap: 0.75rem;
}

/* ============ STATS ============ */
.stats-section {
    position: relative;
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,44,107,0.9);
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    color: var(--white);
}

.stat-item {
    animation: countUp 0.6s ease-out;
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.stat-value {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    color: #e5e7eb;
}

/* ============ ABOUT GRID ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 31.25rem;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--gold);
    color: var(--blue-dark);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.about-badge-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.about-decor {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    border: 4px solid var(--teal);
    border-radius: 1rem;
}

.about-text p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-text strong {
    color: var(--blue);
}

.check-list {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-list i {
    color: var(--teal);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.info-item {
    background: var(--gray-50);
    border-left: 4px solid var(--gold);
    padding: 1rem;
    border-radius: 0.25rem;
}

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

.info-item-value {
    font-weight: 700;
    color: var(--blue);
}

/* ============ MVV (Mission Vision Valeurs) ============ */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mvv-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--teal);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.mvv-card i {
    font-size: 2.5rem;
    color: var(--teal);
    margin-bottom: 1.25rem;
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============ TIMELINE ============ */
.timeline {
    position: relative;
    max-width: 50rem;
    margin: 3rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 0.25rem;
    background: rgba(240,180,41,0.3);
}

.timeline-item {
    position: relative;
    margin-left: 3.5rem;
    margin-bottom: 2.5rem;
}

.timeline-dot {
    position: absolute;
    left: -3.5rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-dot i {
    color: var(--white);
    font-size: 0.875rem;
}

.timeline-content {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.timeline-year {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 1.5rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.timeline-content p {
    color: var(--gray-600);
}

/* ============ SERVICES DETAIL PAGE ============ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-icon {
    display: inline-flex;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.service-detail-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-detail h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list i {
    color: var(--teal);
    font-size: 1.125rem;
}

.service-detail-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.service-detail-image:hover img {
    transform: scale(1.1);
}

/* ============ PROJECTS ============ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 3rem 0;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    background: var(--gray-100);
    color: var(--gray-700);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    background: var(--gray-200);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    border: 1px solid var(--gray-100);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.project-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    text-transform: uppercase;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.project-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray-500);
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.project-meta i {
    color: var(--teal);
}

.project-card.hidden {
    display: none;
}

/* ============ NEWS ============ */
.news-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.news-featured-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

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

.news-featured-image:hover img {
    transform: scale(1.05);
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(240,180,41,0.1);
    color: var(--gold-dark);
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.news-featured h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.news-featured .news-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.news-featured .news-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.news-featured p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.news-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-content {
    padding: 1.5rem;
}

.news-card-category {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(0,169,180,0.1);
    color: var(--teal);
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: var(--transition);
    cursor: pointer;
}

.news-card h3:hover {
    color: var(--teal);
}

.news-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-500);
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.news-card-footer a {
    color: var(--teal);
    font-weight: 600;
}

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

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 36rem;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    font-size: 1rem;
    outline: none;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 4px rgba(240,180,41,0.5);
}

/* ============ CONTACT ============ */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.contact-info-card {
    background: var(--gray-50);
    border-left: 4px solid var(--gold);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-weight: 600;
    color: var(--gray-800);
}

.contact-info-card small {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group label i {
    color: var(--teal);
    margin-right: 0.375rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--teal);
}

textarea.form-control {
    resize: none;
    min-height: 8rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.success-message {
    background: #dcfce7;
    border: 2px solid #4ade80;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #22c55e;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.success-message h3 {
    color: #166534;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #15803d;
}

.map-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    aspect-ratio: 1;
    margin-bottom: 1.5rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-sidebar {
    background: var(--blue);
    color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-sidebar h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-sidebar li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #e5e7eb;
}

.contact-sidebar li i {
    color: var(--gold);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-sidebar a {
    color: #e5e7eb;
}

.contact-sidebar a:hover {
    color: var(--gold);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--blue-dark);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-about {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
}

.footer-title {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 0.25rem;
}

.footer-links a i {
    font-size: 0.75rem;
    margin-right: 0.375rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #d1d5db;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: #d1d5db;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-love i {
    color: #ef4444;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
.animate-fade-in { animation: fadeIn 1s ease-out forwards; }

.delay-100 { animation-delay: 0.1s; opacity: 0; }
.delay-200 { animation-delay: 0.2s; opacity: 0; }
.delay-300 { animation-delay: 0.3s; opacity: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .top-bar-left span:nth-child(2),
    .top-bar-right .phone-link {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition);
    }
    
    .main-nav.open {
        transform: translateY(0);
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid,
    .service-detail,
    .news-featured,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail:nth-child(even) {
        direction: ltr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        text-align: center;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .about-badge {
        right: 1rem;
        bottom: -1rem;
    }
    
    .about-decor {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .page-banner {
        height: 15rem;
    }
	
	
	/* ============================================
   HERO RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        background-position: center;
    }
    
    .hero-shape-1,
    .hero-shape-2 {
        display: none; /* Masquer les formes sur mobile pour plus de clarté */
    }
    
    .hero-content {
        padding: 100px 20px 60px;
        max-width: 100%;
        text-align: left;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .hero-badge-dot {
        width: 6px;
        height: 6px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }
}

/* Très petits écrans */
@media (max-width: 375px) {
    .hero-content {
        padding: 90px 15px 50px;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

/* Tablette */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        padding: 120px 30px 80px;
        max-width: 90%;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.15rem;
    }
    
    .hero-shape-1 {
        width: 12rem;
        height: 12rem;
    }
    
    .hero-shape-2 {
        width: 18rem;
        height: 18rem;
    }
}
}


