/* 
Theme: Financial Auditing Services
Colors:
- Electric Indigo (#6F00FF) - Primary
- Bright Lime (#D4FF00) - Accent
- Midnight Navy (#0B0F2B) - Background
- Antique White (#FAF9F6) - Text
- Coral Blush (#FF6F61) - Additional
*/

/* ---------- RESET & BASE STYLES ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

:root {
    --primary: #6F00FF;
    --accent: #D4FF00;
    --background: #0B0F2B;
    --text: #FAF9F6;
    --additional: #FF6F61;
    --dark-accent: #A3C400;
    --light-background: #141A4D;
    --overlay: rgba(11, 15, 43, 0.85);
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- HEADER & NAVIGATION ---------- */
.site-header {
    background-color: var(--background);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 150px;
}

.logo img {
    width: 100%;
    height: auto;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--primary);
    color: var(--text);
    padding: 10px 20px;
    border-radius: 30px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--accent);
    color: var(--background);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ---------- COOKIE POPUP ---------- */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--light-background);
    border-radius: 10px;
    padding: 20px;
    max-width: 320px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.cookie-accept {
    background-color: var(--accent);
    color: var(--background);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background-color: var(--dark-accent);
}

/* ---------- HERO SECTION ---------- */
.hero {
    padding: 160px 0 100px;
    text-align: center;
}

.hero h1 {
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--background);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    animation: fadeInUp 1s ease 0.6s backwards;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary);
    color: var(--text);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(111, 0, 255, 0.4);
}

/* ---------- SERVICES SECTION ---------- */
.services {
    background-color: var(--light-background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--background);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- APPROACH SECTION ---------- */
.approach-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 30px;
    background-color: var(--light-background);
    border-radius: 10px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* ---------- WHY CHOOSE US SECTION ---------- */
.why-us {
    background-color: var(--light-background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    background-color: var(--background);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--additional);
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* ---------- TRUST SECTION ---------- */
.trust {
    text-align: center;
}

.trust p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.indicator {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    background-color: var(--light-background);
    border-radius: 10px;
}

/* ---------- PRICING SECTION ---------- */
.pricing {
    background-color: var(--light-background);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background-color: var(--background);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.price-card h3 {
    font-size: 1.8rem;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--accent);
}

.price-card.standard .price {
    color: var(--primary);
}

.price-card.premium .price {
    color: var(--additional);
}

.price-card ul.features {
    margin: 30px 0;
    text-align: left;
}

.price-card ul.features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.price-card ul.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.select-plan {
    display: inline-block;
    background-color: transparent;
    color: var(--text);
    border: 2px solid var(--accent);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.select-plan:hover {
    background-color: var(--accent);
    color: var(--background);
}

.price-card.standard .select-plan {
    border-color: var(--primary);
}

.price-card.standard .select-plan:hover {
    background-color: var(--primary);
}

.price-card.premium .select-plan {
    border-color: var(--additional);
}

.price-card.premium .select-plan:hover {
    background-color: var(--additional);
}

/* ---------- ORDER FORM SECTION ---------- */
.order-form {
    text-align: center;
}

.order-form form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--light-background);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(250, 249, 246, 0.1);
    color: #ff6f61;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

.submit-button {
    background-color: var(--primary);
    color: var(--text);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.submit-button:hover {
    background-color: var(--accent);
    color: var(--background);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 255, 0, 0.3);
}

/* ---------- CONTACT SECTION ---------- */
.contact {
    background-color: var(--light-background);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h3 {
    margin-bottom: 10px;
    color: var(--accent);
}

.map-placeholder {
    height: 300px;
    background-color: var(--background);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-style: italic;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background-color: var(--background);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about p {
    margin-bottom: 0;
}

.contact-list li,
.footer-nav li,
.policy-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(250, 249, 246, 0.1);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    
    /* Ensure tables don't cause overflow */
    table {
        width: 100%;
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--background);
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        z-index: 900;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 15px 0;
    }
    
    .hero {
        padding: 130px 0 80px;
    }
    
    .approach-steps,
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
    
    .step,
    .indicator {
        width: 100%;
        max-width: 400px;
    }
    
    /* Fix grid layouts on mobile */
    .services-grid,
    .features-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .order-form form {
        padding: 30px 20px;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    /* Reduce horizontal padding */
    .container {
        padding: 0 10px;
    }
} 