/* ===== VARIABLES PROFESSIONNELLES ===== */
:root {
    /* Couleurs */
    --primary: #0e6561ff;
    --primary-dark: #1b4332;
    --primary-light: #4c956c;
    --secondary: #1AA399;
    --accent: #fefee3;
    --light: #d8f3dc;
    --dark: #1b4332;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gray: #f5f5f5;
    --gray-dark: #e0e0e0;
    --orange: #FF7F2A;
    --error: #e74c3c;
    --success: #27ae60;
    
    /* Typographie */
    --font-heading: 'Poppins', 'sans-serif';
    --font-body: 'Open Sans', 'sans-serif';
    --font-buton: 'Montserrat', 'sans-serif';
    
    /* Effets */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

ul > li {
    list-style-type: none;
}

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

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.text-left h2:after {
    transform: none;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

a:hover {
    color: var(--primary-dark);
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: clamp(60px, 8vw, 100px) 0;
}

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

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

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

.columns {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.column {
    flex: 1;
}

.spacing-before {
    margin-top: 2.5rem !important;
}

/* ===== COMPOSANTS ===== */
/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-buton);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

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

.btn-light:hover {
    background: transparent;
    color: var(--primary);
}

.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s ease-in-out infinite;
}

/* Cartes */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: var(--white);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-dark);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    min-height: 300px;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
}

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

.card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    font-weight: 600;
    color: var(--primary);
    padding-top: 1rem;
}

.card-link:after {
    content: '→';
    transition: var(--transition);
}

.card-link:hover:after {
    transform: translateX(5px);
}

.card ul,
.service-content ul,
.sector-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.card li,
.service-content li,
.sector-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Formulaires */
.contact-form {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-dark);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 110, 73, 0.1);
}

.error-message {
    color: var(--error);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.success-message {
    background: var(--success);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    text-align: center;
    display: none;
}

/* Carousels */
.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.carousel-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-arrow {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-arrow:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-dark);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    transition: var(--transition);
    object-fit: contain;   
    display: block;   
    margin: 0 auto;   
}

.logo:hover img {
    transform: scale(1.05);
}

/*.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

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

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

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-link {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            font-size: 0.95rem;
            transition: var(--transition);
        }

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

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

        .nav-link:hover {
            color: var(--primary);
        }
        
.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}
.LinkedIn-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;       /* taille du cercle */
  height: 50px;
  background-color: #2c3e50; /* ou ton vert foncé */
  border-radius: 50%;
  text-decoration: none;
}

.LinkedIn-icon i {
  font-size: 22px;   /* agrandis l’icône */
  color: white;
}
/* ===== SECTIONS PRINCIPALES ===== */
/* Hero */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    color: var(--text);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(216, 243, 220, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    position: relative;
    padding: clamp(80px, 10vw, 120px) 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-header .hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-header h1,
.page-header p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
 .cont{
     background: linear-gradient(135deg, #666 0%, #effffd 100%);
    color: var(--white);
 }
/* Sections thématiques */
.why-choose {
    background: var(--accent);
}

/*.stats {
    background: linear-gradient(135deg, #666 0%, #effffd 100%);
    color: var(--white);
}*/

.stats h2 {
    color: var(--white);
}

.stats h2:after {
    background-color: var(--accent);
}

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

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--orange);
    font-family: var(--font-heading);
}

.stat-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta {
    /*background: linear-gradient(135deg, #effffd 0%, #666 100%);
    color: var(--white);*/
    text-align: center;
}

.cta h2 {
    color: var(--white);
}

.cta h2:after {
    background-color: #FF7F2A;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

/* ===== PAGES SPÉCIFIQUES ===== */
/* Services */
.service-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

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

.advantage,
.innovation-benefit,
.service-advantage,
.sector-value {
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid #c3e6cb;
    margin: 1rem 0;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid #f5c6cb;
    margin: 1rem 0;
}

.info-message {
    background: #cce7ff;
    color: #004085;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid #b3d7ff;
    margin: 1rem 0;
}

.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
/* Secteurs */
.sector-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.sector-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Navigation rapide */
.services-navigation,
.sector-navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-nav-item,
.sector-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.service-nav-item:hover,
.sector-nav-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-nav-icon,
.sector-nav-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Processus */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Roadmap */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.roadmap-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary);
}

