/* 
   FinancIAudit - Main Stylesheet
   Color Palette:
   - Main: #A9FF04 (neon olive)
   - Accent: #0D0D0D (deep coal black)
   - Secondary: #D1D5DB (dusty gray)
   - Text: #1F2937 (graphite)
   - Buttons: #FF6B6B (rich coral)
*/

/* Base Styles & Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1F2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #A9FF04;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8em;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #A9FF04;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn--primary {
    background-color: #FF6B6B;
    color: #fff;
    box-shadow: 0 4px 6px rgba(255, 107, 107, 0.25);
}

.btn--primary:hover {
    background-color: #ff5252;
    color: #fff;
    transform: translateY(-2px);
}

.btn--contact {
    background-color: transparent;
    border: 2px solid #A9FF04;
    color: #0D0D0D;
    padding: 10px 24px;
}

.btn--contact:hover {
    background-color: #A9FF04;
    color: #0D0D0D;
}

.btn--small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 15px 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 50%, #f9f9f9 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero__content {
    flex: 1;
}

.hero__image {
    flex: 1;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    transform: perspective(800px) rotateY(-5deg);
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #0D0D0D;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #4B5563;
    max-width: 500px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-color: rgba(169, 255, 4, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.about__content {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about__text {
    flex: 1;
}

.about__image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.about__subtitle {
    font-size: 1.5rem;
    color: #0D0D0D;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #A9FF04;
}

.service-card__title {
    font-size: 1.6rem;
    color: #0D0D0D;
    margin-bottom: 15px;
}

.service-card__description {
    margin-bottom: 20px;
    color: #4B5563;
}

.service-card__features {
    padding-left: 20px;
}

.service-card__features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.service-card__features li::before {
    content: '•';
    color: #A9FF04;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -3px;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background-color: rgba(169, 255, 4, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-box {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box__icon {
    margin-bottom: 20px;
}

.feature-box__title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #0D0D0D;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-card__rating {
    margin-bottom: 15px;
}

.star {
    color: #A9FF04;
    font-size: 1.2rem;
    margin-right: 2px;
}

.testimonial-card__text {
    font-style: italic;
    margin-bottom: 20px;
    color: #4B5563;
}

.testimonial-card__name {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-card__company {
    color: #6B7280;
    font-size: 0.9rem;
}

/* How We Work Section */
.how-we-work {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 70px;
    right: 70px;
    height: 3px;
    background: linear-gradient(to right, #A9FF04 33%, transparent 0%);
    background-size: 20px 3px;
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.step__number {
    width: 80px;
    height: 80px;
    background-color: #A9FF04;
    color: #0D0D0D;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(169, 255, 4, 0.3);
}

.step__title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #0D0D0D;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background-color: #fff;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card__image {
    height: 200px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.1);
}

.blog-card__content {
    padding: 25px;
}

.blog-card__title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #0D0D0D;
}

.blog-card__excerpt {
    margin-bottom: 20px;
    color: #4B5563;
    font-size: 0.95rem;
}

.blog-card__link {
    color: #A9FF04;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.blog-card__link:hover {
    border-bottom-color: #A9FF04;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #0D0D0D;
    color: #fff;
}

.contact .section-title {
    color: #fff;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact__info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #A9FF04;
}

.contact__details {
    margin-top: 30px;
}

.contact__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact__item svg {
    margin-right: 15px;
}

.contact__form {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #D1D5DB;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #333;
    background-color: #262626;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #A9FF04;
}

.checkbox {
    display: flex;
    align-items: flex-start;
}

.checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.checkbox a {
    color: #A9FF04;
    text-decoration: underline;
}

.contact__form .btn--primary {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #1F2937;
    color: #D1D5DB;
    padding: 60px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__about {
    grid-column: span 2;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__about p {
    max-width: 400px;
    margin-bottom: 20px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #9CA3AF;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #A9FF04;
}

.footer__bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1F2937;
    color: #fff;
    padding: 15px;
    z-index: 999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent.show {
    display: block;
}

.cookie-consent__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-consent__content p {
    margin-right: 20px;
}

.cookie-consent__content a {
    color: #A9FF04;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero__image {
        transform: none;
        margin-top: 30px;
        width: 100%;
    }
    
    .about__content {
        flex-direction: column;
    }
    
    .about__image {
        order: -1;
        margin-bottom: 30px;
        width: 100%;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step {
        margin-bottom: 40px;
    }
    
    .contact__content {
        grid-template-columns: 1fr;
    }
    
    .contact__info {
        order: 1;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .services__grid,
    .why-us__grid,
    .testimonials__grid,
    .blog__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    .footer__about {
        grid-column: span 1;
    }
    
    .cookie-consent__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent__content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .header__inner {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    .nav{
        display: none;
    }
    .nav__list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
} 