/* 
   Domain - Site d'audit financier
   Color Palette:
   - #001219 (ночной черный)
   - #0a9396 (яркий ментоловый)
   - #e9d8a6 (мягкий песочный)
   - #94d2bd (дымчатый мятный)
   - #ee9b00 (сочный янтарный)
*/

/* Base Styles */
:root {
    --color-dark: #001219;
    --color-teal: #0a9396;
    --color-sand: #e9d8a6;
    --color-mint: #94d2bd;
    --color-amber: #ee9b00;
    --color-white: #ffffff;
    --color-graphite: #333333;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 18, 25, 0.1);
    --glow: 0 0 15px rgba(10, 147, 150, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--color-graphite);
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-teal) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--color-teal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-amber);
}

section {
    padding: 80px 0;
    background-color: var(--color-white);
}

section:nth-child(odd) {
    background-color: #f8f8f8;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-dark);
    position: relative;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--color-amber);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Button Styles */
.cta-button, .submit-button, .type-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-amber);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:hover, .submit-button:hover, .type-button:hover {
    background-color: var(--color-teal);
    box-shadow: var(--glow);
    transform: translateY(-3px);
}

.type-button {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 20px;
    z-index: 9999;
    display: none;
    justify-content: center;
    box-shadow: var(--shadow);
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.cookie-button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-button.accept {
    background-color: var(--color-amber);
    color: var(--color-dark);
}

.cookie-button.decline {
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.cookie-button:hover {
    transform: translateY(-2px);
}

/* Header Styles */
.site-header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-dark);
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: lowercase;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-list a {
    color: var(--color-white);
    font-weight: 500;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover {
    border-bottom: 2px solid var(--color-amber);
    color: var(--color-amber);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    text-decoration: none;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition);
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--color-dark);
    padding: 20px;
    z-index: 99;
    box-shadow: var(--shadow);
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    margin-bottom: 15px;
}

.mobile-nav-list a {
    color: var(--color-white);
    font-weight: 500;
    display: block;
    padding: 10px;
    border-left: 3px solid transparent;
}

.mobile-nav-list a:hover {
    border-left: 3px solid var(--color-amber);
    color: var(--color-amber);
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    background: linear-gradient(135deg, rgba(0, 18, 25, 0.9) 0%, rgba(10, 147, 150, 0.8) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./img/HPiHOk.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: blur(3px);
}

.hero-content {
    text-align: center;
    animation: fadeIn 1s ease;
}

.company-name {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-white);
    text-transform: lowercase;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--color-sand);
}

/* About Section */
.about-section {
    background-color: var(--color-white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.section-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
}

.advantage-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.icon-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* Audit Types Section */
.audit-types-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.audit-type {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.audit-type:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
}

.audit-type h3 {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 15px 20px;
    text-align: center;
    margin-bottom: 0;
}

.audit-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.audit-type p {
    padding: 20px;
}

.audit-type .type-button {
    display: block;
    width: 80%;
    margin: 0 auto 20px;
    text-align: center;
}

/* Work Stages Section */
.stages-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.stages-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: var(--color-mint);
    z-index: -1;
}

.stage {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 20px;
}

.stage-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow);
    border: 2px solid var(--color-amber);
}

.stage-content {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 20px;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--color-mint);
}

.stage-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.stage-number:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.stage-content h3 {
    color: var(--color-dark);
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.testimonial-content::before {
    content: '"';
    font-size: 60px;
    line-height: 1;
    position: absolute;
    top: -20px;
    left: -10px;
    color: var(--color-sand);
    opacity: 0.5;
}

.testimonial-author {
    text-align: right;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background-color: var(--color-white);
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-form {
    flex: 1;
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
}

.contact-info {
    flex: 1;
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Footer Styles */
.site-footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    color: var(--color-amber);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--color-mint);
}

.footer-section a:hover {
    color: var(--color-amber);
    text-decoration: underline;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icons dans le footer */
.address-icon, .phone-icon, .email-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--color-amber);
    border-radius: 50%;
    position: relative;
}

.address-icon::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-dark);
}

.address-icon::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 9px;
    width: 2px;
    height: 6px;
    background-color: var(--color-dark);
}

.phone-icon::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    border: 2px solid var(--color-dark);
    border-left: none;
    border-top: none;
    transform: rotate(45deg);
}

.email-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 5px;
    width: 10px;
    height: 8px;
    border: 2px solid var(--color-dark);
    border-radius: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

/* Policy Pages */
.policy-section {
    padding: 120px 0 80px;
    background-color: var(--color-white);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.policy-title {
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.policy-date {
    text-align: center;
    color: var(--color-graphite);
    font-style: italic;
    margin-bottom: 40px;
}

.policy-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.policy-text h2 {
    color: var(--color-teal);
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.policy-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-text ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

.policy-text ul li {
    margin-bottom: 10px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audit-types-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stages-container {
        flex-wrap: wrap;
    }
    
    .stages-container::before {
        display: none;
    }
    
    .stage {
        flex-basis: 45%;
        margin-bottom: 30px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-wrap: wrap;
    }
    
    .footer-section {
        flex-basis: 45%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .advantages-grid,
    .audit-types-container {
        grid-template-columns: 1fr;
    }
    
    .stage {
        flex-basis: 100%;
    }
    
    .footer-section {
        flex-basis: 100%;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        min-height: 500px;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
} 