* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #1a1a1a;
    color: #fff;
}

.navbar {
    position: fixed;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    letter-spacing: 1.5px;
    font-size: 1.5rem;
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

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

.contact-btn {
    background: #fff;
    color: #1a1a1a !important;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .contact-btn {
        width: fit-content;
    }
}

.hero {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
    background: linear-gradient(to right, #1a1a1a 60%, #262626 40%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    padding-right: 2rem;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.5rem;
    height: 2px;
    background: #fff;
    transform: translateY(-50%);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #fff;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-stats {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: #262626;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
    color: #fff;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.stat-text {
    color: #999;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

@media (max-width: 968px) {
    .hero {
        padding: 6rem 1rem 2rem;
        background: #1a1a1a;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-subtitle {
        padding-left: 0;
    }

    .hero-subtitle::before {
        display: none;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        position: static;
        margin-top: 2rem;
    }
}

.projects {
    padding: 8rem 2rem;
    background-color: #1a1a1a;
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
}

.projects .section-title {
    color: #fff;
    text-align: left;
    margin-bottom: 4rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.project-card {
    background: #262626;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 2rem;
}

.project-category {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.project-content p {
    color: #999;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-details {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #fff;
    color: #1a1a1a;
}

@media (max-width: 968px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .projects {
        padding: 6rem 1rem;
    }

    .project-image {
        height: 250px;
    }

    .projects .section-title {
        text-align: center;
        font-size: 2.5rem;
    }
}

.about {
    padding: 8rem 2rem;
    background-color: #262626;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-badge .number {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: #999;
    text-align: center;
    margin-top: 0.5rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 3rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.5rem;
    height: 2px;
    background: #fff;
    transform: translateY(-50%);
}

.about-content .section-title {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-description {
    color: #999;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.skill-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-item h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.skill-item p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .experience-badge {
        bottom: 1rem;
        right: 1rem;
        width: 120px;
        height: 120px;
        padding: 1.5rem;
    }

    .experience-badge .number {
        font-size: 2.5rem;
    }

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

    .about-content .section-title {
        font-size: 2.5rem;
    }
}

.services {
    padding: 8rem 2rem;
    background-color: #1a1a1a;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: #262626;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #fff;
}

.service-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #999;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    color: #fff;
    margin-right: 0.5rem;
    font-weight: bold;
}

.service-card .btn-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services {
        padding: 6rem 1rem;
    }

    .service-card {
        padding: 2rem;
    }
}

.testimonials {
    padding: 8rem 2rem;
    background-color: #262626;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: #262626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

.testimonial-text {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.author-info span {
    color: #999;
    font-size: 0.9rem;
}

.rating {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        padding: 6rem 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

.blog {
    padding: 8rem 2rem;
    background-color: #1a1a1a;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: #262626;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    height: 240px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(26, 26, 26, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 700;
}

.blog-content p {
    color: #999;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

.read-more svg {
    transition: transform 0.3s ease;
}

.read-more:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 6rem 1rem;
    }

    .blog-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .blog-image {
        height: 200px;
    }
}

.contact {
    padding: 8rem 2rem;
    background-color: #262626;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-description {
    color: #999;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-text h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #999;
    line-height: 1.6;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #333;
    transform: translateY(-3px);
}

.contact-form {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
}

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

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #262626;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 6rem 1rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

.footer {
    background-color: #1a1a1a;
    padding: 6rem 2rem 2rem;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-description {
    color: #999;
    line-height: 1.6;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.9rem;
}

.credits {
    color: #666;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 4rem 1rem 2rem;
    }
}

@media (max-width: 968px) {
    /* Navigation */
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 3rem;
    }

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

    .hero-stats {
        justify-content: center;
    }

    /* Projects Section */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* About Section */
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 4rem 2rem;
    }

    .experience-badge {
        right: 2rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Testimonials Section */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Blog Section */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .blog-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-form {
        padding: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    /* Global */
    .section-title {
        font-size: 2rem;
    }

    /* Hero Section */
    .hero-container {
        padding: 4rem 1rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    /* Projects Section */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        margin: 0 1rem;
    }

    /* Skills Grid */
    .skills-grid {
        grid-template-columns: 1fr;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        margin: 0 1rem;
    }

    /* Testimonials Section */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        margin: 0 1rem;
    }

    /* Blog Section */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        margin: 0 1rem;
    }

    /* Contact Form */
    .contact-form {
        margin: 0 1rem;
        padding: 1.5rem;
    }

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

    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Ajouts pour améliorer l'expérience mobile */
@media (hover: none) {
    .project-card:hover .project-content,
    .blog-card:hover .blog-content {
        transform: none;
    }

    .service-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
}

/* Optimisations pour les images */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }

    .hero-image img,
    .about-image img {
        height: 300px;
        object-fit: cover;
    }

    .project-image img,
    .blog-image img {
        height: 250px;
    }
}

/* Ajustements pour les écrans très petits */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Ajustements pour les grands écrans */
@media (min-width: 1400px) {
    .container,
    .hero-container,
    .projects-container,
    .about-container,
    .services-container,
    .testimonials-container,
    .blog-container,
    .contact-container,
    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
    }
} 