@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700;900&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f2ede6;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

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

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .slide-content h1 {
        font-size: 4rem;
    }
    
    .section-title span {
        font-size: 3rem;
    }
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(142, 67, 47, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8e432f;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.3s;
}

.logo a:hover {
    color: #6f3424;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

.nav-menu a:hover {
    color: #8e432f;
}

.nav-menu a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 200px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0.5rem 1rem;
}

.btn-cta, .btn-primary {
    background: #8e432f;
    color: #f2ede6;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(142, 67, 47, 0.25);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn-cta::before, .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(223, 210, 194, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before, .btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-cta:hover, .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(142, 67, 47, 0.35);
}

.btn-primary i {
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: #8e432f;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border: 2px solid #8e432f;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: #8e432f;
    color: #f2ede6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(142, 67, 47, 0.25);
}

.btn-secondary i {
    transition: transform 0.3s;
}

.btn-secondary:hover i {
    transform: translateX(3px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: -80px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 8s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(142, 67, 47, 0.85) 0%, rgba(111, 52, 36, 0.75) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #f2ede6;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(242, 237, 230, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(242, 237, 230, 0.3);
    color: #f2ede6;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: rgba(142, 67, 47, 0.9);
    border-color: #8e432f;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 2rem;
}

.slider-btn.next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(242, 237, 230, 0.4);
    border: 2px solid rgba(242, 237, 230, 0.6);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #f2ede6;
    width: 40px;
    border-radius: 10px;
}

.slider-dot:hover {
    background: rgba(242, 237, 230, 0.8);
}

.animated-heading {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.animated-heading .word {
    display: inline-block;
    opacity: 0;
    animation: wordFadeIn 0.8s ease forwards;
}

@keyframes wordFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(-90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.subheadline {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    font-size: 2.5rem;
    color: #8e432f;
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #8e432f, transparent);
    border-radius: 2px;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #8e432f;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(142, 67, 47, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(223, 210, 194, 0.4), transparent);
    transition: left 0.7s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(142, 67, 47, 0.2);
    border-color: rgba(142, 67, 47, 0.1);
}

.service-card h3 {
    color: #8e432f;
    margin: 1.5rem 0 1rem;
    transition: color 0.3s;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.4rem;
}

.service-card:hover h3 {
    color: #6f3424;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: linear-gradient(135deg, #8e432f, #dfd2c2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(142, 67, 47, 0.2);
}

.service-icon i {
    font-size: 2.5rem;
    color: #f2ede6;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(142, 67, 47, 0.3);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(142, 67, 47, 0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid #8e432f;
    border-radius: 20px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(142, 67, 47, 0.15);
}

.stat-item i {
    font-size: 3rem;
    color: #8e432f;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 1.5rem;
    color: #8e432f;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0.5rem 0;
}

.stat-item h3.counter {
    font-size: 3rem;
}

.stat-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Why Us Section */
.why-us-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(142, 67, 47, 0.2);
}

.why-us-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    left: 20px;
    top: 20px;
    border: 3px solid #dfd2c2;
    border-radius: 20px;
    z-index: -1;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.why-us-image:hover img {
    transform: scale(1.05);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border-left: 4px solid #8e432f;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(142, 67, 47, 0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: #8e432f;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #8e432f;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: #666;
    line-height: 1.7;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8e432f, #dfd2c2);
    color: #f2ede6;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
}

/* Contact Form */
.contact-content .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #333;
}

.form-group label i {
    color: #8e432f;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8e432f;
    box-shadow: 0 0 0 4px rgba(142, 67, 47, 0.1);
    background: #fff;
}

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

