/* 
 * Financial Audit Services - Main Stylesheet
 * Color Palette:
 * - Primary Background: #141E30 to #243B55 (gradient)
 * - Accent: #FFD700 (gold)
 * - Secondary: #E63946 (coral red)
 * - Text Primary: #FFFFFF
 * - Text Secondary: #CCCCCC
 */

/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #141E30;
    --bg-gradient: linear-gradient(135deg, #141E30 0%, #243B55 100%);
    --accent: #FFD700;
    --secondary: #E63946;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-gradient);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.03);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    background: linear-gradient(to right, var(--accent), #FFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: var(--accent);
}

h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* === Button Styles === */
.cta-button, .submit-button, .select-plan, .cookie-btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--bg-primary);
    border: 2px solid var(--accent);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

.cta-button:hover, .submit-button:hover, .select-plan:hover, .cookie-btn:hover {
    background-color: transparent;
    color: var(--accent);
}

/* === Header & Navigation === */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(20, 30, 48, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
}

.main-nav .nav-list li {
    margin-left: 30px;
}

.main-nav .nav-list a {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    font-size: 1rem;
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: a n2px;
    background: var(--accent);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.main-nav .nav-list a:hover::after {
    width: 100%;
}

.main-nav .nav-list .nav-cta {
    color: var(--bg-primary);
    background: var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    margin-left: 15px;
}

.main-nav .nav-list .nav-cta:hover {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.main-nav .nav-list .nav-cta::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
}

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(20, 30, 48, 0.95);
    z-index: 9999;
    display: none;
    justify-content: center;
    padding: 20px;
    border-top: 2px solid var(--accent);
    transition: opacity 0.5s ease;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-right: 20px;
    margin-bottom: 0;
}

.cookie-btn {
    white-space: nowrap;
}

/* === Hero Section === */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    text-align: center;
    background-image: url('img/YJCnjj.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.9) 0%, rgba(36, 59, 85, 0.8) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === About Section === */
.about-section {
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* === Benefits Section === */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
}

/* === Process Section === */
.process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    opacity: 0.3;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

/* === Pricing Section === */
.pricing-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-plan {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-plan.featured {
    transform: scale(1.05);
    border-color: var(--accent);
    z-index: 10;
}

.pricing-plan.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--secondary);
    color: var(--text-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(45deg);
}

.pricing-plan:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.pricing-plan.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
    margin: 20px 0;
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-plan ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.pricing-plan ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* === Testimonials Section === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.testimonial:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding-top: 30px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}

.client-info {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.client-info h4 {
    color: var(--accent);
    margin-bottom: 5px;
}

/* === FAQ Section === */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.faq-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.faq-item h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* === Contact Section === */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--accent);
}

.map-container img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
}

.radio-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-label input, .checkbox-label input {
    margin-right: 10px;
}

.checkbox-group {
    margin-bottom: 15px;
}

.submit-button {
    width: 100%;
    margin-top: 20px;
}

/* === Footer === */
.main-footer {
    background: rgba(255, 255, 255, 0.02);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

/* Compact footer styles */
.footer-content.compact {
    gap: 20px;
}

.footer-content.compact .about {
    flex-basis: 100%;
    margin-bottom: 10px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.footer-content.compact .footer-section {
    flex: 1;
    min-width: 180px;
}

.footer-content.compact h3 {
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.footer-content.compact p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-content.compact ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: var(--text-secondary);
}

.footer-section ul a:hover {
    color: var(--accent);
}

.contact-info p {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === Responsive === */
@media (max-width: 990px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .process-flow::before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .pricing-plan.featured {
        transform: scale(1);
    }
    
    .pricing-plan.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-columns {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: var(--text-primary);
        transition: var(--transition);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .main-nav .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .main-nav .nav-list.active {
        left: 0;
    }
    
    .main-nav .nav-list li {
        margin: 20px 0;
        margin-left: 0;
    }
    
    .hero-section {
        height: auto;
        padding-top: 150px;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        flex-direction: column;
    }
    
    .footer-content.compact .footer-section {
        min-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .radio-options {
        flex-direction: column;
        gap: 10px;
    }
}

/* === Custom Animations === */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.benefit-item, .process-step, .pricing-plan, .testimonial, .faq-item {
    animation: fadeIn 0.6s ease-out forwards;
}

.benefit-item:nth-child(1), .process-step:nth-child(1), .pricing-plan:nth-child(1), .testimonial:nth-child(1), .faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-item:nth-child(2), .process-step:nth-child(2), .pricing-plan:nth-child(2), .testimonial:nth-child(2), .faq-item:nth-child(2) {
    animation-delay: 0.3s;
}

.benefit-item:nth-child(3), .process-step:nth-child(3), .pricing-plan:nth-child(3), .testimonial:nth-child(3), .faq-item:nth-child(3) {
    animation-delay: 0.5s;
}

.benefit-item:nth-child(4), .process-step:nth-child(4), .testimonial:nth-child(4), .faq-item:nth-child(4) {
    animation-delay: 0.7s;
} 