.roadmap-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Métriques */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--orange);
}

.stat-number.orange,
.metric-number.orange {
    color: var(--orange) !important;
}

/* Engagements */
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.commitment {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
}

/* Formats */
.format-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.format-tag {
    background: var(--primary-light);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== PAGE DE REMERCIEMENT ===== */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.thank-you-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.thank-you-header .container {
    display: flex;
    justify-content: center;
}

.thank-you-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vw, 100px) 0;
}

.thank-you-message {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 600px;
    width: 90%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-dark);
}

.thank-you-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.thank-you-icon {
    font-size: clamp(3rem, 8vw, 4rem);
    color: var(--success);
    margin-bottom: 1.5rem;
    animation: bounceIn 1s ease-out;
}

.thank-you-message h1 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.thank-you-message p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.thank-you-highlight {
    background: var(--accent);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

.thank-you-highlight strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.thank-you-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0 1rem;
}

.thank-you-buttons .btn {
    min-width: 180px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

.thank-you-contact-info {
    background: var(--gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 2.5rem;
    border: 1px solid var(--gray-dark);
}

.thank-you-contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-method:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.contact-method i {
    color: var(--primary);
    font-size: 1.25rem;
    min-width: 24px;
}

.contact-method a {
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
}

.contact-method a:hover {
    color: var(--primary);
}

.redirect-notice {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--light);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--text-light);
    border-left: 4px solid var(--primary-light);
}

.redirect-notice i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.thank-you-footer {
    background: var(--dark);
    color: var(--white);
    padding: 2rem 0;
    margin-top: auto;
}

.thank-you-footer .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

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

.footer a {
    color: var(--white);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    transition: var(--transition);
    object-fit: contain;   
    display: block;   
    margin: 0 auto;   
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col address p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.4;
}

.footer-col i {
    color: var(--accent);
    min-width: 20px;
    margin-top: 2px;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.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;
}
*/
.footer {
  background: #0e6561ff;
  color: var(--white);
  padding: 4rem 0 1.5rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col address p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.4;
}

.footer-col i {
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.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;
  font-size: 0.9rem;
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    to { 
        transform: rotate(360deg); 
    }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(44, 110, 73, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

.thank-you-message > *:not(.thank-you-icon) {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.thank-you-contact-info {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .testimonial-slide {
        flex: 0 0 33.333%;
    }

}
@media (min-width: 1025px) {
    .footer-logo {
    height: 100px;
}
.logo img{
    height: 100px;
}
}
@media (min-width: 601px) and (max-width: 1024px) {
.logo img{
    height: 80px;
}
.footer-logo{
    height: 80px;
}
}
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .columns {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-item,
    .service-item.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-image img {
        height: 100%;
    }
    
    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .sector-card {
        min-height: 500px;
    }
    
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .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(7px, -6px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-col address p {
        align-items: center;
    }
    .thank-you-message {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .thank-you-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-method {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .thank-you-contact-info {
        padding: 1.5rem;
    }
    
    .sector-card {
        min-height: 480px;
    }
    
    .card {
        min-height: 320px;
    }
    
    .service-item {
        align-items: flex-start;
    }
    
    .service-content,
    .service-image {
        flex: 1;
    }
}
@media (max-width: 600px) {
.footer-logo {
    height: 60px;
}
.logo img {
    height: 60px;
}
}
@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .card {
        padding: 2.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero {
        min-height: 70vh;
    }
}

@media (max-width: 480px) {
    .thank-you-message {
        padding: 1.5rem 1rem;
    }
    
    .thank-you-icon {
        font-size: 2.5rem;
    }
    
    .thank-you-message h1 {
        font-size: 1.5rem;
    }
    
    .thank-you-highlight {
        padding: 1rem;
    }
}