/* ===========================
   VARIABLES CSS
   =========================== */
:root {
    --primary-red: #D32F2F;
    --dark-red: #B71C1C;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --border-gray: #E0E0E0;
    --font-family: 'Poppins', sans-serif;
}

/* ===========================
   GLOBAL STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

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

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-red);
    padding-left: 2rem;
}

.dropdown-item.active {
    background-color: var(--primary-red);
    color: white;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.btn-outline-primary {
    color: var(--primary-red);
    border-color: var(--primary-red);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.btn-danger {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-danger:hover {
    background-color: var(--dark-red);
    border-color: var(--dark-red);
}

/* ===========================
   HERO SECTION - HOME PAGE
   =========================== */
.hero-section-home {
    min-height: 600px;
    background: linear-gradient(to right, #dad4d0 0%, #dad4d0 60%, transparent 60%),
                url('../images/hero-texture.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-text-content {
    background: linear-gradient(to right, rgba(218, 212, 208, 0.95) 0%, rgba(218, 212, 208, 0.85) 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-text-wrapper {
    padding-left: 100px;
    padding-right: 50px;
    max-width: 700px;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: white;
    padding: 16px 48px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
    border: none;
    cursor: pointer;
}

.btn-hero-cta:hover {
    background: linear-gradient(135deg, #d62828 0%, #c1121f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.5);
    color: white;
}

.hero-image-content {
    position: relative;
    min-height: 600px;
    padding: 0;
    overflow: hidden;
}

.hero-profile-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section-home {
        min-height: auto;
    }

    .hero-text-content {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-text-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image-content {
        min-height: 400px;
    }

    .hero-profile-image {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .btn-hero-cta {
        padding: 14px 40px;
        font-size: 0.95rem;
    }

    .hero-image-content {
        min-height: 350px;
    }

    .hero-profile-image {
        height: 350px;
    }
}

/* ===========================
   SECTIONS
   =========================== */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* ===========================
   CARDS
   =========================== */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 100%;
}

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

.service-card .card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    background-color: var(--primary-red);
    color: white;
}

.service-card .card-icon i {
    font-size: 2rem;
    color: var(--primary-red);
    transition: color 0.3s ease;
}

.service-card:hover .card-icon i {
    color: white;
}

/* ===========================
   TEAM
   =========================== */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    max-width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-member h5 {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonial-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-red);
}

/* ===========================
   CONTACT FORM
   =========================== */
.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-control, .form-select {
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.25);
}

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

/* ===========================
   SECTIONS
   =========================== */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* ===========================
   SERVICES SECTION - MODERN
   =========================== */
.services-section {
    padding: 100px 0;
    background: #ffffff;
}

.services-main-title {
    font-size: 2.75rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.service-card-modern {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 50px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e63946 0%, #d62828 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #d62828;
}

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

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon-wrapper {
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    transform: scale(1.1) rotate(-5deg);
}

.service-icon-wrapper i {
    font-size: 28px;
    color: #ffffff;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 28px;
    flex-grow: 1;
}

.btn-service {
    display: inline-block;
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: #ffffff;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.3);
    align-self: flex-start;
}

.btn-service:hover {
    background: linear-gradient(135deg, #d62828 0%, #c1121f 100%);
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(214, 40, 40, 0.4);
    color: #ffffff;
}

@media (max-width: 991px) {
    .services-main-title {
        font-size: 2.25rem;
    }

    .service-card-modern {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 60px 0;
    }

    .services-main-title {
        font-size: 1.875rem;
        margin-bottom: 40px;
    }

    .service-card-modern {
        padding: 30px 24px;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 1.25rem;
    }
}

/* VIDEO SECTION */
.video-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-player {
    width: 100%;
    height: 600px;
    display: block;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: #ffffff;
}

.video-play-btn i {
    font-size: 28px;
    color: #e63946;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn i {
        font-size: 22px;
    }
}

/* ABOUT SECTION */
.about-story-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.story-image-wrapper:hover .story-image {
    transform: scale(1.05);
}

.story-content {
    padding-left: 40px;
}

.story-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.story-text {
    font-size: 1.125rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-story {
    display: inline-block;
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: #ffffff;
    padding: 16px 48px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
    margin-top: 20px;
}

.btn-story:hover {
    background: linear-gradient(135deg, #d62828 0%, #c1121f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.5);
    color: #ffffff;
}

@media (max-width: 991px) {
    .about-story-section {
        padding: 80px 0;
    }

    .story-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .story-title {
        font-size: 2.25rem;
    }

    .story-text {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .about-story-section {
        padding: 60px 0;
    }

    .story-title {
        font-size: 1.875rem;
    }
}

/* FORMULAIRE SECTION */
.contact-form-section {
    padding: 100px 0;
    background: #e8e8e8;
}

.contact-info-left {
    padding-right: 30px;
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 50px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #e63946;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 18px;
    color: #ffffff;
}

.contact-info-item h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: #333333;
    margin: 0;
}

.contact-info-item a {
    color: #333333;
    text-decoration: none;
}

.contact-info-item a:hover {
    color: #e63946;
}

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

.form-control-modern {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333333;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    outline: none;
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-control-modern::placeholder {
    color: #999999;
}

.form-check-modern {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-check-modern input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-check-modern label {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.5;
    cursor: pointer;
}

.btn-submit-modern {
    width: 100%;
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: #ffffff;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
}

.btn-submit-modern:hover {
    background: linear-gradient(135deg, #d62828 0%, #c1121f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.5);
}

@media (max-width: 991px) {
    .contact-form-section {
        padding: 80px 0;
    }

    .contact-info-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-form-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .contact-form-card {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-title {
        font-size: 1.75rem;
    }

    .contact-form-card {
        padding: 30px 20px;
    }
}

/* HOME GALLERY SECTION */
.certificates-section {
    padding: 100px 0;
    background: #ffffff;
}

.certificates-title {
    font-size: 2.75rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.certificate-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 1;
    background: #f8f8f8;
}

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

.certificate-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay i {
    font-size: 40px;
    color: #ffffff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-overlay i {
    transform: scale(1);
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: #e63946;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

@media (max-width: 768px) {
    .certificates-section {
        padding: 60px 0;
    }

    .certificates-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .certificates-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .lightbox-modal {
        padding: 20px;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}

/* ===========================
   FOOTER
   =========================== */
.footer-modern {
    background: #f0f0f0;
    padding: 80px 0 0;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    width: 230px;
    height: auto;
    margin-bottom: 20px;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.95rem;
    color: #333333;
    margin-bottom: 15px;
}

.footer-tags {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #333333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #e63946;
    transform: translateX(5px);
}

.footer-contact-text {
    font-size: 0.95rem;
    color: #333333;
    margin-bottom: 12px;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-btn-phone {
    background: #e63946;
    color: #ffffff;
    border: 2px solid #e63946;
}

.footer-btn-phone:hover {
    background: #d62828;
    border-color: #d62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.3);
    color: #ffffff;
}

.footer-btn-email, .footer-btn-whatsapp {
    background: #e63946;
    color: #ffffff;
    border: 2px solid #e63946;
}

.footer-btn-email:hover, .footer-btn-whatsapp:hover {
    background: #d62828;
    border-color: #d62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.3);
    color: #ffffff;
}

.footer-btn i {
    font-size: 1rem;
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid #d0d0d0;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
}

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

.footer-copyright a:hover {
    color: #e63946;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #e63946;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .footer-modern {
        padding: 60px 0 0;
    }

    .footer-bottom {
        margin-top: 40px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .footer-modern {
        padding: 40px 0 0;
    }

    .footer-buttons {
        margin-top: 20px;
    }

    .footer-bottom {
        margin-top: 30px;
    }
}

/* PAGE MON HISTOIRE */
.histoire-hero-section {
    padding: 80px 0;
    background: #ffffff;
}

.histoire-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.histoire-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 60px;
}

.histoire-gallery-item {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    background: #f0f0f0;
}

.histoire-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.histoire-gallery-item:hover img {
    transform: scale(1.1);
}

.histoire-content {
    max-width: 1200px;
    margin: 0 auto;
}

.histoire-text {
    font-size: 1rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.histoire-text-quote {
    font-size: 1.125rem;
    color: #1a1a1a;
    font-weight: 600;
    font-style: italic;
    margin-top: 30px;
}

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.gallery-lightbox-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    color: #e63946;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: all 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    color: #e63946;
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 500;
}

@media (max-width: 991px) {
    .histoire-title {
        font-size: 2.25rem;
    }

    .histoire-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .histoire-hero-section {
        padding: 60px 0;
    }

    .histoire-title {
        font-size: 1.875rem;
        margin-bottom: 40px;
    }

    .histoire-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-prev,
    .gallery-next {
        font-size: 35px;
        padding: 10px;
    }

    .gallery-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}

/* Call do action */
.cta-section {
    padding: 100px 0;
    background: #ffffff;
}

.cta-box {
    background: #e8e8e8;
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.375rem;
    color: #333333;
    margin-bottom: 40px;
}

.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: #ffffff;
    padding: 18px 50px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.4);
}

.btn-cta-phone:hover {
    background: linear-gradient(135deg, #d62828 0%, #c1121f 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.5);
    color: #ffffff;
}

.btn-cta-phone i {
    font-size: 1.25rem;
}

@media (max-width: 991px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-box {
        padding: 60px 40px;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-box {
        padding: 40px 30px;
        border-radius: 20px;
    }

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

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .btn-cta-phone {
        padding: 16px 40px;
        font-size: 1rem;
    }
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #e8e8e8;
}

.value-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 2.25rem;
    color: #ffffff;
}

.value-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.value-text {
    font-size: 1rem;
    color: #333333;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .values-section {
        padding: 80px 0;
    }

    .value-card {
        padding: 40px 30px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .values-section {
        padding: 60px 0;
    }

    .value-card {
        padding: 35px 25px;
    }

    .value-icon {
        width: 70px;
        height: 70px;
    }

    .value-icon i {
        font-size: 2rem;
    }

    .value-title {
        font-size: 1.5rem;
    }
}

/* Follow Dreams Section */

.follow-dreams-section {
    padding: 100px 0;
    background: #ffffff;
}

.dreams-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.dreams-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.dreams-image-wrapper:hover .dreams-image {
    transform: scale(1.05);
}

.dreams-content {
    padding-left: 40px;
}

.dreams-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.dreams-text {
    font-size: 1.25rem;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 35px;
}

.btn-dreams {
    display: inline-block;
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: #ffffff;
    padding: 16px 48px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
}

.btn-dreams:hover {
    background: linear-gradient(135deg, #d62828 0%, #c1121f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.5);
    color: #ffffff;
}

@media (max-width: 991px) {
    .follow-dreams-section {
        padding: 80px 0;
    }

    .dreams-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

    .dreams-title {
        font-size: 2.25rem;
    }

    .dreams-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {
    .follow-dreams-section {
        padding: 60px 0;
    }

    .dreams-title {
        font-size: 1.875rem;
    }

    .dreams-text {
        font-size: 1rem;
    }
}

/* Team Intro Section */
.team-intro-section {
    padding: 100px 0;
    background: #ffffff;
}

.team-intro-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.5px;
}

.team-intro-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.team-intro-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.team-intro-image-wrapper:hover .team-intro-image {
    transform: scale(1.05);
}

.team-intro-content {
    padding-left: 40px;
}

.team-intro-text {
    font-size: 1.125rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .team-intro-section {
        padding: 80px 0;
    }

    .team-intro-title {
        font-size: 2.75rem;
        margin-bottom: 60px;
    }

    .team-intro-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .team-intro-text {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .team-intro-section {
        padding: 60px 0;
    }

    .team-intro-title {
        font-size: 2.25rem;
        margin-bottom: 40px;
    }
}

/* Why Join Team Section */
.why-join-section {
    padding: 100px 0;
    background: #e8e8e8;
}

.why-join-title {
    font-size: 2.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.why-join-title i {
    font-size: 2.5rem;
}

.why-join-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-join-item {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-join-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.why-join-icon {
    width: 50px;
    height: 50px;
    background: #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-join-item:hover .why-join-icon {
    transform: scale(1.1);
}

.why-join-icon i {
    font-size: 1.25rem;
    color: #ffffff;
}

.why-join-text {
    font-size: 1.125rem;
    color: #333333;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .why-join-section {
        padding: 80px 0;
    }

    .why-join-title {
        font-size: 2.25rem;
        margin-bottom: 50px;
    }

    .why-join-title i {
        font-size: 2rem;
        margin-left: 0 !important;
        margin-top: 15px;
        width: 100%;
    }

    .why-join-item {
        padding: 30px 30px;
    }

    .why-join-text {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .why-join-section {
        padding: 60px 0;
    }

    .why-join-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    .why-join-item {
        padding: 25px 20px;
        gap: 20px;
    }

    .why-join-icon {
        width: 45px;
        height: 45px;
    }

    .why-join-icon i {
        font-size: 1.125rem;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: #ffffff;
}

.benefits-title {
    font-size: 2.75rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 15px;
}

.benefits-subtitle {
    font-size: 1.25rem;
    color: #666666;
    text-align: center;
    margin-bottom: 60px;
}

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #e63946;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 1.875rem;
    color: #ffffff;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-text {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: #e8e8e8;
}

.partners-title {
    font-size: 2.75rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: scale(1.1);
}

.partner-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    /* filter: grayscale(100%);
    opacity: 0.7; */
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 991px) {
    .benefits-section,
    .partners-section {
        padding: 80px 0;
    }

    .benefits-title,
    .partners-title {
        font-size: 2.25rem;
    }

    .benefit-title {
        font-size: 1.125rem;
        min-height: 50px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .benefits-section,
    .partners-section {
        padding: 60px 0;
    }

    .benefits-title,
    .partners-title {
        font-size: 1.875rem;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon i {
        font-size: 1.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Team Members Section */
.team-members-section {
    padding: 100px 0;
    background: #ffffff;
}

.team-members-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.team-member-card {
    text-align: center;
    transition: all 0.3s ease;
}

.team-member-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/4;
    background: #f0f0f0;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.05);
}

.team-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.team-member-role {
    font-size: 1rem;
    color: #666666;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #e8e8e8;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 0 40px;
    animation: fadeIn 0.5s;
}

.testimonial-item.active {
    display: block;
}

.testimonial-text {
    font-size: 1.125rem;
    color: #333333;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    font-size: 1rem;
    color: #1a1a1a;
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #cccccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #e63946;
    width: 32px;
    border-radius: 6px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
    .team-members-section,
    .testimonials-section {
        padding: 80px 0;
    }

    .team-members-title,
    .testimonials-title {
        font-size: 2.25rem;
    }

    .testimonial-item {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .team-members-section,
    .testimonials-section {
        padding: 60px 0;
    }

    .team-members-title,
    .testimonials-title {
        font-size: 1.875rem;
    }

    .team-member-name {
        font-size: 1.25rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* GALLERY */
.team-gallery-section {
    padding: 100px 0;
    background: #ffffff;
}

.gallery-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 15px;
}

.gallery-subtitle {
    font-size: 1.125rem;
    color: #666666;
    text-align: center;
    margin-bottom: 60px;
}

.team-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f0f0f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: #ffffff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

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

@media (max-width: 991px) {
    .team-gallery-section {
        padding: 80px 0;
    }

    .gallery-title {
        font-size: 2.25rem;
    }

    .team-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .team-gallery-section {
        padding: 60px 0;
    }

    .gallery-title {
        font-size: 1.875rem;
    }

    .team-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

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

.contact-page-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-page-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.contact-info-card {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-info-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-info-value {
    font-size: 1rem;
    color: #333333;
    margin: 0;
}

.contact-info-value a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value a:hover {
    color: #e63946;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto 60px;
    background: #f8f8f8;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333333;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-input::placeholder {
    color: #999999;
}

.form-check-custom {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-check-custom input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-check-custom label {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.5;
    cursor: pointer;
}

.btn-submit-contact {
    width: 100%;
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: #ffffff;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
}

.btn-submit-contact:hover {
    background: linear-gradient(135deg, #d62828 0%, #c1121f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.5);
}

.contact-map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-map-container iframe {
    display: block;
}

@media (max-width: 991px) {
    .contact-page-section {
        padding: 80px 0;
    }

    .contact-page-title {
        font-size: 2.75rem;
    }

    .contact-form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .contact-page-section {
        padding: 60px 0;
    }

    .contact-page-title {
        font-size: 2.25rem;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-map-container iframe {
        height: 350px;
    }
}

/* Service Hero */
.service-hero {
    padding: 100px 0 60px;
    background: #f8f8f8;
}

.service-hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-hero-text {
    font-size: 1.125rem;
    color: #333333;
    line-height: 1.7;
    max-width: 900px;
}

/* Loan Simulator */
.loan-simulator-section {
    padding: 80px 0;
    background: #ffffff;
}

.simulator-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

.simulator-box {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f8f8;
    padding: 50px;
    border-radius: 20px;
}

.simulator-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.simulator-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
}

.simulator-unit {
    display: block;
    font-size: 0.875rem;
    color: #666666;
    margin-top: 5px;
}

.simulator-results {
    margin-top: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-size: 1rem;
    color: #666666;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.result-monthly {
    color: #e63946;
}

.btn-simulator {
    display: block;
    width: 100%;
    margin-top: 30px;
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: #ffffff;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
}

.btn-simulator:hover {
    background: linear-gradient(135deg, #d62828 0%, #c1121f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.5);
    color: #ffffff;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background: #e8e8e8;
}

.advantages-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.advantages-subtitle {
    font-size: 1.125rem;
    color: #333333;
    margin-bottom: 50px;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
}

.advantage-item i {
    color: #e63946;
    font-size: 1.125rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.advantage-item p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.why-icon i {
    font-size: 1.875rem;
    color: #ffffff;
}

.why-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.why-card-text {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: #ffffff;
}

.stat-card {
    background: #e8e8e8;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.stat-divider {
    width: 60px;
    height: 2px;
    background: #666666;
    margin: 0 auto 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Demand Form Section */
.demand-form-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.demand-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

.demand-form-box {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
}

.btn-submit-demand {
    width: 100%;
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: #ffffff;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
}

.btn-submit-demand:hover {
    background: linear-gradient(135deg, #d62828 0%, #c1121f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.5);
}

@media (max-width: 991px) {
    .service-hero {
        padding: 80px 0 40px;
    }

    .service-hero-title {
        font-size: 2.25rem;
    }

    .simulator-box,
    .demand-form-box {
        padding: 40px 30px;
    }

    .advantages-title,
    .why-choose-title,
    .simulator-title,
    .demand-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .service-hero {
        padding: 60px 0 30px;
    }

    .service-hero-title {
        font-size: 1.875rem;
    }

    .simulator-box,
    .demand-form-box {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* SOUMISSION DE FORMULAIRE */

/* Ajoute dans public/css/style.css */
.alert {
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    font-size: 0.95rem;
    position: relative;
}

.alert i {
    margin-right: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.alert .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

