/* Main Styles for domain - Financial Audit Website */
:root {
    --bg-color: #131722; /* deep indigo */
    --main-color: #C3FF93; /* neon salad */
    --accent-color: #FF52A2; /* fuchsia pink */
    --secondary-color: #5F6CAF; /* lavender/gray-blue */
    --text-color: #ffffff;
    --text-secondary: #e0e0e0;
    --font-family: 'Urbanist', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--main-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--main-color);
}

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 2rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 5rem 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--main-color);
    color: var(--bg-color);
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(195, 255, 147, 0.5);
}

.btn:hover {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 0 20px rgba(255, 82, 162, 0.6);
    transform: translateY(-2px);
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(19, 23, 34, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--main-color);
    letter-spacing: 2px;
    text-transform: lowercase;
}

.logo:hover {
    color: var(--accent-color);
}

/* Navigation Styles */
nav {
    flex-grow: 1;
    margin: 0 1rem;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Mobile Navigation */
.burger-menu {
    display: none;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 23, 34, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 4rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Section Wave Dividers */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.wave-divider .shape-fill {
    fill: var(--secondary-color);
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--bg-color) 0%, #1a1f2e 100%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #1a1f2e 0%, var(--bg-color) 100%);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(30, 35, 50, 0.7);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(95, 108, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), var(--accent-color));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(95, 108, 175, 0.2);
}

.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--main-color);
}

/* Benefits Section */
.benefits {
    background-color: var(--bg-color);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: rgba(30, 35, 50, 0.7);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.benefit-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* How We Work Section */
.how-we-work {
    background: linear-gradient(135deg, #1a1f2e 0%, var(--bg-color) 100%);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
}

.step-item {
    flex: 0 0 calc(25% - 2rem);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.steps-container:after {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--main-color);
    z-index: 0;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--bg-color) 0%, #1a1f2e 100%);
    overflow: hidden;
} .thank-you .btn {
    margin-top: 2rem;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
}

.testimonial-slides {
    display: flex;
    width: 300%;
    animation: slide 15s infinite;
}

@keyframes slide {
    0%, 33.33% {
        transform: translateX(0);
    }
    33.34%, 66.66% {
        transform: translateX(-33.33%);
    }
    66.67%, 99.99% {
        transform: translateX(-66.66%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial-slide {
    width: 33.33%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card {
    background: rgba(30, 35, 50, 0.7);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(95, 108, 175, 0.3);
    position: relative;
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.testimonial-text:before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 3rem;
    color: var(--main-color);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #1a1f2e 0%, var(--bg-color) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background: rgba(30, 35, 50, 0.9);
    padding: 1.5rem;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.faq-checkbox {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.faq-checkbox:checked ~ .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-checkbox:checked + .faq-question h3 {
    color: var(--main-color);
}

.faq-checkbox:checked + .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon:before,
.faq-icon:after {
    content: '';
    position: absolute;
    background: var(--main-color);
}

.faq-icon:before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-icon:after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(30, 35, 50, 0.7);
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 1.5rem;
}

/* Form Section */
.contact-form {
    background: linear-gradient(135deg, var(--bg-color) 0%, #1a1f2e 100%);
}

.form-container {
    max-width: 600px;
    margin: 3rem auto 0;
    background: rgba(30, 35, 50, 0.7);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(95, 108, 175, 0.3);
    box-shadow: 0 0 30px rgba(195, 255, 147, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(19, 23, 34, 0.8);
    border: 1px solid rgba(95, 108, 175, 0.5);
    border-radius: 5px;
    color: var(--text-color);
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 10px rgba(195, 255, 147, 0.3);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23C3FF93%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
    cursor: pointer;
}

.form-select option {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-input {
    margin-right: 10px;
    margin-top: 5px;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(95, 108, 175, 0.5);
    border-radius: 3px;
    background: rgba(19, 23, 34, 0.8);
    cursor: pointer;
    position: relative;
}

.checkbox-input:checked:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--main-color);
    font-size: 14px;
}

.checkbox-label {
    font-size: 0.9rem;
}

.checkbox-label a {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    background: linear-gradient(90deg, var(--main-color), var(--accent-color));
    color: var(--bg-color);
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(195, 255, 147, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 82, 162, 0.4);
}

/* Footer */
footer {
    background: #0f131d;
    padding: 4rem 0 2rem;
    color: var(--text-secondary);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--main-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--main-color);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-icon {
    margin-right: 10px;
    color: var(--main-color);
}

.footer-bottom {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Thank You Page */
.thank-you {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    padding: 3rem;
    border-radius: 10px;
    background: rgba(30, 35, 50, 0.7);
    border: 1px solid rgba(95, 108, 175, 0.3);
    box-shadow: 0 0 30px rgba(195, 255, 147, 0.1);
}

.thank-you h1 {
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

/* Policy Pages */
.policy-page {
    padding: 8rem 0 5rem;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 35, 50, 0.7);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(95, 108, 175, 0.3);
}

.policy-container h1 {
    margin-bottom: 2rem;
    color: var(--main-color);
}

.policy-container h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.policy-container p {
    margin-bottom: 1.5rem;
}

.policy-container ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-container ul li {
    margin-bottom: 0.5rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(19, 23, 34, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-align: center;
    display: none;
}

.cookie-consent p {
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 500;
}

.cookie-accept {
    background: var(--main-color);
    color: var(--bg-color);
}

.cookie-reject {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .step-item {
        flex: 0 0 calc(50% - 2rem);
    }
    
    .steps-container:after {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    /* Mobile Navigation */
    .header-container {
        position: relative;
        justify-content: space-between;
    }
.burger-menu {
    order: 2;
}
    nav {
        position: static;
        margin: 0;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(19, 23, 34, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 100;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .nav-links li a {
        font-size: 1.2rem;
    }
    
    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        z-index: 1001;
    }
    
    .burger-menu span {
        display: block;
        height: 2px;
        width: 100%;
        background: var(--text-color);
        transition: all 0.3s ease;
    }
    
    #menu-toggle {
        position: absolute;
        top: 0;
        right: 0;
        opacity: 0;
        cursor: pointer;
        z-index: 1002;
        width: 30px;
        height: 20px;
        margin: 0;
    }
    
    #menu-toggle:checked ~ nav .nav-links {
        left: 0;
    }
    
    #menu-toggle:checked + .burger-menu span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    #menu-toggle:checked + .burger-menu span:nth-child(2) {
        opacity: 0;
    }
    
    #menu-toggle:checked + .burger-menu span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .step-item {
        flex: 0 0 100%;
    }

    .testimonial-slides {
        width: 300%;
    }

    .testimonial-slide {
        width: 33.33%;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
} 