/* 
* domain - Financial Audit Services
* Main Stylesheet
*/

/* ---------- Variables ---------- */
:root {
    /* Color Palette */
    --bg-color: #0B1F32;
    --accent-color: #FFD100;
    --secondary-accent1: #00A896;
    --secondary-accent2: #FF6B6B;
    --text-color: #F4F4F9;
    --dark-accent: #071525;
    --light-accent: #1A2E41;
    
    /* Typography */
    --body-font: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 0 2rem;
}

/* ---------- Base Styles ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 4px;
    background-color: var(--accent-color);
}

/* Center underlines for section titles */
.benefits-title h2::after,
.services-title h2::after,
.testimonials-title h2::after,
.process-title h2::after,
.faq-title h2::after,
.contact-title h2::after,
.about h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-accent1);
}

section {
    padding: var(--section-padding);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-color);
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--bg-color) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
}

.cta-button:hover {
    background-color: var(--secondary-accent1);
    color: var(--text-color) !important;
}

/* ---------- Header & Navigation ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(11, 31, 50, 0.9);
    backdrop-filter: blur(5px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Additional styles for mobile menu toggle */
.nav-menu.active {
    right: 0;
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(11, 31, 50, 0.8), rgba(11, 31, 50, 0.9)), url('../img/KJV9Q4.jpg') no-repeat center center/cover;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Center hero content for all screens */
.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 2rem;
    font-size: 3.5rem;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--secondary-accent1);
    opacity: 0.1;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--secondary-accent2);
    opacity: 0.05;
    z-index: -1;
}

/* ---------- About Section ---------- */
.about {
    position: relative;
    overflow: hidden;
}

.about h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--accent-color);
    border-radius: 10px;
    z-index: -1;
}

.experience-box {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-number {
    font-size: 3rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 1.5rem;
}

/* ---------- Benefits Section ---------- */
.benefits {
    background-color: var(--bg-color);
}

.benefits-title {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background-color: var(--light-accent);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--accent-color);
    z-index: -1;
}

.benefit-item:nth-child(2n)::before {
    background-color: var(--secondary-accent1);
}

.benefit-item:nth-child(3n)::before {
    background-color: var(--secondary-accent2);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ---------- Services Section ---------- */
.services {
    background-color: var(--light-accent);
    position: relative;
}

.services-title {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Add service card images */
.service-card {
    position: relative;
    padding-top: 180px; /* Space for the image */
}

.service-card:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: url('../img/KJV9Q4.jpg') no-repeat center center/cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: url('../img/K1TNs1.jpg') no-repeat center center/cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service-card:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: url('../img/kk69uh.jpg') no-repeat center center/cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-header {
    text-align: center;
}

.service-header h3 {
    margin-bottom: 0;
}

.service-icon {
    margin-right: 1rem;
    font-size: 1.8rem;
    color: var(--accent-color);
}

.service-content {
    padding: 1.5rem;
    text-align: center;
}

.service-content ul {
    margin-bottom: 1.5rem;
}

.service-content li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-content li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-card .btn {
    width: 100%;
    text-align: center;
}

/* ---------- Testimonials Section ---------- */
.testimonials {
    background-color: var(--bg-color);
}

.testimonials-title {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--light-accent);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-color);
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary-accent1);
}

.testimonial-role {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ---------- Process Section ---------- */
.process {
    background-color: var(--light-accent);
    position: relative;
    overflow: hidden;
}

.process-title {
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    position: relative;
    padding-left: 30px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    height: 100%;
    width: 2px;
    background-color: var(--accent-color);
    opacity: 0.5;
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 30px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: -30px;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-color);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-content {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    margin-bottom: 1rem;
}

/* ---------- FAQ Section ---------- */
.faq {
    background-color: var(--bg-color);
}

.faq-title {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--light-accent);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--light-accent);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(26, 46, 65, 0.9);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    display: block;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 20px;
    text-decoration: none;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(11, 31, 50, 0.5);
}

.faq-answer p {
    padding: 1.5rem 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ---------- Contact Section ---------- */
.contact {
    background-color: var(--dark-accent);
    position: relative;
    overflow: hidden;
}

.contact-title {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-accent);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 1rem;
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-color);
    background-color: rgba(11, 31, 50, 0.8);
    border: 1px solid var(--bg-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 209, 0, 0.2);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FFD100' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.checkbox-group input {
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.9rem;
}

.form-submit {
    text-align: center;
}

/* ---------- Footer ---------- */
footer {
    background: linear-gradient(135deg, var(--dark-accent) 0%, var(--bg-color) 100%);
    padding: 5rem 0 0;
    position: relative;
}

/* Unique footer background */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 31, 50, 0.8) 0%, rgba(7, 21, 37, 0.9) 100%);
    z-index: -1;
}

/* Add geometric pattern to footer */
footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--light-accent) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
}

.footer-section p {
    margin-bottom: 1rem;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section.contact ul li {
    display: flex;
    align-items: flex-start;
}

.footer-section.contact ul li i {
    margin-right: 0.75rem;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 244, 249, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ---------- Cookie Popup ---------- */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 1.5rem 0;
    z-index: 9999;
    display: none;
}

.cookie-popup.active {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-content p {
    margin: 0 1rem 1rem 0;
    flex: 1 1 300px;
    font-weight: 600;
}

.cookie-content a {
    color: var(--bg-color);
    text-decoration: underline;
}

.cookie-content button {
    background-color: var(--bg-color);
    color: var(--accent-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-content button:hover {
    background-color: var(--dark-accent);
}

/* ---------- Policy Pages ---------- */
.policy-page {
    padding-top: 120px;
    padding-bottom: 4rem;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--light-accent);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.policy-container h1 {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.policy-section p {
    margin-bottom: 1rem;
}

.policy-section ul {
    padding-left: 2rem;
    list-style-type: disc;
    margin-bottom: 1.5rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
}

/* ---------- Thank You Page ---------- */
.thank-you {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    background-color: var(--bg-color);
    position: relative;
}

.thank-you-content {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.thank-you-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px dashed var(--secondary-accent1);
    border-radius: 20px;
    z-index: -1;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--bg-color);
    margin: 0 auto 2rem;
}

.thank-you h1 {
    margin-bottom: 1.5rem;
}

.thank-you p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.thank-you .btn {
    margin-top: 1rem;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    .about-content {
        flex-direction: column-reverse;
    }

    .process-steps::before {
        display: none;
    }
    
    .step-number {
        left: -15px;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content {
        padding-left: 2.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    h2 {
        font-size: 2rem;
        text-align: center;
    }

    /* Center hero content on mobile */
    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }

    /* Center about content on mobile */
    .about-text {
        text-align: center;
    }

    /* Experience box centering on mobile */
    .experience-box {
        justify-content: center;
        margin: 0 auto;
    }

    .menu-icon {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -70%;
        width: 70%;
        height: 100vh;
        background-color: rgba(11, 31, 50, 0.95);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 2rem 2rem;
        transition: all 0.3s ease;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .policy-container {
        padding: 2rem;
    }

    /* Mobile process section adjustments */
    .process-steps {
        padding-left: 0;
    }
    
    .process-step {
        padding-left: 0;
        margin-bottom: 4rem;
    }
    
    .step-number {
        left: 50%;
        top: -30px;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content {
        text-align: center;
        padding: 2.5rem 1.5rem 1.5rem;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 4rem 0;
    }

    /* Make the first block more readable on small screens */
    .hero {
        padding-top: 100px;
        align-items: flex-start;
    }

    .hero-content {
        padding-top: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content button {
        margin-top: 1rem;
    }
} 