/* Conteneur fixe (ne change pas la taille de la navbar) */
.appbar-logo-container {
  width: 200px;
  height: 60px; /* même taille que la navbar */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible; /* permet au logo de dépasser légèrement sans pousser la navbar */
}

/* Logo agrandi à l’intérieur sans changer la hauteur du conteneur */
.appbar-logo-img {
  width: 250%; /* agrandit le logo visuellement */
  height: 250%;
  object-fit: contain;
  animation: logoGlow 2.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 4px #203c44);
  transition: transform 0.3s ease-in-out;
}

/* Animation lumineuse */
@keyframes logoGlow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px #55696e)
            drop-shadow(0 0 4px #203c44)
            brightness(1);
  }
  100% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px #55696e)
            drop-shadow(0 0 20px #203c44)
            brightness(1.1);
  }
}

/* Apparition fluide */
.appbar-logo-container {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/*        code mahdi yebda menna       */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #1a6b6b;
    --secondary-color: #0d5f5f;
    --accent-color: #4ade80;
    --dark-color: #1a1a1a;
    --light-bg: #f9fafb;
    
}

body {
    font-family: Arial, sans-serif;
    padding-top: 70px;
}

/* Modern Video Hero Section */
.video-section-modern {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.video-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 107, 107, 0.45) 0%, rgba(13, 95, 95, 0.35) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.video-content-modern {
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: fadeIn 1s ease-out, glow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerBadge 3s ease-in-out infinite;
}

@keyframes shimmerBadge {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 20px rgba(74, 222, 128, 0.3);
    }
    50% { 
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 30px rgba(74, 222, 128, 0.5);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary, .btn-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
}

.btn-primary svg, .btn-secondary svg {
    width: 20px;
    height: 20px;
}

.hero-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid white;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Modern About Section */
.about-section-modern {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, white 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.about-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(26, 107, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-container-modern {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, rgba(26, 107, 107, 0.15), rgba(74, 222, 128, 0.15));
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(26, 107, 107, 0.2);
    transition: all 0.3s ease;
}

.section-subtitle:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(26, 107, 107, 0.2), rgba(74, 222, 128, 0.2));
}

.section-title {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 700;
    background: linear-gradient(135deg, rgba(26, 107, 107, 0.1), rgba(74, 222, 128, 0.1));
    padding: 2px 8px;
    border-radius: 4px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(26, 107, 107, 0.15);
    border-color: rgba(26, 107, 107, 0.1);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image-modern {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: visible;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(26, 107, 107, 0.05), rgba(74, 222, 128, 0.05));
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(26, 107, 107, 0.1);
    transition: all 0.4s ease;
}

.image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(26, 107, 107, 0.2);
}

.about-logo-svg {
    width: 100%;
    height: auto;
    max-width: 300px;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(26, 107, 107, 0.15));
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.image-decoration {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
    z-index: -1;
}

.decoration-1 {
    width: 80%;
    height: 80%;
    top: -20px;
    right: -20px;
}

