/* === RESET & BASICS === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
    overflow: hidden;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #0D1B2A;
    background-color: #FFF6F0;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #0D1B2A;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.accent {
    color: #00FFE7;
    position: relative;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #0D1B2A;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #00FFE7;
}

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 27, 42, 0.95);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.logo a:hover {
    color: #00FFE7;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.main-nav a:hover {
    color: #00FFE7;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #00FFE7;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    color: #00FFE7 !important;
    border: 2px solid #00FFE7;
    padding: 8px 20px !important;
    border-radius: 30px;
}

.nav-cta:hover {
    background-color: #00FFE7;
    color: #0D1B2A !important;
}

/* Mobile Menu */
.mobile-menu-toggle {
    position: relative;
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 992px) {
    .menu-icon {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(13, 27, 42, 0.98);
        padding-top: 80px;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .main-nav a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #menu-toggle:checked ~ .main-nav {
        right: 0;
    }

    #menu-toggle:checked ~ .menu-icon .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked ~ .menu-icon .bar:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .menu-icon .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
}

/* === HERO SECTION === */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-image: url('img/wRBwq.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.6));
}

.hero-section .container {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    text-align: center;
}

.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: #00FFE7;
    color: #0D1B2A;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #00FFE7;
}

.cta-button:hover {
    background-color: transparent;
    color: #00FFE7;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 231, 0.3);
}

/* === SECTION STYLES === */
section {
    padding: 100px 0;
    position: relative;
}

.content-box {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* === PRESENTATION SECTION === */
.presentation-section {
    background-color: #FFF6F0;
}

.presentation-section p {
    font-size: 1.1rem;
}

/* === SERVICES SECTION === */
.services-section {
    background-color: #0D1B2A;
    color: #FFFFFF;
}

.services-section h2 {
    color: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    position: relative;
    padding: 20px;
    transition: all 0.3s ease;
}

.diamond {
    position: relative;
    transform: rotate(45deg);
    overflow: hidden;
    width: 280px;
    height: 280px;
    margin: 50px auto;
}

.service-content {
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #FFFFFF;
    color: #0D1B2A;
    text-align: center;
}

.service-image {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    transform: rotate(45deg);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-45deg) scale(1.4);
}

.service-card h3 {
    margin-top: 10px;
    font-size: 1.5rem;
}

.service-card p {
    font-size: 0.9rem;
    margin-top: 10px;
}

/* === WHY US SECTION === */
.why-us-section {
    background-color: #FFF6F0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.circle {
    border-radius: 50%;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    background-color: #0D1B2A;
    color: #FFFFFF;
    text-align: center;
}

.testimonials-section h2 {
    color: #FFFFFF;
}

.testimonial-carousel {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    margin: 20px 0;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: #00FFE7;
}

/* === FAQ SECTION === */
.faq-section {
    background-color: #FFF6F0;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 20px;
    background-color: #FFFFFF;
    color: #0D1B2A;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.faq-toggle:checked + .faq-question {
    background-color: #0D1B2A;
    color: #FFFFFF;
}

.faq-toggle:checked + .faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #FFFFFF;
    transition: all 0.5s ease;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 20px;
}

/* === CONTACT SECTION === */
.contact-section {
    background-color: #0D1B2A;
    color: #FFFFFF;
}

.contact-section h2 {
    color: #FFFFFF;
}

.contact-form-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #0D1B2A;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #B0B0B0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00FFE7;
    box-shadow: 0 0 0 2px rgba(0, 255, 231, 0.2);
    outline: none;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 8px;
}

.policy-checkbox {
    margin-top: 10px;
}

.policy-checkbox a {
    color: #0D1B2A;
    text-decoration: underline;
}

.policy-checkbox a:hover {
    color: #00FFE7;
}

.submit-button {
    background-color: #0D1B2A;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-button:hover {
    background-color: #00FFE7;
    color: #0D1B2A;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 231, 0.3);
}

/* === CONTACT INFO SECTION === */
.contact-info-section {
    background-color: #FFF6F0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.contact-info-item {
    text-align: center;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container {
    height: 450px;
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* === FOOTER === */
.site-footer {
    background-color: #0D1B2A;
    color: #FFFFFF;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo a {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #B0B0B0;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    margin-right: 30px;
}

.footer-column h4 {
    color: #FFFFFF;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #00FFE7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #B0B0B0;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #00FFE7;
    padding-left: 5px;
}

.footer-contact h4 {
    color: #FFFFFF;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #00FFE7;
}

.footer-contact p {
    color: #B0B0B0;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #B0B0B0;
}

.footer-contact a:hover {
    color: #00FFE7;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: 0.9rem;
    color: #B0B0B0;
    margin-bottom: 0;
}

/* === COOKIE POPUP === */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #0D1B2A;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: #FFFFFF;
}

.cookie-content h3 {
    color: #FFFFFF;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    margin-right: 20px;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #00FFE7;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #00FFE7;
    color: #0D1B2A;
}

.cookie-btn.decline {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.cookie-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* === POLICY PAGES === */
.policy-page {
    padding: 150px 0 100px;
}

.policy-container {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.policy-container h1 {
    margin-bottom: 30px;
    text-align: center;
}

.policy-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
}

.policy-container p,
.policy-container ul {
    margin-bottom: 20px;
}

.policy-container ul {
    padding-left: 20px;
}

.policy-container ul li {
    margin-bottom: 10px;
}

/* === THANK YOU PAGE (MERCI) === */
.thank-you-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF6F0;
}

.thank-you-container {
    background-color: #FFFFFF;
    border: 2px solid #0D1B2A;
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-container h1 {
    margin-bottom: 20px;
}

.thank-you-container p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.back-button {
    display: inline-block;
    background-color: #0D1B2A;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #00FFE7;
    color: #0D1B2A;
    transform: translateY(-5px);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .footer-column {
        width: 50%;
        margin-bottom: 30px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .policy-container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .footer-column {
        width: 100%;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .diamond {
        width: 250px;
        height: 250px;
    }
    
    .service-image {
        width: 120px;
        height: 120px;
    }
} 