/* 
* Domain - Financial Audit Website
* Colors:
* - Cyan Dusk: #00B7C2
* - Velvet Grape: #5B2A86
* - Peach Sand: #FFD8BE
* - Jet Black: #2C2C2C
* - Snow Mist: #F8F9FA
*/

/* Reset & Base Styles */
:root {
    --cyan-dusk: #00B7C2;
    --velvet-grape: #5B2A86;
    --peach-sand: #FFD8BE;
    --jet-black: #2C2C2C;
    --snow-mist: #F8F9FA;
    --light-gray: #E9ECEF;
    --mid-gray: #ADB5BD;
    --dark-gray: #495057;
    
    --container-width: 1140px;
    --header-height: 80px;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--jet-black);
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--jet-black);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 60px;
    background: var(--cyan-dusk);
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--cyan-dusk);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--velvet-grape);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 5rem 0;
}

.section-intro {
    font-size: 1.2rem;
    max-width: 700px;
    margin: -1rem auto 3rem;
    text-align: center;
    color: var(--dark-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--snow-mist);
    color: var(--jet-black);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-primary {
    background-color: var(--cyan-dusk);
    color: white;
}

.btn-primary:hover {
    background-color: var(--velvet-grape);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.logo-text {
    font-size: 1.8rem;
    color: var(--velvet-grape);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: var(--jet-black);
    font-weight: 500;
    position: relative;
    display: inline-block;
    line-height: 1;
}

.main-nav a:not(.btn):hover {
    color: var(--cyan-dusk);
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--cyan-dusk);
    transition: var(--transition);
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

/* Mobile Menu */
@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 21px;
        width: 30px;
        cursor: pointer;
    }
    
    .nav-toggle-label span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--jet-black);
        transition: var(--transition);
    }
    
    .main-nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: white;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .main-nav li {
        margin: 0;
        text-align: center;
        padding: 0.75rem 0;
    }
    
    .nav-toggle:checked ~ .main-nav {
        height: calc(100vh - var(--header-height));
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--peach-sand);
    overflow: hidden;
    padding-top: var(--header-height);
    border: none;
    box-shadow: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--jet-black);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 400% 400%;
    opacity: 0.1;
    z-index: 1;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* About Section */
.about {
    background-color: var(--snow-mist);
}

.about h2 {
    text-align: center;
}

.about h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
}

/* Services Section */
.services h2 {
    text-align: center;
}

.services h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 183, 194, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Audit Types Section */
.audit-types {
    background-color: var(--snow-mist);
}

.audit-types h2 {
    text-align: center;
}

.audit-types h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.audit-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.audit-type {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.audit-type h3 {
    padding: 1.5rem 2rem;
    margin: 0;
    background-color: var(--cyan-dusk);
    color: white;
}

.audit-image {
    height: 200px;
    overflow: hidden;
}

.audit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.audit-type:hover .audit-image img {
    transform: scale(1.05);
}

.audit-content {
    padding: 2rem;
}

@media screen and (max-width: 992px) {
    .audit-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .audit-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits Section */
.benefits h2 {
    text-align: center;
}

.benefits h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--snow-mist);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.benefit-icon {
    margin: 0 auto 1.5rem;
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--velvet-grape);
    color: white;
}

.testimonials h2 {
    text-align: center;
    color: white;
}

.testimonials h2::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--cyan-dusk);
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeEffect 1s;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
    }
}

.testimonial-content {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

blockquote {
    font-style: italic;
    margin: 0;
    position: relative;
    padding: 0 0 0 2rem;
}

blockquote::before {
    content: """;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 4rem;
    line-height: 1;
    color: var(--cyan-dusk);
    font-family: Georgia, serif;
}

blockquote p {
    margin-bottom: 1.5rem;
}

cite {
    font-style: normal;
    display: block;
    margin-top: 1rem;
    color: var(--peach-sand);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.active {
    background-color: var(--cyan-dusk);
    transform: scale(1.2);
}

/* Contact Form Section */
.contact {
    background-color: var(--snow-mist);
}

.contact h2 {
    text-align: center;
}

.contact h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.order-form {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.checkbox-group {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

input[type="text"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: inherit;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--cyan-dusk);
    box-shadow: 0 0 0 3px rgba(0, 183, 194, 0.1);
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

@media screen and (max-width: 768px) {
    .order-form {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}

/* FAQ Section */
.faq h2 {
    text-align: center;
}

.faq h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background-color: white;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-size: 1.1rem;
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--cyan-dusk);
    transition: var(--transition);
}

.faq-icon::before {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}

.faq-icon::after {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.faq-item.active .faq-icon::before {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--snow-mist);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

/* Footer */
.site-footer {
    background-color: var(--jet-black);
    color: var(--light-gray);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info .logo {
    margin-bottom: 1.5rem;
}

.company-summary {
    max-width: 400px;
    color: var(--mid-gray);
}

.footer-contact h3,
.footer-links h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-contact h3::after,
.footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--cyan-dusk);
}

.footer-contact address {
    font-style: normal;
    color: var(--mid-gray);
}

.footer-contact p {
    margin-bottom: 1rem;
}

.footer-contact a {
    color: var(--mid-gray);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--cyan-dusk);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--mid-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--cyan-dusk);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--mid-gray);
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Cookie Consent Popup */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    max-width: 400px;
    width: 90%;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 9999;
}

.cookie-content {
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Policy Pages */
.policy-page {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.policy-content h1 {
    margin-bottom: 1.5rem;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h2::after {
    width: 40px;
    height: 3px;
}

.last-updated {
    font-style: italic;
    color: var(--mid-gray);
    margin-bottom: 2rem;
}

/* Thank You Page */
.thank-you {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height) - 300px);
    padding: 2rem 0;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.success-icon {
    margin: 2rem auto;
    width: 100px;
    height: 100px;
    background-color: rgba(0, 183, 194, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-message {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.actions {
    margin-top: 2rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

main {
    margin-top: var(--header-height);
}

/* SVG Favicon Styles */
.favicon-svg {
    fill: var(--cyan-dusk);
} 