/*
 * AuditPro - Financial Audit Services
 * Main Stylesheet
 */

/* ===== VARIABLES & BASE ===== */
:root {
    /* Colors */
    --bg-gradient-start: #0F2027;
    --bg-gradient-end: #2C5364;
    --text-color: #F4F1EE;
    --accent-1: #B6FF00;
    --accent-2: #00C9A7;
    --dark: #051018;
    --light: #F4F1EE;
    --gray-100: rgba(244, 241, 238, 0.1);
    --gray-200: rgba(244, 241, 238, 0.2);
    --gray-300: rgba(244, 241, 238, 0.3);
    --gray-600: rgba(244, 241, 238, 0.6);
    --shadow-color: rgba(0, 0, 0, 0.25);
    --shadow-glow-1: 0 0 20px rgba(182, 255, 0, 0.4);
    --shadow-glow-2: 0 0 20px rgba(0, 201, 167, 0.4);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Sizing */
    --header-height: 80px;
    --container-max-width: 1200px;
    --container-padding: 1.5rem;
    --border-radius: 8px;
    
    /* Z-index */
    --z-header: 100;
    --z-cookie: 200;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    font-size: 16px;
}

section[id] {
    scroll-margin-top: 90px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end)) fixed;
    min-height: 100vh;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--accent-1);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-2);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.container {
    max-width: var(--container-max-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
    width: 100%;
}

/* ===== COMPONENTS ===== */

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    color: var(--dark);
    box-shadow: var(--shadow-glow-1);
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-1);
    color: var(--accent-1);
}

.btn-outline:hover {
    background: rgba(182, 255, 0, 0.1);
    color: var(--accent-1);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-300);
    background: rgba(5, 16, 24, 0.5);
    color: var(--text-color);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(182, 255, 0, 0.2);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-check input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check label {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(5, 16, 24, 0.95);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: var(--z-cookie);
    transition: bottom 0.5s ease-in-out;
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--gray-300);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    flex: 1 0 60%;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 16, 24, 0.9);
    backdrop-filter: blur(10px);
    z-index: var(--z-header);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--gray-300);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--accent-1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    transition: width 0.3s ease;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
}

/* Breadcrumb */
.breadcrumb-container {
    background: rgba(5, 16, 24, 0.5);
    padding: 1rem 0;
    margin-top: var(--header-height);
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--gray-600);
}

.breadcrumb a {
    color: var(--gray-600);
}

.breadcrumb a:hover {
    color: var(--accent-1);
}

.breadcrumb li[aria-current="page"] {
    color: var(--accent-2);
}

/* ===== LAYOUT ===== */

/* Sections */
section {
    padding: 5rem 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('./img/BLFQ5.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 16, 24, 0.8), rgba(5, 16, 24, 0.6));
}

.hero-content {
    position: relative;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    background: rgba(5, 16, 24, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gray-300);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-2);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gray-300);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(5, 16, 24, 0.5);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-300);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-1);
}

.service-icon {
    margin-bottom: 1.5rem;
    height: 180px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-2);
}

.service-card p {
    margin-bottom: 0;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: rgba(5, 16, 24, 0.5);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-300);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-1);
}

.benefit-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(182, 255, 0, 0.1);
    line-height: 1;
}

.benefit-item h3 {
    margin-top: 0.5rem;
    color: var(--accent-2);
}

.benefit-item p {
    margin-bottom: 0;
}

/* Process Section */
.process-steps {
    position: relative;
    padding: 2rem 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-1), var(--accent-2));
    z-index: 0;
}

.process-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--dark);
    position: relative;
    box-shadow: var(--shadow-glow-1);
    margin-right: 2rem;
}

.step-content {
    flex: 1;
    padding: 1.5rem;
    background: rgba(5, 16, 24, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-300);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-2);
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--accent-2);
}

.step-content p {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(5, 16, 24, 0.5);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--gray-300);
    transition: transform 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-1);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent-2);
}

.testimonial-content {
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    color: var(--accent-1);
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-content h4 {
    margin: 1.5rem 0 0.25rem;
    color: var(--accent-2);
}

.testimonial-position {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: block;
    padding: 1.25rem;
    background: rgba(5, 16, 24, 0.5);
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-1);
    transition: transform 0.3s ease;
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(5, 16, 24, 0.3);
    padding: 0 1.25rem;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 500px;
    padding: 1.25rem;
}

.policy-section {
    padding: 5rem 0;
}

.policy-content {
    background: rgba(5, 16, 24, 0.5);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--gray-300);
    margin-top: 2rem;
}

.policy-content h2 {
    color: var(--accent-2);
    margin-top: 2rem;
}

.policy-content h3 {
    color: var(--accent-1);
    margin-top: 1.5rem;
}

.policy-content ul, 
.policy-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-type: disc;
}

.policy-content ol {
    list-style-type: decimal;
}

.policy-content li {
    margin-bottom: 0.5rem;
}
/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.contact-info {
    background: rgba(5, 16, 24, 0.5);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--gray-300);
    height: 100%;
}

.contact-info h3 {
    color: var(--accent-2);
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-300);
}

.contact-hours h4 {
    color: var(--accent-1);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: rgba(5, 16, 24, 0.5);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--gray-300);
}

/* Footer */
.site-footer {
    background: rgba(5, 16, 24, 0.9);
    padding: 4rem 0 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--gray-300);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-about p {
    margin-top: 1rem;
}

.footer-links ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent-1);
}

.footer-contact address {
    font-style: normal;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.9rem;
    color: var(--gray-600);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3,
.footer-legal h3 {
    color: var(--accent-2);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .process-steps::before {
        left: 30px;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
        grid-template-areas: "number content" !important;
        gap: 1rem;
    }
    
    .process-step:nth-child(even) h3,
    .process-step:nth-child(even) p {
        text-align: left;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .menu-icon {
        display: block;
        width: 30px;
        height: 24px;
        position: relative;
        cursor: pointer;
        z-index: 10;
    }
    
    .menu-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--text-color);
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: all 0.25s ease-in-out;
    }
    
    .menu-icon span:nth-child(1) {
        top: 0px;
    }
    
    .menu-icon span:nth-child(2) {
        top: 10px;
    }
    
    .menu-icon span:nth-child(3) {
        top: 20px;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        top: 10px;
        transform: rotate(135deg);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        top: 10px;
        transform: rotate(-135deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(5, 16, 24, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--gray-300);
    }
    
    .menu-toggle:checked ~ .nav-menu {
        right: 0;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .process-steps::before {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
        font-size: 1.5rem;
        margin-right: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .process-steps::before {
        left: 30px;
        height: calc(100% - 60px);
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .step-content {
        width: 100%;
    }
} 