/* Main styles for FinAudit SA website */

:root {
    --dark-blue: #0a2240;
    --bright-orange: #ff7a00;
    --light-gray: #f0f0f0;
    --bright-green: #00b050;
    --text-color: #333333;
    --gradient-bg: linear-gradient(135deg, var(--dark-blue), #184272);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--gradient-bg);
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 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 {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 150px;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: var(--bright-orange);
}

.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

button.cta-button {
    background-color: var(--bright-orange);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

button.cta-button:hover {
    background-color: #ff9933;
    transform: translateY(-2px);
}

.section {
    padding: 80px 0;
    scroll-margin-top: 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-blue);
}

.section-title h2 {
    font-size: 32px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--bright-orange);
    transform: translateX(-50%);
}

/* Link styles */
a {
    color: var(--bright-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--bright-orange);
}

/* Cookie consent styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-blue);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    display: none;
}

.cookie-consent.active {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-consent button {
    background-color: var(--bright-green);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 15px;
}

/* Footer styles */
footer {
    background: var(--gradient-bg);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    margin-right: 30px;
    margin-bottom: 20px;
    min-width: 200px;
}

.footer-section:last-child {
    margin-right: 0;
}

.footer-section h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--bright-orange);
}

.footer-section.links ul {
    list-style: none;
}

.footer-section.links ul li {
    margin-bottom: 10px;
}

.footer-section.links ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section.links ul li a:hover {
    color: var(--bright-orange);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.icon {
    margin-right: 10px;
    font-style: normal;
}


/* Services section styles */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-card {
    flex: 1;
    min-width: 200px;
    background: white;
    margin: 15px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.service-icon {
    font-size: 50px;
    color: var(--bright-orange);
    margin-bottom: 20px;
}

/* Why Us section styles */
.why-us-item {
    flex: 1;
    min-width: 200px;
    margin: 15px;
    padding: 20px;
}

.why-us-item h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

/* Testimonials styles */
.testimonial-card {
    flex: 1;
    min-width: 200px;
    margin: 15px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-quote {
    font-size: 50px;
    color: var(--bright-orange);
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.2;
}

.testimonial-text {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info {
    margin-left: 15px;
}

.testimonial-author-info h4 {
    margin: 0;
    color: var(--dark-blue);
}

.testimonial-author-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Team section styles */
.team-member {
    width: 280px;
    margin: 20px;
    text-align: center;
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--dark-blue);
}

.team-member p:nth-child(3) {
    color: var(--bright-orange);
    font-weight: bold;
    margin-bottom: 10px;
}

.team-member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form styles */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form-container input,
.contact-form-container select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 5px;
    margin-right: 10px;
    width: auto;
}

/* Legal content styles */
.legal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.legal-content h2 {
    color: var(--dark-blue);
    margin: 20px 0 10px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.legal-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--light-gray);
    border-radius: 20px;
    color: var(--dark-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-link:hover {
    background-color: var(--bright-orange);
    color: white;
}

/* Hero/Welcome section styles */
#welcome {
    margin-top: 80px;
    background: url('./img/hKwvBD.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 150px 0;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 34, 64, 0.8);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-button {
    font-size: 18px;
    padding: 12px 30px;
}

/* Error message styles */
.error-container {
    background-color: #ffeeee;
    border-left: 4px solid #ff0000;
    padding: 15px;
    margin-bottom: 20px;
}

.error-title {
    margin-top: 0;
    color: #ff0000;
}

.error-list {
    margin-bottom: 0;
}

/* Background styles */
.bg-light-gray {
    background-color: var(--light-gray);
}

.pb-60 {
    padding-bottom: 60px;
}

.pt-60 {
    padding-top: 60px;
}

/* Flex layouts */
.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

/* Thank you page styles */
.thank-you-section {
    margin-top: 120px;
    text-align: center;
    padding: 100px 0;
}

.check-icon {
    font-size: 80px;
    color: var(--bright-green);
    margin-bottom: 30px;
}

.thank-you-title {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.back-button {
    display: inline-block;
    text-decoration: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .mobile-menu-icon {
        display: block;
    }
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    nav {
        position: absolute;
        top: 80px;
        left: 0;
        background: var(--gradient-bg);
        width: 100%;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    
    nav ul li {
        text-align: center;
    }
    
    nav ul li a {
        padding: 15px;
    }

    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin-right: 0;
    }
}

/* More responsive styles */
@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
} 