* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: linear-gradient(135deg, #4a90e2 0%, #87ceeb 100%);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 100px;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo img {
    height: 100%;
    width: auto;
}

.logo:hover {
    transform: scale(1.05);
}

.burger {
    display: block;
    cursor: pointer;
    background: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: transform 0.3s;
}

.burger:hover {
    transform: scale(1.1);
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #4a90e2;
    margin: 5px 0;
    transition: 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    position: fixed;
    top: 120px;
    right: -300px;
    width: 250px;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    padding: 2rem 0;
    height: calc(100vh - 120px);
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    display: block;
    padding: 1rem 2rem;
    color: #333;
    text-decoration: none;
    transition: background 0.3s, padding-left 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    background: #f0f8ff;
    padding-left: 2.5rem;
    color: #4a90e2;
}

.nav-divider {
    height: 1px;
    background: #ddd;
    margin: 1rem 2rem;
}

.nav-legal {
    font-size: 0.9rem;
    opacity: 0.7;
}

main {
    margin-top: 120px;
}

.hero {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f0f8ff 0%, white 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.slogan {
    font-size: 1.3rem;
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.services-preview {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-preview h2 {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 3rem;
}

.services-grid-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card-mini {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card-mini h3 {
    color: #4a90e2;
    font-size: 1.2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #4a90e2;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #4a90e2 0%, #87ceeb 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-header {
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, #4a90e2 0%, #87ceeb 100%);
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.services-detail {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-full {
    background: #f0f8ff;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-icon-large {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-full h2 {
    color: #4a90e2;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-full p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-full ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-full li {
    padding: 0.8rem 0;
    color: #555;
    font-size: 1.05rem;
    padding-left: 2rem;
    position: relative;
}

.service-full li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border: 2px solid #4a90e2;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.pricing-card.featured {
    border-color: #2c5aa0;
    background: linear-gradient(to bottom, #f0f8ff 0%, white 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #2c5aa0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: #4a90e2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: #4a90e2;
    font-weight: bold;
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.pricing-desc {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.7rem 0;
    color: #555;
}

.btn-pricing {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 1rem;
}

.btn-pricing:hover {
    background: #3a7bc8;
}

.deplacement-info {
    background: white;
    border: 2px solid #4a90e2;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.deplacement-info h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.deplacement-info p {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.pricing-info {
    background: #f0f8ff;
    padding: 2.5rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.pricing-info h3 {
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pricing-info ul {
    list-style: none;
}

.pricing-info li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.pricing-info li:before {
    content: "ℹ️";
    position: absolute;
    left: 0;
}

.contact-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.contact-info h2 {
    color: #4a90e2;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    color: #4a90e2;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #4a90e2;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #4a90e2;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a90e2;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-notice {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

.legal-content {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: #4a90e2;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.legal-content a {
    color: #4a90e2;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.update-date {
    margin-top: 3rem;
    font-style: italic;
    color: #999;
}

footer {
    background: #333;
    color: white;
    padding: 2rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-google {
    margin-bottom: 1.5rem;
}

.footer-google a {
    color: #ffd700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-google a:hover {
    color: #ffed4e;
}

.footer-legal {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
}

.footer-legal p {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .logo {
        height: 70px;
    }
    
    header {
        padding: 0.75rem 1rem;
    }
    
    main {
        margin-top: 90px;
    }
    
    .nav-menu {
        top: 90px;
        height: calc(100vh - 90px);
    }
    
    .hero-text h1 { 
        font-size: 2rem; 
    }
    
    .hero-content { 
        text-align: center; 
        flex-direction: column; 
    }
    
    .profile-img { 
        width: 250px; 
        height: 250px;
    }
    
    .contact-section { 
        grid-template-columns: 1fr; 
    }
    
    .footer-links { 
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid-preview { 
        grid-template-columns: 1fr; 
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
/* STYLES SP CIFIQUES PAGE TARIFS */

.section-title {
    font-size: 2rem;
    color: #4a90e2;
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.particuliers-section {
    background: linear-gradient(to bottom, #f0f8ff 0%, white 100%);
    padding: 4rem 2rem;
}

.particuliers-card {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border: 2px solid #4a90e2;
    border-radius: 15px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.particuliers-left {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(to bottom, #f0f8ff 0%, white 100%);
    border-radius: 10px;
}

.particuliers-left h3 {
    color: #4a90e2;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.price-large {
    font-size: 3.5rem;
    color: #4a90e2;
    font-weight: bold;
    margin: 2rem 0;
}

.price-large span {
    font-size: 1.2rem;
    color: #666;
}

.solidarity-text {
    color: #2c5aa0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.particuliers-right h4 {
    color: #4a90e2;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.particuliers-right ul {
    list-style: none;
    margin-bottom: 2rem;
}

.particuliers-right li {
    padding: 1rem 0;
    color: #555;
    line-height: 1.8;
}

.particuliers-right li strong {
    color: #4a90e2;
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .particuliers-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* STYLES PAGE SERVICES */

.featured-service {
    border: 3px solid #4a90e2;
    position: relative;
    background: linear-gradient(to bottom, #f0f8ff 0%, white 100%);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #2c5aa0;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #4a90e2;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-service:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.services-note {
    background: #fff8e1;
    border-left: 4px solid #ffa726;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.services-note p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.services-note strong {
    color: #f57c00;
}