/* SAV Contact Form CSS - Soniferba */

:root {
    --primary-color: #8B0000;
    --primary-dark: #660000;
    --primary-light: #ff9999;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #444444;
    --text-color: #333333;
    --border-radius: 8px;
    --box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, rgba(139,0,0,0.85) 0%, rgba(0,0,0,0.9) 100%);
    color: var(--white);
    padding: 120px 0 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -20px 50px -20px rgba(0, 0, 0, 0.4);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/boutiquesoniferba-min-_2_-_1__11.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    filter: blur(2px);
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    z-index: 0;
}

.page-banner .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.page-banner h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

.page-banner h1 .text-shadow {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3), 0 5px 8px rgba(0, 0, 0, 0.2);
    display: block;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.page-banner h1 .highlight {
    color: #ffffff;
    position: relative;
    display: inline-block;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.4);
    font-size: 1.1em;
    background: linear-gradient(135deg, #8B0000 0%, #cc0000 100%);
    padding: 5px 15px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-banner h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
    border-radius: 2px;
}

.page-banner p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 20px;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

/* Page Banner - Éléments additionnels */
.hero-badges {
    display: flex;
    justify-content: left;
    gap: 20px;
    margin: 30px auto;
}

.badge {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.badge:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    font-size: 1.3rem;
    margin-right: 10px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 15px rgba(139, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}



.hero-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.hero-cta:hover i {
    transform: translateX(5px);
}

/* SAV Introduction Section */
.sav-intro {
    padding: 80px 0;
    background-color: var(--white);
}

.sav-intro-grid {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.sav-intro-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
}

.sav-intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.sav-intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
}

.sav-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.sav-benefit {
    background: var(--light-gray);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.sav-benefit i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sav-benefit h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.sav-benefit p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--dark-gray);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23f8f9fa" fill-opacity="0.4" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,208C672,213,768,203,864,181.3C960,160,1056,128,1152,117.3C1248,107,1344,117,1392,122.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"%3E%3C/path%3E%3C/svg%3E');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: 0.2;
    z-index: 0;
}

.form-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

#sav-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

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

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.form-group.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

.form-group.form-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-submit {
    margin-top: 20px;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    width: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
}

.submit-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button i {
    font-size: 1.1rem;
}

/* Form Status Messages */
#form-status {
    margin-top: 20px;
}

.success-message,
.error-message {
    padding: 15px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.success-message {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.error-message {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.success-message i,
.error-message i {
    font-size: 1.2rem;
}

/* Emergency Contact Section */
.emergency-contact {
    padding: 60px 0;
    background-color: var(--white);
}

.emergency-card {
    background: linear-gradient(45deg, #f9f9f9, #ffffff);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    border-left: 5px solid var(--primary-color);
}

.emergency-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: rgba(139, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.emergency-content {
    flex-grow: 1;
}

.emergency-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.emergency-content p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.emergency-phone:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.emergency-phone i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .page-banner {
        padding: 100px 0 130px;
    }
    
    .page-banner h1 {
        font-size: 3.4rem;
    }
    
    .page-banner p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .page-banner {
        padding: 90px 0 110px;
    }
    
    .page-banner h1 {
        font-size: 3rem;
    }
    
    .page-banner p {
        font-size: 1.2rem;
    }
    
    .hero-badges {
        gap: 15px;
        margin: 25px auto;
    }
    
    .badge {
        padding: 8px 15px;
    }
    
    .badge-icon {
        font-size: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        padding: 12px 25px;
        font-size: 1rem;
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 80px 0 100px;
        min-height: 400px;
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .page-banner p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: left;
        gap: 15px;
        margin: 20px auto;
    }
    
    .badge {
        width: 80%;
        padding: 8px 15px;
    }
    
    .badge-icon {
        font-size: 1.1rem;
        margin-right: 8px;
    }
    
    .badge-text {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        padding: 12px 25px;
        font-size: 1rem;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .page-banner {
        padding: 70px 0 90px;
        min-height: 350px;
    }
    
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .hero-badges {
        margin: 15px auto;
    }
    
    .badge {
        width: 90%;
        padding: 8px 12px;
    }
    
    .badge-icon {
        font-size: 1rem;
    }
    
    .badge-text {
        font-size: 0.85rem;
    }
    
    .hero-cta {
        padding: 10px 20px;
        font-size: 0.95rem;
        margin-top: 15px;
    }
    
    .sav-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .submit-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .emergency-phone {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 60px 0 80px;
        min-height: 320px;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .page-banner p {
        font-size: 0.95rem;
    }
    
    .sav-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .submit-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .emergency-phone {
        font-size: 1.1rem;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #191919;
    color: #f5f5f5;
    padding: 60px 0 30px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: right;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

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

.footer-column ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.footer-column ul a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.footer-column ul a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-list i {
    color: var(--primary-light);
    margin-right: 12px;
    margin-top: 3px;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #fff;
}

.hours-list li {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

.day {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3px;
}

.time {
    color: rgba(255, 255, 255, 0.7);
}

.closed .time {
    color: #ff6b6b;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-tagline {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .main-footer {
        padding: 40px 0 20px;
    }
} 