/* Reset et Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Amélioration pour les écrans tactiles */
@media (hover: none) {
    .nav-link:hover {
        background: transparent;
        color: #2b2d42;
        transform: none;
    }
    
    .nav-link:active {
        background: #00b8a9;
        color: white;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 60px;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fffaf0;
    color: #2b2d42;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #2b2d42;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #2b2d42;
}

a {
    color: #00b8a9;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff4f81;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2b2d42;
    color: white;
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-text h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #eaf2f8;
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept {
    background: #00b8a9;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-accept:hover {
    background: #ff4f81;
}

.cookie-policy {
    color: #eaf2f8;
    text-decoration: underline;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #2b2d42;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #00b8a9;
    color: white;
    transform: translateY(-2px);
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phone, .email {
    color: #2b2d42;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 45, 66, 0.8), rgba(0, 184, 169, 0.6));
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #eaf2f8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.feature-icon {
    background: #00b8a9;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.hero-cta {
    background: #ff4f81;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-cta:hover {
    background: #00b8a9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2b2d42;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #eaf2f8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    color: #2b2d42;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

.about-values {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    flex: 1;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.value-item h4 {
    color: #00b8a9;
    margin-bottom: 0.5rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: #fffaf0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    color: #2b2d42;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.service-features li:before {
    content: "✓";
    color: #00b8a9;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Advantages Section */
.advantages-section {
    padding: 5rem 0;
    background: #eaf2f8;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    background: #ff4f81;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.advantage-item h3 {
    color: #2b2d42;
    margin-bottom: 1rem;
}

.advantage-item p {
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background: linear-gradient(135deg, rgba(43, 45, 66, 0.9), rgba(255, 79, 129, 0.7)), url('./img/HHzs6I.jpg');
}

.testimonials-overlay {
    position: relative;
    z-index: 1;
    padding: 0;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.testimonial-content blockquote {
    font-style: italic;
    color: #2b2d42;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-content blockquote:before {
    content: "\201C";
    font-size: 3rem;
    color: #ff4f81;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-content footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-content cite {
    color: #00b8a9;
    font-weight: bold;
    font-style: normal;
}

.testimonial-content span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #fffaf0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    color: #2b2d42;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff !important;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15) !important;
    border: 3px solid #ff4f81 !important;
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00b8a9, #ff4f81);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 184, 169, 0.3);
}

.contact-item h4 {
    color: #ff4f81 !important;
    margin-bottom: 0.25rem;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2) !important;
}

.contact-item p {
    color: #000000 !important;
    margin-bottom: 0;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8) !important;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #2b2d42;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2b2d42;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00b8a9;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.radio-label:hover {
    background: #f0f0f0;
}

.radio-label input[type="radio"] {
    accent-color: #00b8a9;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    accent-color: #00b8a9;
    margin-top: 0.1rem;
}

.submit-btn {
    background: linear-gradient(135deg, #ff4f81, #00b8a9);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #eaf2f8;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2b2d42;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #2b2d42;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #eaf2f8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #eaf2f8;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00b8a9;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.contact-details p {
    color: #eaf2f8;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #eaf2f8;
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Medium screens (tablets) */
@media (max-width: 1024px) and (min-width: 769px) {
    .header-content {
        padding: 0.8rem 0;
    }
    
    .logo img {
        height: 55px;
    }
    
    .nav-link {
        padding: 0.4rem 0.7rem;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .logo img {
        height: 45px;
    }
    
    .header-nav {
        order: 2;
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .header-contact {
        order: 3;
        margin-top: 0.5rem;
    }
    
    .contact-info {
        align-items: center;
        gap: 0.3rem;
    }
    
    .phone, .email {
        font-size: 0.85rem;
    }
    
    .hero-section {
        min-height: 85vh;
        padding-top: 4rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-values {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-details {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1.2rem;
        background: #ffffff !important;
        border: 3px solid #ff4f81 !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15) !important;
    }
    
    .contact-item:hover {
        border-color: #00b8a9;
        transform: translateY(-2px);
        transition: all 0.3s ease;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 80vh;
        padding-top: 6rem;
    }
    
    .hero-content {
        padding: 4rem 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 50px;
    }
    
    .header {
        padding: 0.3rem 0;
    }
    
    .header-content {
        gap: 0.3rem;
        padding: 0.3rem 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .header-nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .phone, .email {
        font-size: 0.8rem;
    }
    
    .hero-section {
        min-height: 80vh;
        padding-top: 3rem;
    }
    
    .hero-content {
        padding: 1.5rem 0.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-features {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
        color: #ff4f81 !important;
        font-weight: 700 !important;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.2) !important;
    }
    
    .contact-item p {
        font-size: 1.1rem;
        color: #000000 !important;
        font-weight: 700 !important;
        text-shadow: 1px 1px 2px rgba(255,255,255,0.8) !important;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
} 