.decoration-2 {
    width: 60%;
    height: 60%;
    bottom: -30px;
    left: -30px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Modern Services Section */
.services-section-modern {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #f9fafb 0%, white 100%);
}

.services-header {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

.section-description {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-top: 1rem;
}

.services-grid-modern {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card-modern {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.service-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(26, 107, 107, 0.15);
    border-color: var(--primary-color);
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(26, 107, 107, 0.05);
    line-height: 1;
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-modern svg {
    width: 40px;
    height: 40px;
}

.service-card-modern h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card-modern p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    border-top: 2px solid #f0f0f0;
    padding-top: 1.5rem;
}

.service-features li {
    padding: 0.7rem 0;
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f9fafb, #e8f5f5);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 107, 107, 0.3);
}

.service-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.service-btn.primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), #084444);
}

/* Highlighted Service Card */
.service-card-modern.highlighted {
    background: linear-gradient(135deg, #f9fafb, #e8f5f5);
    border-color: var(--accent-color);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Modern Atouts Section */
.atouts-section-modern {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, white 0%, #f9fafb 100%);
}

.atouts-container {
    max-width: 1400px;
    margin: 0 auto;
}

.atouts-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.atouts-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.atout-card-modern {
    background: white;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.atout-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.atout-card-modern:hover::before {
    transform: scaleX(1);
}

.atout-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(26, 107, 107, 0.12);
    border-color: rgba(26, 107, 107, 0.2);
}

.atout-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(26, 107, 107, 0.03);
    line-height: 1;
    transition: all 0.3s ease;
}

.atout-card-modern:hover .atout-number {
    color: rgba(26, 107, 107, 0.08);
    transform: scale(1.1);
}

.atout-icon-modern {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(26, 107, 107, 0.1), rgba(74, 222, 128, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.atout-card-modern:hover .atout-icon-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scale(1.1) rotate(-5deg);
}

.atout-icon-modern svg {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.atout-card-modern:hover .atout-icon-modern svg {
    color: white;
}

.atout-card-modern .atout-title {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.atout-card-modern .atout-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.atout-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.atout-features span {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.atout-features span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
}

/* Modern Réalisations Section */
.realisations-section-modern {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.realisations-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.4;
}

.realisations-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.realisations-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    color: white;
}

.realisations-header .section-subtitle {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.realisations-header .section-title {
    color: white;
}

.realisations-header .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.stat-card-modern:hover::before {
    transform: scaleX(1);
}

.stat-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: white;
}

.stat-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(26, 107, 107, 0.1), rgba(74, 222, 128, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.stat-card-modern:hover .stat-icon-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scale(1.15) rotate(-10deg);
}

.stat-icon-modern svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.stat-card-modern:hover .stat-icon-modern svg {
    color: white;
}

.stat-number-modern {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-plus {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-left: 0.3rem;
    animation: pulse-plus 2s infinite;
}

@keyframes pulse-plus {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.stat-label-modern {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-bar {
    width: 100%;
    height: 6px;
    background: #e8f5f5;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 1.5s ease-out;
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from { width: 0%; }
}

/* Modern Clients Section */
.clients-section-modern {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 50%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.clients-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(circle at 50% 0%, rgba(26, 107, 107, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.clients-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    animation: fadeInUp 1s ease;
}

.clients-header .section-subtitle {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, rgba(26, 107, 107, 0.1), rgba(74, 222, 128, 0.1));
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-color);
}

.clients-header .section-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.clients-header .section-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.clients-carousel-wrapper {
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.clients-carousel-wrapper::before,
.clients-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.clients-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.clients-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
}

.clients-carousel {
    overflow: hidden;
    position: relative;
}



/* ==== TRACK ==== */
.clients-track {
    display: flex;
    gap: 3rem;
    width: fit-content;
    padding: 1rem 0;
    animation: scrollClients 40s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scrollClients {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ==== CARD ==== */
.client-card-modern {
    flex-shrink: 0;
    width: clamp(130px, 25vw, 220px);
    height: clamp(130px, 25vw, 220px);
    background: linear-gradient(145deg, #ffffff 0%, #fafcfc 50%, #f5fbf9 100%);
    border-radius: 50%;
    padding: clamp(1.5rem, 3vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 15px 50px rgba(26, 107, 107, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==== CARD DECORATIONS ==== */
.client-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        rgba(26, 107, 107, 0.2) 0deg,
        rgba(74, 222, 128, 0.2) 90deg,
        rgba(26, 107, 107, 0.2) 180deg,
        rgba(74, 222, 128, 0.2) 270deg,
        rgba(26, 107, 107, 0.2) 360deg
    );
    opacity: 0;
    transform: scale(0) rotate(0deg);
    transition: all 0.8s ease;
}

.client-card-modern::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--accent-color) 50%,
        var(--primary-color) 100%
    );
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.5s ease;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ==== HOVER EFFECT ==== */
.client-card-modern:hover {
    transform: translateY(-20px) scale(1.12) rotate(5deg);
    box-shadow: 0 35px 80px rgba(26, 107, 107, 0.25);
    border-color: rgba(26, 107, 107, 0.2);
}

.client-card-modern:hover::before {
    opacity: 1;
    transform: scale(1) rotate(360deg);
}

.client-card-modern:hover::after {
    opacity: 1;
}

/* ==== LOGO ==== */
.client-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
}

.client-logo-wrapper img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    opacity: 0.95;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.client-card-modern:hover .client-logo-wrapper img {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 15px 30px rgba(26, 107, 107, 0.4));
    opacity: 1;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1024px) {
    .clients-track {
        animation: scrollClients 55s linear infinite; /* slower */
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .clients-track {
        animation: scrollClients 65s linear infinite; /* even slower */
        gap: 1.5rem;
        padding: 1rem 0.5rem;
    }

    .client-card-modern {
        width: clamp(100px, 35vw, 160px);
        height: clamp(100px, 35vw, 160px);
        padding: 1.5rem;
    }

    .client-logo-wrapper img {
        max-width: 90%;
        max-height: 90%;
    }
}

@media (max-width: 480px) {
    .clients-track {
        animation: scrollClients 75s linear infinite; /* slowest for smooth UX */
        gap: 1rem;
    }

    .client-card-modern {
        width: clamp(90px, 45vw, 130px);
        height: clamp(90px, 45vw, 130px);
        padding: 1rem;
    }

    .client-logo-wrapper img {
        max-width: 95%;
        max-height: 95%;
    }
}



/* Trust Stats */
.clients-trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 5rem;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 20%,
        var(--accent-color) 50%,
        var(--primary-color) 80%,
        transparent 100%);
    border-image-slice: 1;
}

.trust-stat {
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: white;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(26, 107, 107, 0.1);
    border: 2px solid transparent;
}

.trust-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--accent-color), 
        var(--primary-color));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.trust-stat:hover::before {
    transform: scaleX(1);
}

.trust-stat:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(26, 107, 107, 0.2);
    border-color: rgba(26, 107, 107, 0.1);
}

.trust-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(26, 107, 107, 0.3));
    transition: all 0.4s ease;
}

.trust-stat:hover .trust-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 12px 30px rgba(26, 107, 107, 0.5));
}

