/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #D11849;
    --primary-dark: #D11849 ;
    --primary-light: #D11849;
    --secondary: hsl(90, 15%, 45%);
    --text-dark: hsl(25, 30%, 15%);
    --text-light: hsl(90, 8%, 46%);
    --background: hsl(0, 0%, 100%);
    --background-light: #ECE6D8;
    --border: hsl(90, 15%, 88%);
    --shadow: rgba(0, 0, 0, 0.1);
    --radius: 0.75rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease-out;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 118, 31, 0.3);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

.icon {
    width: 20px;
    height: 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: transform 0.2s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.nav-link:hover {
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 24px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 8px 32px var(--shadow);
    padding: 20px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: left;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* Home Button */
.home-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(212, 118, 31, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1500;
    opacity: 0;
    transform: translateY(20px);
}

.home-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.home-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 118, 31, 0.5);
}

.home-btn svg {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--background-light) 0%, hsl(26, 50%, 90%) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeIn 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.location-icon {
    width: 20px;
    height: 20px;
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.heart-icon {
    width: 20px;
    height: 20px;
    color: #ef4444;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image-container {
    animation: scaleIn 0.8s ease-out;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 118, 31, 0.2) 0%, rgba(90, 117, 98, 0.2) 100%);
    border-radius: 24px;
    transform: rotate(3deg);
    z-index: 1;
}

.hero-image {
    position: relative;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 400px;
    object-fit: cover;
    z-index: 2;
}

.hero-stats {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.hero-stats-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.hero-stats-text {
    display: flex;
    flex-direction: column;
}

.hero-stats-number {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.hero-stats-label {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 32px;
}

.services-examples {
    display: flex;
    justify-content: center;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 95%;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeIn 0.6s ease-out;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.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-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.service-icon {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 2rem;
    z-index: 2;
}

.service-content {
    padding: 32px;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.service-cta {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    gap: 8px;
    font-size: 1.1rem;
}

.service-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-arrow {
    transform: translateX(4px);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px var(--shadow);
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.25rem;
}

.testimonial-platform {
    font-size: 14px;
    color: var(--text-light);
    background: var(--border);
    padding: 4px 12px;
    border-radius: 12px;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.testimonials-cta {
    background: rgba(212, 118, 31, 0.05);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testimonials-cta-text {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.testimonials-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.testimonials-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.testimonials-cta-btn.google {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonials-cta-btn.google:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.testimonials-cta-btn.facebook {
    background: #1877f2;
    color: white;
}

.testimonials-cta-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: auto;
    transform: translate(0, 0);
}

.modal-large {
    max-width: 1000px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: white;
    border-radius: 16px 16px 0 0;
    z-index: 10;
}

.modal-header h2 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 100;
}

.modal-close:hover {
    background: var(--border);
}

.modal-body {
    padding: 32px;
}

/* Contact info */
.contact-info {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Service Modal Styles */
.service-modal-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.service-modal-text h4 {
    color: var(--primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-modal-text ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.service-modal-text li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.service-price-info {
    background: var(--background-light);
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
    margin: 16px 0;
}

.service-modal-cta {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* Examples Modal Styles */
.examples-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    background: var(--border);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.example-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.example-item:hover {
    transform: scale(1.02);
}

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

.example-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.example-item:hover .example-overlay {
    opacity: 1;
}

.example-overlay h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
}

.video-item {
    position: relative;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-play-btn svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    margin-left: 2px;
}

.video-item:hover .video-play-btn {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    font-size: 12px;
    opacity: 0.8;
}

.examples-note {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-title {
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-contact .contact-item {
    margin-bottom: 16px;
}

.contact-link {
    background: none;
    border: none;
    color: #a1b5a3;
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #a1b5a3;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: white;
}

.footer-description {
    color: #a1b5a3;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #4a5d4d;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a1b5a3;
}

.footer-bottom-left .heart-icon {
    width: 16px;
    height: 16px;
    color: #ef4444;
}

.footer-bottom-right {
    color: #a1b5a3;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image-container {
        order: -1;
    }
    
    .services-grid-new {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-cta {
        padding: 32px 24px;
    }
    
    .testimonials-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .modal-content {
        margin: 20px;
        max-width: 95%;
    }

    .modal-header, .modal-body {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .examples-grid {
        grid-template-columns: 1fr;
    }

    .home-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .home-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services {
        padding: 60px 0;
    }

    .service-card, .testimonial-card {
        padding: 20px;
    }
    
    .hero-stats {
        position: static;
        margin-top: 20px;
        align-self: center;
    }
}

/* Active mobile menu */
.mobile-menu.active {
    display: block;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
