/* 
   FinScope - Financial Audit Company
   Color Palette:
   - Main Background: #f2ecfa (light-violet)
   - Contrast: #00c2cb (turquoise)
   - Accents: #fbd84d (sunny-yellow), #ff6b4a (coral-orange)
   - Text: #002e4d (dark-blue), #697a8d (gray-blue)
*/

/* ===== Global Styles ===== */
:root {
    --color-bg: #f2ecfa;
    --color-contrast: #00c2cb;
    --color-accent1: #fbd84d;
    --color-accent2: #ff6b4a;
    --color-text: #002e4d;
    --color-text-secondary: #697a8d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: var(--color-text);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-contrast);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-accent2);
}

section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--color-contrast);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-accent2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 194, 203, 0.3);
}

.btn-secondary {
    background-color: var(--color-accent1);
    color: var(--color-text);
}

.btn-secondary:hover {
    background-color: #eac636;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 216, 77, 0.3);
}

/* ===== Header & Navigation ===== */
header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--color-text);
    font-weight: 600;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--color-contrast);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--color-bg) 0%, #ffffff 100%);
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(0, 194, 203, 0.1);
    top: -100px;
    right: -100px;
    animation: float 8s infinite alternate ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(251, 216, 77, 0.1);
    bottom: -50px;
    left: -50px;
    animation: float 6s infinite alternate-reverse ease-in-out;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(10deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text-secondary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* ===== About Section ===== */
.about {
    position: relative;
    background-color: white;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 46, 77, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(0, 194, 203, 0.7) 0%, rgba(251, 216, 77, 0.7) 100%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.about-image:hover::before {
    opacity: 0.5;
}

/* ===== Benefits Section ===== */
.benefits {
    background-color: var(--color-bg);
}

.benefits-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-contrast);
}

/* ===== Services Section ===== */
.services {
    background-color: white;
}

.services-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-contrast);
}

.service-image {
    height: 200px;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.service-content {
    padding: 2rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-contrast);
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-contrast);
}

/* ===== Cases Section ===== */
.cases {
    background-color: var(--color-bg);
}

.cases-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
}

.case-image {
    height: 200px;
    background-color: var(--color-text-secondary);
    position: relative;
    overflow: hidden;
}

.case-content {
    padding: 1.5rem;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background-color: white;
}

.testimonials-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--color-bg);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 194, 203, 0.2);
    line-height: 1;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-text-secondary);
    margin-right: 1rem;
}

/* ===== Contact Form Section ===== */
.contact {
    background: linear-gradient(135deg, var(--color-bg) 0%, white 100%);
}

.contact-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--color-text);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: border-color 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-contrast);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-check input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check label {
    font-weight: normal;
    font-size: 0.9rem;
}

.form-buttons {
    text-align: center;
}

/* ===== Footer ===== */
footer {
    background-color: #002e4d;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: white;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-nav h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-nav ul {
    list-style: none;
}

.footer-links li,
.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-nav a:hover {
    color: var(--color-accent1);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== Cookie Popup ===== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-content button {
    margin-right: 1rem;
}

/* ===== Legal Pages ===== */
.legal-page {
    padding: 5rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

/* ===== Thank You Page ===== */
.thank-you {
    text-align: center;
    padding: 5rem 0;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-accent1);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.submission-details {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: rgba(0, 194, 203, 0.1);
    border-left: 4px solid var(--color-contrast);
}

.submission-details h3 {
    color: var(--color-contrast);
    margin-bottom: 1rem;
}

.submission-details p {
    margin-bottom: 0.5rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .header-content {
        flex-direction: column;
        padding: 1rem 0;
    }

    .logo {
        margin-bottom: 1rem;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 0.5rem;
    }

    .about-content,
    .hero-cta {
        flex-direction: column;
    }

    .about-image {
        order: -1;
    }

    .benefit-card,
    .service-card,
    .case-card,
    .testimonial-card {
        transform: none !important;
    }
} 