/* 
** AUDIT FINANCIER SITE STYLE
** domain.com
** Palette: 
** - Primary: #00FFE5 (Electric Turquoise)
** - Secondary: #1E1B3A (Dark Purple-Blue)
** - Accent: #FFD500 (Neon Yellow)
** - Background: #FFFAF0 (Ivory)
** - Text: #2E2E2E (Graphite)
*/

/* ----- RESET & BASE ----- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #00FFE5;
    --color-secondary: #1E1B3A;
    --color-accent: #FFD500;
    --color-bg: #FFFAF0;
    --color-text: #2E2E2E;
    --font-main: 'Montserrat', Arial, sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* ----- CONTAINER ----- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

.btn--primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn--secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid #fff;
    font-weight: 700;
}

.btn--secondary:hover {
    background-color: #fff;
    color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn--accent {
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

.btn--accent:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ----- HEADER ----- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 250, 240, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo__img {
    height: 4rem;
    width: auto;
}

.nav__list {
    display: flex;
    gap: 3rem;
}

.nav__link {
    font-weight: 500;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 2.1rem;
    width: 3rem;
    cursor: pointer;
}

.nav-toggle__line {
    width: 100%;
    height: 3px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

/* ----- HERO SECTION ----- */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(to bottom right, rgba(30, 27, 58, 0.8), rgba(0, 0, 0, 0.5)), url('../img/9hkEYI.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-bg);
    padding-top: 8rem;
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero__text {
    margin-bottom: 4rem;
    font-size: 1.8rem;
}

.hero__buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* ----- ADVANTAGES SECTION ----- */
.advantages {
    padding: 10rem 0;
}

.section-title {
    text-align: center;
    font-size: 3.6rem;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 3px;
    background-color: var(--color-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto 6rem;
    color: #555;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.advantage {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.advantage:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.advantage__icon {
    font-size: 5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.advantage__title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.advantage__text {
    font-size: 1.6rem;
}

/* ----- SERVICES SECTION ----- */
.services {
    padding: 10rem 0;
    background-color: var(--color-secondary);
    color: white;
}

.services .section-title {
    color: white;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.service {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4rem 3rem;
    text-align: center;
    transition: var(--transition);
}

.service:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.service__icon {
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: var(--color-secondary);
    font-size: 3.6rem;
    border-radius: 50%;
    margin: 0 auto 2.5rem;
}

.service__title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.service__text {
    margin-bottom: 3rem;
    font-size: 1.6rem;
    opacity: 0.9;
}

/* ----- WHY CHOOSE US SECTION ----- */
.why-us {
    padding: 10rem 0;
}

.why-us__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-us__image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.why-us__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.why-us__item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.why-us__icon {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    background-color: rgba(0, 255, 229, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 2.4rem;
}

.why-us__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

/* ----- TESTIMONIALS SECTION ----- */
.testimonials {
    padding: 10rem 0;
    background-color: var(--color-secondary);
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials__slider {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.testimonials__slides {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    flex: 0 0 100%;
    padding: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.testimonial__text {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial__author {
    font-weight: 700;
    font-size: 1.8rem;
}

.testimonial__role {
    color: var(--color-primary);
    font-size: 1.6rem;
    margin-top: 0.5rem;
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
}

.testimonials__dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.testimonials__dot.active {
    background-color: var(--color-primary);
}

/* ----- CONTACT FORM SECTION ----- */
.contact {
    padding: 10rem 0;
    background-image: linear-gradient(to bottom right, rgba(30, 27, 58, 0.9), rgba(0, 0, 0, 0.8)), url('../img/IU5NwH.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact__title {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.contact__text {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact__form {
    background-color: white;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form__title {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: var(--color-secondary);
    text-align: center;
}

.form__group {
    margin-bottom: 2rem;
}

.form__label {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--color-text);
}

.form__input,
.form__select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1.6rem;
    transition: var(--transition);
}

.form__input:focus,
.form__select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 229, 0.2);
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form__checkbox input {
    margin-top: 0.5rem;
}

.form__checkbox label {
    font-size: 1.4rem;
    color: #555;
}

.form__checkbox a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.form__button {
    width: 100%;
    margin-top: 2rem;
}

/* ----- FOOTER ----- */
.footer {
    background-color: var(--color-secondary);
    color: white;
    padding: 6rem 0 2rem;
}

.footer__wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 4rem;
}

.footer__logo {
    margin-bottom: 2rem;
}

.footer__logo img {
    height: 4rem;
    width: auto;
}

.footer__description {
    opacity: 0.8;
    max-width: 300px;
}

.footer__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 4rem;
    height: 2px;
    background-color: var(--color-primary);
}

.footer__address p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer__address a:hover {
    color: var(--color-primary);
}

.footer__list li {
    margin-bottom: 1rem;
}

.footer__list a {
    opacity: 0.8;
}

.footer__list a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 1.4rem;
    opacity: 0.7;
}

/* ----- COOKIE BANNER ----- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 27, 58, 0.95);
    color: white;
    padding: 2rem;
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    flex: 1;
    margin-right: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* ----- POLICY PAGES ----- */
.policy {
    padding: 12rem 0 6rem;
}

.policy__title {
    font-size: 3.6rem;
    margin-bottom: 3rem;
    color: var(--color-secondary);
    text-align: center;
}

.policy__content {
    background-color: white;
    padding: 4rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.policy__date {
    text-align: right;
    font-style: italic;
    margin-bottom: 3rem;
    color: #777;
}

.policy__subtitle {
    font-size: 2.4rem;
    margin: 3rem 0 1.5rem;
    color: var(--color-secondary);
}

.policy__content p,
.policy__content li {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.policy__content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.policy__content a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.policy__content a:hover {
    color: var(--color-primary);
}

/* ----- THANK YOU PAGE ----- */
.thank-you {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0;
    text-align: center;
}

.thank-you__content {
    max-width: 600px;
    margin: 0 auto;
    padding: 5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.thank-you__icon {
    width: 8rem;
    height: 8rem;
    background-color: rgba(0, 255, 229, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin: 0 auto 3rem;
}

.thank-you__title {
    font-size: 3.6rem;
    margin-bottom: 2rem;
    color: var(--color-secondary);
}

.thank-you__text {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.thank-you__button {
    margin-top: 2rem;
}

/* ----- RESPONSIVE STYLES ----- */
@media (max-width: 1024px) {
    html {
        font-size: 58%;
    }
    
    .advantages__grid,
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us__wrapper,
    .contact__wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .why-us__image {
        order: -1;
    }
    
    .footer__wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg);
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }
    
    .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero__title {
        font-size: 4rem;
    }
    
    .hero__subtitle {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .advantages__grid,
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cookie-content p {
        margin-right: 0;
    }
    
    .footer__wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .policy__content {
        padding: 2.5rem;
    }
    
    .policy__title {
        font-size: 2.8rem;
    }
    
    .policy__subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 3.2rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact__form {
        padding: 3rem 2rem;
    }
    
    .form__title {
        font-size: 2.2rem;
    }
    
    .thank-you__content {
        padding: 3rem;
    }
    
    .thank-you__title {
        font-size: 2.8rem;
    }
} 