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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #dbc275;
    text-decoration: none;
    letter-spacing: 0.1em;
}

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

.nav-links a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1f07a8;
}

/* Menu hamburger */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 2px;
    background: #dbc275;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Menu mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mobile-nav-link {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.mobile-nav-link:hover {
    color: #dbc275;
    transform: translateY(-5px);
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #dbc275;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-nav-link:hover::after {
    width: 60px;
}

body.menu-open {
    overflow: hidden;
}

/* Page Header */
.page-header {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(25, 74, 155, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(73, 46, 137, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container {
    max-width: 1600px;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #dbc275 70%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #94a3b8;
    line-height: 1.7;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(20px);
}

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

/* Contact Info */

/* Empêcher la détection automatique des numéros de téléphone */
a[href^="tel:"] {
    color: #dbc275 !important;
    text-decoration: none !important;
}

/* Ou si le numéro n'est pas dans un lien, empêcher la détection */
.phone-number {
    color: #dbc275 !important;
    text-decoration: none !important;
    -webkit-text-size-adjust: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}
.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #dbc275;
}

.contact-info p {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    border-color: #dbc275;
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    font-size: 2rem;
    margin-top: 0.25rem;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #dbc275;
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-note {
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
}

.urgency-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(219, 194, 117, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(4, 3, 35, 0.2);
}

.urgency-icon {
    font-size: 1.5rem;
    margin-top: 0.1rem;
}

.urgency-note h4 {
    color: #dbc275;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.urgency-note p {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dbc275;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(2, 18, 80, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1e293b;
    color: #ffffff;
}

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

/* Checkbox Groups */
.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 1px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #dbc275;
    border-color: #dbc275;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.privacy-link {
    color: #dbc275;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #dbc275;
}

/* Submit Button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #dbc275 0%, #dbc275 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(219, 194, 117, 0.3);
}

.submit-btn:disabled {
    cursor: not-allowed;
}

.btn-icon {
    font-size: 1.1rem;
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1rem;
}

.form-success p {
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.success-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #dbc275;
    border: 2px solid #dbc275;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-btn:hover {
    background: #dbc275;
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #dbc275;
}

.section-header p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.7;
    font-weight: 300;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #dbc275;
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #dbc275;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #e2e8f0;
    line-height: 1.6;
    font-weight: 300;
}

/* Footer */
footer {
    background: rgba(15, 23, 42, 0.95);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #dbc275;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.footer-content p {
    color: #94a3b8;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(6, 182, 212, 0.2);
    color: #202a57;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 300;
}

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

.copyright {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 300;
}

/* Styles reCAPTCHA */
.recaptcha-group {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.g-recaptcha {
    transform: scale(0.95);
    transform-origin: center;
}

/* Responsive pour reCAPTCHA */
@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.8);
    }
}

/* Style pour les messages d'erreur du captcha */
.captcha-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #ef4444;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    nav {
        gap: 2rem;
    }
}

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

    .page-header {
        padding: 6rem 1rem 3rem;
    }

    .contact-section,
    .faq-section {
        padding: 3rem 1rem;
    }

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

    .contact-methods {
        gap: 1.5rem;
    }

    .contact-method {
        padding: 1.25rem;
    }

    .urgency-note {
        padding: 1.25rem;
    }

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

    .faq-question {
        padding: 1.25rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
    }

    footer {
        padding: 2rem 1rem 1.5rem;
    }

    .social-links {
        gap: 0.75rem;
    }

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

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

    .submit-btn {
        padding: 0.875rem 1.5rem;
    }

    .urgency-note {
        flex-direction: column;
        text-align: center;
    }
}

form,
form *,
.submit-btn,
.checkbox-label,
textarea,
input,
label {
    font-family: 'Georgia', 'Times New Roman', serif;
}
