/* 
   FinNova Audit - Main Stylesheet
   Color Palette:
   - Main Background: #f3f0ec (warm milk)
   - Accent: #FF715B (salmon-red)
   - Secondary: #3D348B (indigo with violet tint)
   - Text: #1C1C1E (deep graphite)
   - Background Elements: #E6E8F2 (pale blue)
*/

/* ====== RESET & BASICS ====== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1C1C1E;
    background-color: #f3f0ec;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #3D348B;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover, a:focus {
    color: #FF715B;
    text-decoration: underline;
}

ul {
    list-style-type: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FF715B, #3D348B);
    margin: 20px auto 40px;
    border-radius: 2px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.3;
    color: #1C1C1E;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    position: relative;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 20px;
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FF715B, #3D348B);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 113, 91, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, #FF8D7E, #4D44AB);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 113, 91, 0.4);
    text-decoration: none;
}

.btn-secondary {
    background-color: #E6E8F2;
    color: #3D348B;
    box-shadow: 0 4px 15px rgba(61, 52, 139, 0.2);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #D8DBEC;
    color: #3D348B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 52, 139, 0.3);
    text-decoration: none;
}

.btn-cookie {
    background-color: #3D348B;
    color: #fff;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-cookie:hover, .btn-cookie:focus {
    background-color: #4D44AB;
    color: #fff;
}

/* ====== HEADER ====== */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    font-weight: 600;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FF715B;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav li.active a::after {
    width: 100%;
}

.phone-link {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.phone-link svg {
    margin-right: 8px;
}

/* Mobile Menu Toggle (CSS-only) */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 100;
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #3D348B;
    transition: all 0.3s ease;
}

/* ====== HERO SECTION ====== */
.hero-section {
    background-color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ====== ABOUT SECTION ====== */
.about-section {
    background-color: #f3f0ec;
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.about-values {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    margin: 15px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-bottom: 20px;
}

/* ====== BENEFITS SECTION ====== */
.benefits-section {
    background-color: #E6E8F2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
}

/* ====== SERVICES SECTION ====== */
.services-section {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #f3f0ec;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    background-color: #3D348B;
    color: #fff;
    box-shadow: 0 15px 40px rgba(61, 52, 139, 0.2);
}

.service-card.featured h3,
.service-card.featured .service-price {
    color: #fff;
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #FF715B, #FF8D7E);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 113, 91, 0.3);
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3D348B;
    margin-bottom: 20px;
}

.service-features {
    margin: 25px 0;
    list-style-type: disc;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 8px;
}

.service-card .btn {
    margin-top: auto;
}

/* ====== PROCESS SECTION ====== */
.process-section {
    background-color: #f3f0ec;
    background-image: url('../img/ZjGJGj.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: soft-light;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(243, 240, 236, 0.9);
    z-index: 1;
}

.process-section .container {
    position: relative;
    z-index: 2;
}

.process-steps {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35px;
    width: 4px;
    background: linear-gradient(to bottom, #FF715B, #3D348B);
    border-radius: 4px;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF715B, #3D348B);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    box-shadow: 0 10px 20px rgba(61, 52, 139, 0.2);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ====== TESTIMONIALS SECTION ====== */
.testimonials-section {
    background-color: #E6E8F2;
    background-image: url('../img/sNzww3.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(230, 232, 242, 0.85);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding: 0 20px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 5rem;
    color: #FF715B;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E6E8F2;
}

.author-name {
    font-weight: 700;
    color: #3D348B;
}

.author-company {
    font-size: 0.9rem;
    color: #777;
}

/* ====== CONTACT SECTION ====== */
.contact-section {
    background-color: #fff;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.contact-form {
    flex: 1;
    min-width: 230px;
    background-color: #f3f0ec;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info {
    flex: 1;
    min-width: 230px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #3D348B;
    box-shadow: 0 0 0 3px rgba(61, 52, 139, 0.2);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
    margin-right: 10px;
}

.checkbox-group label {
    font-weight: normal;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-icon {
    margin-right: 15px;
    margin-top: 5px;
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ====== FOOTER ====== */
.site-footer {
    background-color: #1C1C1E;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info {
    grid-column: span 2;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-contact,
.footer-links,
.footer-legal {
    min-width: 170px;
}

.footer-content h3 {
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-content h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #FF715B;
    bottom: -10px;
    left: 0;
    border-radius: 3px;
}

.footer-content ul li {
    margin-bottom: 12px;
}

.footer-content ul a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-content ul a:hover {
    color: #FF715B;
    text-decoration: none;
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-item svg {
    margin-right: 10px;
    margin-top: 3px;
}

.contact-item a {
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* ====== COOKIE POPUP ====== */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(28, 28, 30, 0.95);
    color: #fff;
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.cookie-content a {
    color: #FF715B;
}

/* ====== THANK YOU PAGE ====== */
.thank-you-section {
    background-color: #f3f0ec;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.thank-you-icon {
    margin-bottom: 25px;
}

.thank-you-icon svg {
    fill: #3D348B;
}

.thank-you-details {
    margin: 30px 0;
    padding: 20px;
    background-color: #E6E8F2;
    border-radius: 10px;
    text-align: left;
}

.thank-you-details ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.thank-you-details li {
    margin-bottom: 10px;
}

/* ====== LEGAL PAGES ====== */
.legal-section {
    background-color: #f3f0ec;
    padding: 80px 0;
}

.legal-section h1 {
    text-align: center;
}

.legal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.6rem;
    text-align: left;
    margin-top: 40px;
}

.legal-content ul, 
.legal-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-content ul {
    list-style-type: disc;
}

.legal-content ol {
    list-style-type: decimal;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-footer {
    text-align: center;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

.btn-primary:hover {
    animation: pulse 1.5s infinite;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-content {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 20px;
        margin-right: 0;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .header-contact {
        display: none;
    }
    
    /* Mobile Menu */
    .menu-icon {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 99;
        padding: 100px 40px 40px;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 0 0 20px 0;
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: 15px;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .value-item, 
    .benefit-card, 
    .service-card,
    .testimonial-card {
        min-width: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-column: span 1;
    }
} 