/* ============================================
   CUSTOM STYLES CONTACT PAGE - LA MINOTIERE
 
   ============================================ */

/* Banner Hero */
.banner {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.85) 100%);
    z-index: 1;
}

.banner .container {
    position: relative;
    z-index: 2;
}

.title-area-data h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-area-data p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.breadcrumb {
    background: rgba(183, 189, 144, 0.2);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    display: inline-flex;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.breadcrumb-item a:hover {
    color: #B7BD90;
}

.breadcrumb-item.active {
    color: #B7BD90;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.6);
    padding: 0 10px;
}

/* Section Contact Info */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-info-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.contact-info-section .section-title span {
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #B7BD90;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-section .section-title h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #2c3e50;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: none;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #B7BD90, #9da67a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.contact-info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(183, 189, 144, 0.3);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B7BD90 0%, #9da67a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

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

.contact-card-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.contact-info-card h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: #B7BD90;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: #9da67a;
}

/* Section Google Maps */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.map-section .section-title span {
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #B7BD90;
    font-weight: 600;
    margin-bottom: 15px;
}

.map-section .section-title h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #2c3e50;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.address-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.address-card:hover {
    box-shadow: 0 15px 40px rgba(183, 189, 144, 0.2);
    transform: translateY(-5px);
}

.address-card .address-icon {
    width: 60px;
    height: 60px;
    background: rgba(183, 189, 144, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-card .address-icon i {
    font-size: 1.8rem;
    color: #B7BD90;
}

.address-card p {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Section CTA Privatisation */
.privatisation-section {
    padding: 80px 0;
    background: white;
}

.privatisation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.privatisation-content h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.privatisation-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #B7BD90;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
}

.contact-btn::before,
.contact-btn::after {
    display: none !important;
}

.contact-btn:hover {
    background: #9da67a;
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 25px rgba(183, 189, 144, 0.4);
}

.contact-btn i {
    margin-right: 10px;
}

/* Section Final CTA */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(183, 189, 144, 0.1);
    border-radius: 50%;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: rgba(183, 189, 144, 0.1);
    border-radius: 50%;
}

.final-cta-section .container {
    position: relative;
    z-index: 1;
}

.final-cta-section h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

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

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #B7BD90;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    outline: none;
    box-shadow: none;
}

.cta-btn::before,
.cta-btn::after {
    display: none !important;
}

.cta-btn:hover {
    background: #9da67a;
    transform: translateY(-3px);
    color: white;
}

.cta-btn.secondary {
    background: white;
    color: #2c3e50;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
}

.cta-btn i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .title-area-data h2 {
        font-size: 2.5rem;
    }

    .contact-info-section .section-title h2,
    .map-section .section-title h2 {
        font-size: 2rem;
    }

    .privatisation-content h2 {
        font-size: 2rem;
    }
}

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

    .title-area-data h2 {
        font-size: 2rem;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

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

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

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .address-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-info-section .section-title h2 {
        font-size: 1.8rem;
    }

    .final-cta-section h2 {
        font-size: 1.8rem;
    }

    .map-container iframe {
        height: 300px;
    }
}
