/* 
* AuditPro - Main stylesheet
* Fully responsive, CSS-only animations
*/ 

:root {
    /* Color palette */
    --color-primary-start: #8E44AD;
    --color-primary-end: #FF6F61;
    --color-text-light: #FFFFFF;
    --color-text-dark: #2C3E50;
    --color-accent-lime: #A4FF00;
    --color-accent-turquoise: #00E6E6;
    --font-primary: 'Montserrat', sans-serif;
    --transition-speed: 0.3s;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text-dark);
    background: linear-gradient(135deg, var(--color-primary-start), var(--color-primary-end));
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--color-accent-turquoise);
    text-decoration: none;
    transition: all var(--transition-speed);
}

a:hover {
    color: var(--color-accent-lime);
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
}

p {
    margin-bottom: 1.5rem;
}

.text-highlight {
    color: var(--color-accent-lime);
    font-weight: 600;
}

.text-center {
    text-align: center;
}

/* Button styles */
.button, .cta-button, .cookie-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: none;
}

.button {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-text-light);
    border: 2px solid var(--color-text-light);
}

.button:hover {
    background: var(--color-text-light);
    color: var(--color-primary-start);
}

.cta-button {
    background: var(--color-accent-lime);
    color: var(--color-text-dark);
    box-shadow: 0 4px 15px rgba(164, 255, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--color-accent-lime);
    box-shadow: 0 6px 20px rgba(164, 255, 0, 0.4);
    color: var(--color-text-dark);
    opacity: 0.9;
}

/* Header styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--color-text-light);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--color-accent-lime);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-text-light);
    transition: all var(--transition-speed);
}

/* Hero section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    color: var(--color-text-light);
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

/* Section styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--color-accent-turquoise);
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About section */
.about {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    color: var(--color-text-light);
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all var(--transition-speed);
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits section */
.benefits {
    background: rgba(46, 49, 65, 0.8);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all var(--transition-speed);
}

.benefit-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--color-accent-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-text-dark);
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--color-text-light);
    opacity: 0.9;
}

/* Services section */
.services {
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: all var(--transition-speed);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-price {
    font-weight: 700;
    color: var(--color-accent-turquoise);
    font-size: 1.8rem;
    margin: 15px 0;
}

.service-cta {
    display: block;
    text-align: center;
    margin-top: 20px;
}

/* Why us section */
.why-us {
    background: rgba(46, 49, 65, 0.8);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.why-us-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all var(--transition-speed);
}

.why-us-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.why-us-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-accent-lime);
}

.why-us-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Testimonials section */
.testimonials {
    background: rgba(255, 255, 255, 0.05);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.testimonial-text {
    color: var(--color-text-light);
    font-style: italic;
    font-size: 1.1rem;
    position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 40px;
    color: var(--color-accent-turquoise);
    line-height: 0;
    position: absolute;
}

.testimonial-text:before {
    top: 15px;
    left: -15px;
}

.testimonial-text:after {
    bottom: -10px;
    right: -15px;
}

.testimonial-author {
    margin-top: 20px;
    color: var(--color-accent-lime);
    font-weight: 600;
}

.testimonial-company {
    color: var(--color-text-light);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Contact section */
.contact {
    background: rgba(46, 49, 65, 0.9);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-form-container {
    flex: 3;
    min-width: 300px;
}

.contact-info {
    flex: 2;
    min-width: 300px;
}

.contact-info h3 {
    color: var(--color-accent-lime);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.form-title {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

/* Form styles */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-light);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--color-text-light);
    transition: all var(--transition-speed);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

select.form-control option {
    background-color: #2C3E50;
    color: var(--color-text-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent-lime);
    background: rgba(255, 255, 255, 0.15);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check input {
    margin-top: 6px;
    margin-right: 10px;
}

.form-check label {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.form-check a {
    text-decoration: underline;
}

/* Footer styles */
.site-footer {
    background: rgba(44, 62, 80, 0.95);
    padding: 60px 0 20px;
    color: var(--color-text-light);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-info,
.footer-contact,
.footer-legal {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-legal ul {
    list-style: none;
}

.footer-legal li {
    margin-bottom: 10px;
}

.footer-legal a {
    color: var(--color-text-light);
    opacity: 0.8;
    transition: all var(--transition-speed);
}

.footer-legal a:hover {
    color: var(--color-accent-lime);
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(46, 49, 65, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-speed);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    color: var(--color-text-light);
    margin: 0;
    flex: 3;
    min-width: 200px;
    font-size: 0.95rem;
}

.cookie-button {
    background: var(--color-accent-lime);
    color: var(--color-text-dark);
    flex: 0 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatingElement {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        transform: none;
        order: -1;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(44, 62, 80, 0.95);
        padding: 20px 0;
        clip-path: circle(0% at top right);
        transition: clip-path 0.5s ease-in-out;
        visibility: hidden;
    }
    
    .main-nav.active {
        clip-path: circle(150% at top right);
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav li {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding-top: 150px;
        min-height: 100vh;
        height: auto;
    }
    
    .hero-content {
        padding-top: 30px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-top: 20px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .service-card {
        max-width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
}

/* Policy Pages Styles */
.policy-page {
    padding: 120px 0 60px;
    background: rgba(46, 49, 65, 0.8);
}

.policy-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    color: var(--color-text-light);
}

.policy-page h1 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-accent-lime);
}

.last-updated {
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.7;
    text-align: center;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    color: var(--color-accent-turquoise);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.policy-section p {
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.policy-section ul,
.policy-section ol {
    color: var(--color-text-light);
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section li {
    margin-bottom: 5px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.cookie-table th, .cookie-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-table th {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.cookie-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Thank You Page */
.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 60px;
}

.thank-you-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.thank-you-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.button-group {
    margin-top: 40px;
} 