/* 
* Main stylesheet for domain - Financial Audit Services
* Color Scheme:
* - Main Background: #0F0F0F (deep graphite)
* - Accents: #7FDBFF (neon blue), #FF6B6B (coral), #FCE38A (warm yellow), #95E1D3 (mint)
* - Text: #FFFFFF and #CCCCCC
* - Buttons: gradient #7FDBFF → #FF6B6B
*/

/* ---------- Reset & Base Styles ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0F0F0F;
    color: #CCCCCC;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #7FDBFF, #FF6B6B);
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

a {
    color: #7FDBFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF6B6B;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(90deg, #7FDBFF, #FF6B6B);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(127, 219, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(127, 219, 255, 0.4);
    color: #FFFFFF;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #7FDBFF;
    color: #7FDBFF;
}

.btn-secondary:hover {
    background-color: #7FDBFF;
    color: #0F0F0F;
}

/* ---------- Header ---------- */
.site-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: lowercase;
    background: linear-gradient(90deg, #7FDBFF, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: #FFFFFF;
    font-weight: 500;
    position: relative;
}

.main-nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7FDBFF, #FF6B6B);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
}

.mobile-menu-toggle a {
    color: #FFFFFF;
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #0F0F0F;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(127, 219, 255, 0.1), rgba(255, 107, 107, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ---------- About Section ---------- */
.about {
    background-color: #161616;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ---------- Features Section ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(127, 219, 255, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 50%;
    color: #7FDBFF;
    font-size: 2rem;
}

/* ---------- Services Section ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
}

/* ---------- Process Section ---------- */
.process {
    background-color: #161616;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 80px;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7FDBFF, #FF6B6B);
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7FDBFF, #FF6B6B);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 30px;
}

/* ---------- Testimonials ---------- */
.testimonials-slider {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    flex: 0 0 100%;
    padding: 40px;
    background-color: #1a1a1a;
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: #FFFFFF;
}

.testimonial-role {
    color: #7FDBFF;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: #333;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: linear-gradient(90deg, #7FDBFF, #FF6B6B);
    transform: scale(1.2);
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: #1a1a1a;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    margin: 0;
    flex: 1;
}

.faq-toggle {
    color: #7FDBFF;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-toggle.open {
    transform: rotate(45deg);
}

.faq-answer {
    background-color: #161616;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.open {
    padding: 20px;
    max-height: 500px;
}

/* ---------- Contact Form ---------- */
.contact {
    background-color: #161616;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.form-icon {
    position: absolute;
    top: 45px;
    left: 15px;
    color: #7FDBFF;
}

.form-control {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background-color: #2c2c2c;
    border: 1px solid #3a3a3a;
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #7FDBFF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(127, 219, 255, 0.2);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%237FDBFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-check {
    margin-bottom: 15px;
}

.form-check-input {
    margin-right: 10px;
}

.form-check-label {
    cursor: pointer;
}

.form-check-label a {
    text-decoration: underline;
}

.submit-group {
    margin-top: 30px;
    text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: #0a0a0a;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info h3 {
    font-size: 1.8rem;
    background: linear-gradient(90deg, #7FDBFF, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.footer-contact ul, .footer-links ul {
    list-style: none;
}

.footer-contact li, .footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* ---------- Cookie Consent ---------- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(5px);
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-content button {
    background: linear-gradient(90deg, #7FDBFF, #FF6B6B);
    color: #FFFFFF;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

/* ---------- Policy Pages ---------- */
.policy-page {
    max-width: 900px;
    margin: 40px auto 80px;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.policy-page h1 {
    text-align: center;
    margin-bottom: 40px;
}

.policy-content h2 {
    font-size: 1.8rem;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h2:after {
    left: 0;
    transform: none;
    width: 60px;
}

.policy-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

/* ---------- Thank You Page ---------- */
.thank-you {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0;
}

.thank-you-content {
    max-width: 700px;
    width: 90%;
    text-align: center;
    border: 2px solid;
    border-image: linear-gradient(90deg, #7FDBFF, #FF6B6B) 1;
    padding: 40px;
    background-color: rgba(26, 26, 26, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.thank-you-icon {
    font-size: 5rem;
    color: #7FDBFF;
    margin-bottom: 30px;
}

/* ---------- Media Queries ---------- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 50px;
    }
    
    .process-steps:before {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(15, 15, 15, 0.97);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav.menu-open {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav ul li {
        margin: 15px 0;
    }
    
    .main-nav ul li a {
        font-size: 1.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .hero {
        padding: 100px 0;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .cta-button {
        display: none;
    }
    
    .feature-card, .service-card, .testimonial {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