.trust-stat:nth-child(2) .trust-icon {
    animation-delay: 0.5s;
}

.trust-stat:nth-child(3) .trust-icon {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(5deg); 
    }
}

.trust-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 5px 15px rgba(26, 107, 107, 0.1);
}

.trust-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* About Page Hero Section */
.about-page-hero {
    height: 70vh;
    min-height: 600px;
    background: linear-gradient(135deg, #0a4d4d 0%, #1a6b6b 50%, #0d5f5f 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(74, 222, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: gradientPulse 8s ease-in-out infinite;
}

.about-page-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

.about-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

.about-hero-content .hero-title {
    font-size: 5rem;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(74, 222, 128, 0.3);
}

.about-hero-content .hero-title .title-line:first-child {
    font-size: 0.75em;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 0.3rem;
    animation: fadeIn 1s ease-out 0.2s both;
}

.about-hero-content .hero-title .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShiftText 4s ease infinite, fadeIn 1s ease-out 0.4s both;
    position: relative;
    display: inline-block;
}

.about-hero-content .hero-title .gradient-text::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #4ade80, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.6);
}

.about-hero-content .hero-description {
    font-size: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: 2.5rem;
    animation: fadeIn 1.5s ease-out 0.6s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Shapes for About Page */
.hero-shapes-about {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shape-about {
    position: absolute;
    opacity: 0.06;
    filter: blur(2px);
}

.shape-about-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #4ade80, #ffffff);
    border-radius: 50%;
    top: -200px;
    left: -150px;
    animation: float 12s ease-in-out infinite, rotate 25s linear infinite;
}

.shape-about-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ffffff, #4ade80);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    bottom: -120px;
    right: 10%;
    animation: float 14s ease-in-out infinite 1s, morphShape 18s ease-in-out infinite;
}

.shape-about-3 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #4ade80, #1a6b6b);
    border-radius: 50%;
    top: 30%;
    right: -100px;
    animation: float 10s ease-in-out infinite 2s, rotate 20s linear infinite reverse;
}

