/* Main Styles for Financial Audit Website */

:root {
    --primary-bg: #00F0B5;
    --accent-purple: #6C00FF;
    --accent-orange: #FFA500;
    --text-dark: #1E1E1E;
    --text-light: #FFFFFF;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --border-radius: 1rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Helvetica', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--accent-purple);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-orange);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent-purple);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--text-light);
}

/* Logo Styles */
.text-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-purple);
    position: relative;
    padding-left: 10px;
    border-left: 5px solid var(--primary-bg);
}

.text-logo:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: var(--accent-orange);
    border-radius: 2px;
}

.text-logo-footer {
    color: var(--primary-bg);
}

.text-logo-footer:before {
    background-color: var(--accent-purple);
}

/* Header Styles */
header {
    background-color: var(--text-light);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--accent-purple);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-bg), #7fffd4);
    padding: 150px 0 100px;
    text-align: center;
    color: var(--text-light);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--text-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-img {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.features-img {
    margin-bottom: 40px;
    text-align: center;
}

.features-img img {
    max-height: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--text-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 15px;
    color: var(--accent-purple);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--text-light);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-content .price {
    font-size: 1.8rem;
    color: var(--accent-purple);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-purple);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--text-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.testimonials-img {
    margin-bottom: 40px;
    text-align: center;
}

.testimonials-img img {
    max-height: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(108, 0, 255, 0.1);
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Contact Form Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--text-light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #ffffff, #f8f9fa);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-bg);
    box-shadow: 0 0 0 3px rgba(0, 240, 181, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-bg);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-bg);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #343a40;
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--text-light);
    padding: 20px;
    box-shadow: var(--shadow);
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
    opacity: 1;
}

.cookie-text {
    flex: 1;
    margin-right: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 150px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/b46YXS.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thank-you h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.thank-you p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.thank-you .btn {
    background: var(--primary-bg);
    color: var(--text-dark);
    font-weight: 700;
}

.thank-you .btn:hover {
    background: var(--text-light);
    transform: translateY(-3px);
}

/* Legal Pages */
.legal-page {
    padding: 150px 0 100px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--text-light);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--accent-purple);
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        background-color: var(--text-light);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    .about-content {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .text-logo {
        font-size: 2rem;
    }
    
    .features-img img, 
    .testimonials-img img {
        max-height: 300px;
    }
}

@media screen and (max-width: 767px) {
    .hero {
        padding: 120px 0 70px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about, .features, .services, .benefits, .testimonials, .contact {
        padding: 70px 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .text-logo {
        font-size: 1.8rem;
    }
    
    .features-img img, 
    .testimonials-img img {
        max-height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
    }

    .legal-content {
        padding: 30px 20px;
    }
    
    .text-logo {
        font-size: 1.5rem;
    }
    
    .features-img img, 
    .testimonials-img img {
        max-height: 200px;
    }
} 