/* Main styles for domain.com - Financial Audit Website */

/* Base styling and variables */
:root {
    --dark-blue: #0f1c2e;
    --medium-blue: #1a2639;
    --light-blue: #22334f;
    --gold: #F8C630;
    --neon-green: #56E39F;
    --bright-red: #E94560;
    --white: #ffffff;
    --light-gray: #b0b8c1;
    --form-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    background-color: var(--dark-blue);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--neon-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--bright-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d03650;
    color: var(--white);
}

.btn-secondary {
    background-color: var(--neon-green);
    color: var(--dark-blue);
}

.btn-secondary:hover {
    background-color: #47c287;
}

/* Header styles */
header {
    background-color: rgba(15, 28, 46, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.logo span {
    color: var(--neon-green);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-green);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(248, 198, 48, 0.1);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(86, 227, 159, 0.1);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Features section */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--white);
}

.section-header p {
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, var(--medium-blue) 0%, var(--light-blue) 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--gold);
}

.feature-card p {
    color: var(--light-gray);
}

/* Audit types section */
.audit-types {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
}

.audit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.audit-card {
    background: linear-gradient(135deg, var(--medium-blue) 0%, var(--light-blue) 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.audit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--neon-green);
}

.audit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--gold);
}

.audit-card p {
    color: var(--light-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Why choose us section */
.why-us {
    padding: 100px 0;
}

.why-us-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.why-us-text {
    flex: 1;
    min-width: 300px;
}

.why-us-points {
    flex: 1;
    min-width: 300px;
}

.why-us-point {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.why-us-point-number {
    background-color: var(--neon-green);
    color: var(--dark-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.why-us-point-text h4 {
    margin-bottom: 5px;
    color: var(--gold);
}

.why-us-point-text p {
    color: var(--light-gray);
}

/* Testimonials section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

.testimonial::before {
    content: """;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 60px;
    color: rgba(86, 227, 159, 0.2);
    line-height: 0;
    font-family: 'Georgia', serif;
}

.testimonial-text {
    margin-bottom: 20px;
    color: var(--light-gray);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--gold);
}

.testimonial-author-title {
    color: var(--light-gray);
    font-size: 14px;
}

/* Contact form section */
.contact {
    padding: 100px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--form-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-blue);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eaeaea;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-green);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-top: 5px;
    margin-right: 10px;
}

.checkbox-group label {
    color: var(--dark-blue);
    font-size: 14px;
}

.checkbox-group a {
    color: var(--bright-red);
}

/* FAQ section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-weight: 600;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--neon-green);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: var(--light-gray);
    padding-bottom: 20px;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* Footer */
footer {
    padding: 80px 0 20px;
    background-color: var(--dark-blue);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col p, .footer-col address {
    color: var(--light-gray);
    margin-bottom: 10px;
    font-style: normal;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--light-gray);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--neon-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 14px;
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 38, 57, 0.95);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-consent p {
    margin-right: 20px;
    color: var(--light-gray);
}

/* Policy pages */
.policy-page {
    padding: 160px 0 100px;
}

.policy-container {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(86, 227, 159, 0.2);
}

.policy-container h1 {
    color: var(--gold);
    margin-bottom: 30px;
}

.policy-container h2 {
    color: var(--neon-green);
    margin: 30px 0 15px;
}

.policy-container p, .policy-container ul, .policy-container ol {
    color: var(--light-gray);
    margin-bottom: 20px;
}

.policy-container ul, .policy-container ol {
    margin-left: 20px;
}

.policy-container li {
    margin-bottom: 10px;
}

/* Thank you page */
.thank-you {
    padding: 160px 0 100px;
    text-align: center;
}

.thank-you h1 {
    color: var(--gold);
    font-size: 48px;
    margin-bottom: 20px;
}

.thank-you p {
    color: var(--light-gray);
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--dark-blue);
        transition: left 0.3s ease;
        padding: 20px;
        overflow-y: auto;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 15px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .form-container {
        padding: 20px;
    }

    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent p {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