.shape-about-4 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ffffff, #4ade80, #1a6b6b);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    top: 50%;
    left: 15%;
    animation: float 11s ease-in-out infinite 1.5s, morphShape 16s ease-in-out infinite 2s;
}

/* Responsive Modern Home */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-container-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-logo-svg {
        max-width: 200px;
    }
    
    .image-wrapper {
        padding: 2rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .about-hero-content .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-content .hero-description {
        font-size: 1.1rem;
    }
    
    .client-card-modern {
        width: 220px;
        height: 150px;
    }
    
    .clients-trust-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.appbar {
    background-color: #FFFF;
    color: #203c44;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.appbar-title {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.appbar-logo {
    height: 50px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.appbar-logo:hover {
    transform: scale(1.05);
}

.appbar-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.appbar-nav a {
    color: #203c44;
    text-decoration: none;
    transition: color 0.3s;
}

.appbar-nav a:hover {
    color: #55696e;
}

/* Mobile navigation: center logo and show hamburger on small screens */
.mobile-nav-toggle {
    display: none; /* shown only on small screens */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
}

.mobile-nav-toggle .hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #203c44;
    margin: 4px 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Mobile specific layout */
@media (max-width: 768px) {
    .appbar {
        justify-content: center; /* center the logo */
        padding: 0.75rem 1rem;
    }

    .appbar-title {
        width: 100%;
        justify-content: center;
    }

    /* position the hamburger to the right */
    .mobile-nav-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1200;
    }

    /* Hide desktop nav */
    .appbar-nav {
        display: none;
    }

    /* Mobile nav panel (appears when .open is added) */
    .appbar nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        right: 1rem;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0.6rem 0.4rem;
        border-radius: 10px;
        box-shadow: 0 8px 30px rgba(32, 60, 68, 0.12);
        min-width: 190px;
        z-index: 1100;
    }

    .appbar nav.open .appbar-nav {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.4rem 0.6rem;
    }

    .appbar nav.open .appbar-nav a {
        padding: 0.6rem 0.8rem;
        display: block;
        color: #203c44;
        border-radius: 6px;
    }

    .appbar nav.open .appbar-nav a:hover {
        background: rgba(26,107,107,0.06);
    }

    /* transform hamburger into X when nav open */
    .mobile-nav-toggle.open .hamburger-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .mobile-nav-toggle.open .hamburger-bar:nth-child(2) { opacity: 0; }
    .mobile-nav-toggle.open .hamburger-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    text-align: center;
}

.video-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.video-content p {
    font-size: 1.5rem;
}

.about-section {
    padding: 4rem 2rem;
    background-color: #e8f0f0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-logo {
    flex-shrink: 0;
}

.about-logo img {
    width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #1a6b6b;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #1a6b6b;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.products-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 4rem;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: none;
    transition: transform 0.3s;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 45%;
    min-width: 400px;
    height: 350px;
    background: #f0f0f0;
    border-radius: 15px;
    flex-shrink: 0;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.product-title {
    font-size: 2rem;
    color: #0d5f5f;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.product-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.product-link {
    color: #0d7f7f;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    display: inline-block;
}

.product-link:hover {
    color: #0a5555;
}

.atouts-section {
    padding: 4rem 2rem;
    background-color: #1a6b6b;
}

.atouts-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
}

.atouts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.atout-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.atout-card:hover {
    transform: translateY(-10px);
}

.atout-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #1a6b6b;
}

.atout-icon svg {
    width: 100%;
    height: 100%;
}

.atout-title {
    font-size: 1.3rem;
    color: #1a6b6b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.atout-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.realisations-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.realisations-section h2 {
    text-align: left;
    font-size: 2.5rem;
    color: #1a6b6b;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    color: #1a6b6b;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-number .plus {
    color: #a0a0a0;
    font-size: 3rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #888;
    margin-top: 0.5rem;
}

.faq-section {
    padding: 4rem 2rem;
    background-color: #1a6b6b;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.clients-section {
    padding: 4rem 2rem;
    background-color: #e8f0f0;
    overflow: hidden;
}

.clients-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a6b6b;
    margin-bottom: 3rem;
}