.contact-info {
    background: linear-gradient(135deg, #8e432f, #6f3424);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    color: #f2ede6;
    box-shadow: 0 10px 40px rgba(142, 67, 47, 0.3);
}

.contact-info .section-title span {
    color: #f2ede6;
}

.contact-info .section-title span::after {
    background: linear-gradient(90deg, transparent, #f2ede6, transparent);
}

.contact-info .contact-item {
    background: rgba(242, 237, 230, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 237, 230, 0.2);
    transition: all 0.3s;
}

.contact-info .contact-item:hover {
    background: rgba(242, 237, 230, 0.15);
    transform: translateX(5px);
}

.contact-info .contact-item i {
    color: #dfd2c2 !important;
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
}

.contact-info .contact-item h4 {
    color: #dfd2c2;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-info .contact-item p {
    color: rgba(242, 237, 230, 0.9);
    margin: 0;
}

.contact-map {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(242, 237, 230, 0.2);
}

.contact-map h4 {
    color: #dfd2c2;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.social-contact {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-contact a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(242, 237, 230, 0.1);
    border: 2px solid rgba(242, 237, 230, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2ede6;
    text-decoration: none;
    transition: all 0.3s;
}

.social-contact a:hover {
    background: #f2ede6;
    color: #8e432f;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2a1810 0%, #1a0f0a 100%);
    color: #f2ede6;
    position: relative;
    margin-top: 5rem;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: #2a1810;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-col h4 {
    color: #dfd2c2;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #8e432f;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dfd2c2;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(242, 237, 230, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(242, 237, 230, 0.8);
}

.contact-item i {
    color: #8e432f;
    font-size: 1.1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(242, 237, 230, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: #dfd2c2;
    transform: translateX(5px);
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: #8e432f;
}

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(142, 67, 47, 0.2);
    border: 2px solid rgba(142, 67, 47, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dfd2c2;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #8e432f;
    border-color: #8e432f;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(142, 67, 47, 0.4);
}

.newsletter h5 {
    color: #dfd2c2;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(142, 67, 47, 0.3);
    background: rgba(242, 237, 230, 0.05);
    border-radius: 25px;
    color: #f2ede6;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #8e432f;
    background: rgba(242, 237, 230, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(242, 237, 230, 0.5);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #8e432f;
    border: none;
    color: #f2ede6;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: #6f3424;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(142, 67, 47, 0.3);
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.footer-bottom p {
    margin: 0;
    color: rgba(242, 237, 230, 0.6);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-links a {
    color: rgba(242, 237, 230, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #dfd2c2;
}

.legal-links span {
    color: rgba(142, 67, 47, 0.5);
}

.developer a {
    color: #8e432f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.developer a:hover {
    color: #dfd2c2;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #8e432f, #6f3424);
    color: #f2ede6;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(223, 210, 194, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section h2 {
    color: #f2ede6;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: #f2ede6;
    color: #8e432f;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary:hover {
    background: #dfd2c2;
}

/* Blog */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.post-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8e432f, #dfd2c2);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.post-card:hover::before {
    transform: scaleX(1);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(142, 67, 47, 0.2);
}

.post-image {
    height: 220px;
    background: linear-gradient(135deg, #dfd2c2, #f2ede6);
    position: relative;
    overflow: hidden;
}

.post-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(142, 67, 47, 0.1) 100%);
}

.post-card:hover .post-image {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #8e432f;
    color: #f2ede6;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.post-content {
    padding: 1.5rem;
}

.post-card h3 {
    color: #8e432f;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-date i {
    color: #8e432f;
}

.post-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(142, 67, 47, 0.1);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.post-author i {
    color: #8e432f;
}

/* Events */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: #fff;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8e432f, #dfd2c2);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(142, 67, 47, 0.2);
}

.event-card-header {
    background: linear-gradient(135deg, #8e432f, #6f3424);
    padding: 2rem;
    text-align: center;
    color: #f2ede6;
}

.event-card-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.event-card-body {
    padding: 2rem;
}

.event-card h3 {
    color: #8e432f;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.event-date, .event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.event-date i, .event-location i {
    color: #8e432f;
}

/* Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    height: 150px;
    background: linear-gradient(135deg, #f0f0f0, #fff);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(142, 67, 47, 0.1);
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: 'Logo Partenaire';
    color: rgba(142, 67, 47, 0.3);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Service Hero Image */
.service-hero {
    padding: 0;
    margin-bottom: 3rem;
}

.service-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #8e432f;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 11px;
}

.menu-toggle span:nth-child(3) {
    top: 22px;
}

.menu-toggle.active span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
}

/* Blog Post */
.blog-post-header {
    background: linear-gradient(135deg, #8e432f, #6f3424);
    color: #f2ede6;
    padding: 4rem 0 2rem;
    text-align: center;
}

.blog-post-header .post-category {
    background: rgba(242, 237, 230, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-post-header h1 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.9;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-featured {
    margin: -3rem auto 3rem;
    max-width: 1200px;
    padding: 0 20px;
}

.blog-post-featured img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.blog-post-body {
    padding: 3rem 0 5rem;
}

.post-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.post-main-content {
    max-width: 800px;
}

.post-main-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
}

.post-main-content h2 {
    color: #8e432f;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}

.post-main-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.post-cta {
    background: linear-gradient(135deg, #8e432f, #6f3424);
    color: #f2ede6;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.post-cta h3 {
    color: #f2ede6;
    margin-bottom: 1rem;
}

.post-cta p {
    color: rgba(242, 237, 230, 0.9);
    margin-bottom: 1.5rem;
}

.post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: #8e432f;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(142, 67, 47, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8e432f;
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn:hover {
    background: #8e432f;
    color: #f2ede6;
    transform: translateY(-3px);
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 0.75rem;
}

.categories-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.categories-list a:hover {
    color: #8e432f;
    transform: translateX(5px);
}

.categories-list i {
    font-size: 0.7rem;
    color: #8e432f;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #8e432f;
    color: #f2ede6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(142, 67, 47, 0.3);
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    background: #6f3424;
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 15, 10, 0.98);
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #f2ede6;
    margin: 0;
}

.cookie-content a {
    color: #dfd2c2;
}

.thank-you-page, .error-page {
    padding: 6rem 0;
    text-align: center;
}

.success-icon, .error-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.success-icon i {
    color: #28a745;
}

.error-icon i {
    color: #8e432f;
}

.thank-you-content h1, .error-content h1 {
    font-size: 3rem;
    color: #8e432f;
    font-family: 'Playfair Display', serif;
}

.thank-you-info {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.thank-you-actions, .error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.legal-content {
    padding: 4rem 0;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.legal-wrapper h2 {
    color: #8e432f;
    font-family: 'Playfair Display', serif;
    margin: 2rem 0 1rem;
}

.legal-wrapper p, .legal-wrapper ul {
    line-height: 1.8;
    color: #555;
}

.about-intro, .mission-vision, .team-section {
    padding: 5rem 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .post-content-wrapper {
        grid-template-columns: 1fr;
    }
    .post-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
        padding: 0.75rem 0;
        opacity: 0;
        transform: translateX(-20px);
        animation: slideIn 0.3s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.35s; }
    .nav-menu.active li:nth-child(7) { animation-delay: 0.4s; }
    
    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    .nav-menu.active {
        max-height: 500px;
        padding: 1rem;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }
    .btn-cta {
        display: none;
    }
    .hero-slider {
        height: 70vh;
        margin-top: 0;
    }
    .slide-content h1, .animated-heading {
        font-size: 1.8rem;
    }
    .subheadline {
        font-size: 1rem;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .slider-btn.prev {
        left: 0.5rem;
    }
    .slider-btn.next {
        right: 0.5rem;
    }
    .section-title span {
        font-size: 1.8rem;
    }
    section {
        padding: 3rem 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 2rem 1.5rem;
    }
    .about-content, .why-us-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stats-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    .cta-section {
        padding: 3rem 0;
    }
    .cta-section h2 {
        font-size: 1.8rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .contact-content .container {
        grid-template-columns: 1fr;
    }
    .contact-form, .contact-info {
        padding: 2rem 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .posts-grid, .events-grid {
        grid-template-columns: 1fr;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-post-header h1 {
        font-size: 1.8rem;
    }
    .service-hero-img {
        height: 250px;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .animated-heading, .slide-content h1 {
        font-size: 1.5rem;
    }
    .section-title span {
        font-size: 1.5rem;
    }
    .service-icon {
        width: 70px;
        height: 70px;
    }
    .service-icon i {
        font-size: 2rem;
    }
    .stat-item h3.counter {
        font-size: 2.5rem;
    }
    .partners-grid {
        grid-template-columns: 1fr;
    }
    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
}
