/*
* FinoAudit GmbH - Main Stylesheet
* Author: Web Development Team
* Version: 1.0
*/

/* === Reset & Base Styles === */
:root {
    --primary-bg: #0A0A23;
    --accent-gold: #FFD700;
    --accent-teal: #2FE6DE;
    --text-primary: #F5F5F5;
    --text-secondary: #C1C1C1;
    --button-gradient: linear-gradient(to right, #FF416C, #FF4B2B);
    --container-width: 1200px;
    --transition: all 0.3s ease-in-out;
    --error-color: #FF4B2B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    transform: translateX(-50%);
}

section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

/* === Buttons === */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--button-gradient);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 65, 108, 0.6);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    transform: translateY(-3px);
}

/* === Header === */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 35, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    display: block;
}

.logo-svg {
    display: block;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
}

.main-nav .nav-list li {
    margin-left: 1.5rem;
}

.main-nav .nav-list li a {
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.5rem;
    position: relative;
}

.main-nav .nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-teal);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.main-nav .nav-list li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.nav-icon, .nav-icon::before, .nav-icon::after {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

.nav-icon {
    top: 50%;
    transform: translateY(-50%);
}

.nav-icon::before {
    content: '';
    top: -8px;
}

.nav-icon::after {
    content: '';
    bottom: -8px;
}

@media (max-width: 992px) {
    .menu-icon {
        display: block;
    }
    
    .main-nav .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: rgba(10, 10, 35, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .main-nav .nav-list li {
        margin: 1.5rem 0;
    }
    
    .menu-toggle:checked ~ .nav-list {
        left: 0;
    }
    
    .menu-toggle:checked + .menu-icon .nav-icon {
        background-color: transparent;
    }
    
    .menu-toggle:checked + .menu-icon .nav-icon::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .menu-toggle:checked + .menu-icon .nav-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
}

/* === Hero Section === */
.hero-section {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, rgba(10, 10, 35, 0.9), rgba(10, 10, 35, 0.7)), url('img/jaxza7.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    animation: fadeInUp 1.3s ease-out;
}

.hero-content .btn-primary {
    animation: fadeInUp 1.6s ease-out;
}

@media (min-width: 992px) {
    .hero-section .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .hero-image {
        width: 45%;
        animation: fadeInRight 1.5s ease-out;
    }
    
    .hero-content {
        width: 50%;
        margin-bottom: 0;
    }
}

/* === About Section === */
.about-section {
    background-color: rgba(15, 15, 40, 0.8);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

@media (min-width: 992px) {
    .about-content {
        flex-direction: row;
        align-items: center;
    }
    
    .about-text {
        width: 50%;
    }
    
    .about-image {
        width: 45%;
    }
}

/* === Services Section === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(20, 20, 50, 0.7);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent-gold), var(--accent-teal));
    transform: translateY(-100%);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-icon {
    margin: 0 auto 1.5rem;
    width: 64px;
    height: 64px;
}

/* === Benefits Section === */
.benefits-section {
    background-color: rgba(15, 15, 40, 0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin: 0 auto 1.5rem;
    width: 48px;
    height: 48px;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

/* === Testimonials Section === */
.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial {
    background-color: rgba(20, 20, 50, 0.7);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 215, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.author-name {
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 0.3rem;
}

.author-position {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .testimonials-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === FAQ Section === */
.faq-item {
    background-color: rgba(20, 20, 50, 0.7);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    padding-right: 2rem;
    transition: var(--transition);
}

.faq-toggle {
    position: absolute;
    right: 1.5rem;
    width: 18px;
    height: 18px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.faq-toggle::before {
    width: 18px;
    height: 2px;
    top: 8px;
}

.faq-toggle::after {
    width: 2px;
    height: 18px;
    left: 8px;
    top: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-toggle::after {
    opacity: 0;
}

.faq-item.active .faq-question h3 {
    color: var(--accent-teal);
}

.faq-answer p {
    color: var(--text-secondary);
}

/* === Contact Section === */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    border: 1px solid rgba(47, 230, 222, 0.3);
    background-color: rgba(20, 20, 50, 0.8);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 2px rgba(47, 230, 222, 0.2);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin-right: 0.8rem;
    margin-top: 0.3rem;
}

.checkbox-container label {
    font-weight: normal;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-icon {
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.info-text h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Form Errors Styling */
.form-errors {
    background-color: rgba(255, 75, 43, 0.2);
    border-left: 4px solid var(--error-color);
    border-radius: 4px;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    animation: fadeIn 0.5s ease-in-out;
}

.form-errors ul {
    margin: 0;
    padding: 0;
    list-style-type: disc;
    padding-left: 1.5rem;
}

.form-errors li {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-errors li:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* === Footer === */
.main-footer {
    background-color: rgba(5, 5, 15, 0.95);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-description {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    max-width: 400px;
}

.footer-column h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-list svg {
    margin-right: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 3fr;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* === Thank You Section === */
.thank-you-section {
    padding: 10rem 0 6rem;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
    animation: pulse 2s infinite;
}

.thank-you-action {
    margin-top: 3rem;
}

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(15, 15, 40, 0.95);
    padding: 1rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background: var(--button-gradient);
    color: var(--text-primary);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cookie:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 65, 108, 0.4);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .cookie-content p {
        margin-bottom: 0;
        margin-right: 2rem;
        text-align: left;
    }
}

/* === Legal Pages === */
.legal-section {
    padding: 10rem 0 6rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.legal-content h3 {
    margin-top: 1.5rem;
    color: var(--accent-teal);
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
}

.legal-content a {
    text-decoration: underline;
}

.legal-back {
    margin-top: 3rem;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}



/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* === Utility Classes === */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.text-gold {
    color: var(--accent-gold);
}

.text-teal {
    color: var(--accent-teal);
} 