.clients-grid {
    display: flex;
    gap: 2rem;
    max-width: none;
    margin: 0 auto;
    align-items: center;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.clients-grid:hover {
    animation-play-state: paused;
}

.client-logo {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    min-width: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-column h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-description {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #1a6b6b;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: #aaa;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-contact strong {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #1a6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
    background-color: #156060;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-cta {
    background-color: white;
    color: #1a1a1a;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.footer-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    color: #1a6b6b;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a6b6b;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #1a6b6b;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #156060;
}

/* Pack page styles */
.pack-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #1a6b6b 0%, #0d5f5f 100%);
    text-align: center;
    color: white;
}

.pack-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pack-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.packs-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.packs-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pack-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pack-card.featured {
    border: 3px solid #1a6b6b;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a6b6b;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pack-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.pack-card h3 {
    font-size: 1.5rem;
    color: #1a6b6b;
    margin: 0;
    flex: 1;
}

.pack-badge {
    background-color: #e8f0f0;
    color: #1a6b6b;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pack-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex: 1;
}

.pack-features li {
    padding: 0.75rem 0;
    color: #555;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.pack-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a6b6b;
    font-weight: bold;
    font-size: 1.2rem;
}

.pack-btn {
    width: 100%;
    padding: 1rem;
    background-color: #1a6b6b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.pack-btn:hover {
    background-color: #156060;
    transform: scale(1.02);
}

/* Contact page styles */
.contact-hero {
    padding: 10rem 2rem 8rem;
    background: linear-gradient(135deg, #0a4d4d 0%, #1a6b6b 50%, #0d5f5f 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 222, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 222, 128, 0.1) 0%, transparent 50%);
    z-index: 1;
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.08;
    filter: blur(2px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4ade80, #ffffff);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite, rotate 20s linear infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ffffff, #4ade80);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -100px;
    left: 5%;
    animation: float 10s ease-in-out infinite 1s, morphShape 15s ease-in-out infinite;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #4ade80, #1a6b6b);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    top: 40%;
    left: -80px;
    animation: float 9s ease-in-out infinite 2s, rotate 25s linear infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-30px) translateX(20px); }
    50% { transform: translateY(-20px) translateX(-20px); }
    75% { transform: translateY(-35px) translateX(15px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes morphShape {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.contact-hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShiftText 4s ease infinite;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(74, 222, 128, 0.3);
    position: relative;
}

.contact-hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #4ade80, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.6);
}

@keyframes gradientShiftText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-hero-content p {
    font-size: 1.6rem;
    opacity: 0.95;
    font-weight: 300;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    animation: fadeIn 1.5s ease-out 0.3s both;
}

/* Contact Cards Section */
.contact-cards-section {
    padding: 4rem 2rem;
    background: #f9fafb;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.contact-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a6b6b, #4ade80);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 107, 107, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1a6b6b, #0d5f5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon svg {
    width: 35px;
    height: 35px;
}

.contact-card h3 {
    color: #1a6b6b;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.card-link {
    color: #1a6b6b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #0d5f5f;
    transform: translateX(5px);
}

/* Main Contact Section */
.contact-main-section {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(180deg, #f9fafb 0%, white 50%, #f9fafb 100%);
}

.contact-main-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-side {
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 107, 107, 0.1);
}

.form-header {
    margin-bottom: 3rem;
    text-align: center;
}

.form-header h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modern-form .form-group {
    margin-bottom: 1.5rem;
}

.modern-form .form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: #1a6b6b;
    box-shadow: 0 0 0 5px rgba(26, 107, 107, 0.08);
    background: white;
}

.modern-form input::placeholder,
.modern-form textarea::placeholder {
    color: #999;
}

.modern-form textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.6;
}

.modern-form select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%231a6b6b" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 3rem;
}

.submit-btn-modern {
    width: 100%;
    padding: 1.4rem 2.5rem;
    background: linear-gradient(135deg, #1a6b6b 0%, #0d5f5f 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(26, 107, 107, 0.3);
    margin-top: 1rem;
}

.submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 107, 107, 0.4);
    background: linear-gradient(135deg, #0d5f5f 0%, #084444 100%);
}

.submit-btn-modern:active {
    transform: translateY(-1px);
}

.submit-btn-modern svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.submit-btn-modern:hover svg {
    transform: translateX(8px);
}

/* Map Side */
.map-side {
    position: sticky;
    top: 100px;
}

.map-header {
    margin-bottom: 2rem;
    text-align: center;
}

.map-header h3 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.map-header p {
    color: #666;
    font-size: 1.05rem;
}

.map-container {
    height: 480px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    margin-bottom: 2rem;
    border: 3px solid white;
    outline: 1px solid rgba(26, 107, 107, 0.1);
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-info-item {
    background: linear-gradient(135deg, #f9fafb 0%, #e8f5f5 100%);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid rgba(26, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.map-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 107, 107, 0.12);
}

.info-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
}

.info-value {
    color: #1a6b6b;
    font-size: 1.3rem;
    font-weight: 800;
}

/* CTA Section */
.contact-cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #e8f0f0 100%);
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: #1a6b6b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.social-links-modern {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link-modern svg {
    width: 24px;
    height: 24px;
}

.social-link-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link-modern.facebook {
    background: linear-gradient(135deg, #3b5998, #2d4373);
}

.social-link-modern.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-modern.linkedin {
    background: linear-gradient(135deg, #0077b5, #005582);
}

.social-link-modern.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-main-container {
        grid-template-columns: 1fr;
    }
    
    .map-side {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .modern-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-side {
        padding: 2rem;
    }
    
    .social-links-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link-modern {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, #0a4d4d 0%, #1a6b6b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    transform: rotateY(180deg);
}

.footer-wave path {
    fill: #ffffff;
}

.footer-content-modern {
    padding: 6rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-modern {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo-modern:hover {
    transform: scale(1.05);
}

.footer-brand h3 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

.footer-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-align: center;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4ade80, transparent);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-column ul li a svg {
    transition: transform 0.3s ease;
}

.footer-column ul li a:hover svg {
    transform: translateX(3px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact-list li svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #4ade80;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 0.9rem 1.2rem;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

.newsletter-form button svg {
    width: 20px;
    height: 20px;
}

.footer-social-modern h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-icons-modern {
    display: flex;
    gap: 1rem;
}

.social-icon-modern {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-icon-modern:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon-modern svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

.social-icon-modern:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-icon-modern.facebook {
    background: linear-gradient(135deg, #3b5998, #2d4373);
    box-shadow: 0 4px 15px rgba(59, 89, 152, 0.3);
}

.social-icon-modern.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.social-icon-modern.linkedin {
    background: linear-gradient(135deg, #0077b5, #005582);
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.social-icon-modern.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Modern Pack Page Styles */
.pack-hero-modern {
    position: relative;
    padding: 10rem 2rem 8rem;
    background: linear-gradient(135deg, #0a4d4d 0%, #1a6b6b 50%, #0d5f5f 100%);
    overflow: hidden;
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 222, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 222, 128, 0.1) 0%, transparent 50%);
    z-index: 1;
    animation: gradientPulse 8s ease-in-out infinite;
}

.hero-background-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.shape-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.08), rgba(255, 255, 255, 0.05));
    animation: float-shapes 20s ease-in-out infinite;
    filter: blur(2px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 25%;
    animation-delay: 10s;
}

@keyframes float-shapes {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(40px, -40px) scale(1.15) rotate(120deg); }
    66% { transform: translate(-30px, 30px) scale(0.85) rotate(240deg); }
}

.pack-hero-content-modern {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: fadeIn 1s ease-out, glow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerBadge 3s ease-in-out infinite;
}

.pack-hero-content-modern h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(74, 222, 128, 0.3);
    animation: fadeIn 1s ease-out 0.2s both;
    position: relative;
}

.pack-hero-content-modern h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #4ade80, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.6);
}

.pack-hero-content-modern p {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
    margin-top: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeIn 1.5s ease-out 0.4s both;
}

.hero-stats-modern {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    animation: fadeIn 1.5s ease-out 0.6s both;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4ade80, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(74, 222, 128, 0.5);
    box-shadow: 0 10px 40px rgba(74, 222, 128, 0.2);
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.3));
    transition: transform 0.4s ease;
}

.stat-box:hover .stat-icon {
    transform: scale(1.2) rotateY(360deg);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave-bottom path {
    fill: #ffffff;
}

/* Filter Section */
.pack-filter-section {
    padding: 3rem 2rem;
    background: #f9fafb;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.filter-container h2 {
    font-size: 1.8rem;
    color: #1a6b6b;
    margin-bottom: 2rem;
}

.filter-buttons, .price-buttons, .type-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #1a6b6b;
    color: #1a6b6b;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #1a6b6b, #0d5f5f);
    border-color: #1a6b6b;
    color: white;
}

/* Modern Packs Section */
.packs-section-modern {
    padding: 4rem 2rem;
    background: white;
}

.packs-container-modern {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.pack-card-modern {
    background: white;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.pack-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 107, 107, 0.15);
    border-color: #1a6b6b;
}

.pack-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #1a6b6b, #0d5f5f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.pack-icon svg {
    width: 28px;
    height: 28px;
}

.pack-title {
    font-size: 1.5rem;
    color: #1a6b6b;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.pack-description {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.pack-price {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.pack-price .currency {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pack-price .amount {
    font-size: 2rem;
    font-weight: 800;
    color: #1a6b6b;
}

.pack-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pack-features-modern li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
}

.pack-features-modern li svg {
    width: 18px;
    height: 18px;
    color: #4ade80;
    flex-shrink: 0;
    margin-top: 1px;
}

.pack-btn-modern {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: transparent;
    color: #1a6b6b;
    border: 2px solid #1a6b6b;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pack-btn-modern:hover {
    background: linear-gradient(135deg, #1a6b6b, #0d5f5f);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 107, 107, 0.3);
}

.pack-btn-modern svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.pack-btn-modern:hover svg {
    transform: translateX(5px);
}

.pack-btn-modern.primary {
    background: linear-gradient(135deg, #1a6b6b, #0d5f5f);
    color: white;
    border-color: #1a6b6b;
}

.pack-btn-modern.primary:hover {
    background: linear-gradient(135deg, #0d5f5f, #084444);
    box-shadow: 0 8px 25px rgba(26, 107, 107, 0.4);
}

/* Featured Pack */
.pack-card-modern.featured-pack {
    background: linear-gradient(135deg, #f9fafb, #e8f5f5);
    border-color: #4ade80;
}

.featured-badge-modern {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

/* Popular Pack */
.pack-card-modern.popular-pack {
    background: linear-gradient(135deg, #fff5f5, #fef2f2);
    border-color: #ff6b6b;
}

.popular-badge-modern {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* VIP Pack */
.pack-card-modern.vip-pack {
    background: linear-gradient(135deg, #fffbea, #fff5d6); /* fond clair doré */
    border-color: #ffd900cb; /* bordure dorée */
}

/* VIP Badge */
.vip-badge-modern {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FFC107); /* dégradé doré */
    color: #000; /* texte noir pour contraste */
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); /* ombre dorée */
    text-align: center;
}


/* CTA Section */
.pack-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f9fafb 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pack-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(26, 107, 107, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(74, 222, 128, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-container h2 {
    font-size: 3.5rem;
    color: #1a6b6b;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.cta-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #4ade80, transparent);
    border-radius: 2px;
}

.cta-container p {
    font-size: 1.4rem;
    color: #475569;
    margin-bottom: 3rem;
    margin-top: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.cta-btn-large {
    padding: 1.8rem 3.5rem;
    background: linear-gradient(135deg, #1a6b6b 0%, #0d5f5f 100%);
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(26, 107, 107, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-btn-large:hover::before {
    left: 100%;
}

.cta-btn-large:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(26, 107, 107, 0.4),
        0 0 0 3px rgba(74, 222, 128, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-btn-large:active {
    transform: translateY(-4px) scale(0.98);
}

.cta-btn-large svg {
    width: 28px;
    height: 28px;
    transition: transform 0.4s ease;
}

.cta-btn-large:hover svg {
    transform: scale(1.2) rotate(5deg);
}

/* Responsive Pack Page */
@media (max-width: 1024px) {
    .packs-container-modern {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .pack-hero-content-modern h1 {
        font-size: 2.5rem;
    }
    
    .pack-hero-content-modern p {
        font-size: 1.1rem;
    }
    
    .hero-stats-modern {
        gap: 1.5rem;
    }
    
    .packs-container-modern {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons,.price-buttons, .type-buttons {
        flex-direction: column;
    }
    
    .filter-btn, .price-btn, .type-btn {
        width: 100%;
    }
    
    .cta-container h2 {
        font-size: 2rem;
    }
}

.contact-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: #1a6b6b;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: #666;
    margin: 0;
}

.contact-social {
    margin-top: 2.5rem;
}

.contact-social h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    color: #1a6b6b;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: -100px;
    right: 2rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;

/* Global responsive helpers ------------------------------------------------- */
/* Make media elements and svgs scale fluidly */
img, svg, picture, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fluid typography for major headings */
.hero-title {
    font-size: clamp(1.8rem, 4.5vw + 0.5rem, 4.5rem);
}

.section-title {
    font-size: clamp(1.6rem, 3.2vw + 1rem, 3.5rem);
}

.hero-description, .about-text, p {
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
}

/* Make buttons adapt on small screens */
.btn-primary, .btn-secondary, .service-btn, .service-btn.primary {
    width: auto;
}

@media (max-width: 1024px) {
    .about-container-modern {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }

    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    /* Stack major two-column layouts */
    .about-container-modern,
    .realisations-container .stats-grid-modern,
    .services-grid-modern,
    .atouts-grid-modern {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Reduce hero height on small screens for better usability */
    .video-section-modern {
        height: 60vh;
    }

    /* Ensure hero content doesn't overflow */
    .video-content-modern, .about-hero-content {
        padding: 1.2rem;
    }

    /* Make CTA buttons full width on very small screens */
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1rem;
    }

    /* Make cards flow vertically and fill width */
    .service-card-modern, .atout-card-modern, .stat-card-modern {
        width: 100%;
    }

    /* Footer / contact spacing */
    .contact-form-wrapper {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .appbar {
        padding: 0.6rem 0.6rem;
    }

    .appbar-logo-container {
        width: 160px;
        height: 48px;
    }

    .hero-badge {
        padding: 0.6rem 1.4rem;
        font-size: 0.75rem;
    }

    .hero-title { line-height: 1.05; }

    /* Make nav links easier to tap */
    .appbar nav.open .appbar-nav a {
        padding: 0.9rem 1rem;
        font-size: 1rem;
    }
}

/* Small accessibility nicety: focus styles for keyboard users */
a:focus, button:focus {
    outline: 3px solid rgba(74,222,128,0.25);
    outline-offset: 2px;
}

/* Ensure root container padding is not too large on small screens */
@media (max-width: 640px) {
    body { padding-top: 64px; }
}
    border-left: 4px solid;
}

.notification.show {
    top: 2rem;
    animation: slideInBounce 0.5s ease-out;
}

.notification-success {
    border-left-color: #4ade80;
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
}

.notification-error {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #ffffff, #fef2f2);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    font-size: 1.5rem;
    font-weight: bold;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    background: #4ade80;
    color: white;
}

.notification-error .notification-icon {
    background: #ef4444;
    color: white;
}

.notification-message {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #334155;
}

@keyframes slideInBounce {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    60% {
        transform: translateY(10px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .notification {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    .notification.show {
        top: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}






/* Boutons filtre / prix */


.price-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-btn:hover {
    border-color: #1a6b6b;
    color: #1a6b6b;
    transform: translateY(-2px);
}

.price-btn.active {
    background: linear-gradient(135deg, #1a6b6b, #0d5f5f);
    border-color: #1a6b6b;
    color: white;
}


/* Boutons dev / marketing */


.type-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.type-btn:hover {
    border-color: #1a6b6b;
    color: #1a6b6b;
    transform: translateY(-2px);
}

.type-btn.active {
    background: linear-gradient(135deg, #1a6b6b, #0d5f5f);
    border-color: #1a6b6b;
    color: white;
}


