/* 
-------------------------------------------------
NovaAudit - Main Stylesheet
-------------------------------------------------
Color Scheme:
- Main Background: #3F3D56 (indigo)
- Accent: #FF6F61 (coral)
- Additional: #89CFF0 (slate blue), #E5E5E5 (platinum gray), #D0FF14 (lime)
-------------------------------------------------
*/

/* --- Base Styles --- */
:root {
    --color-primary: #3F3D56;
    --color-accent: #FF6F61;
    --color-secondary: #89CFF0;
    --color-gray: #E5E5E5;
    --color-lime: #D0FF14;
    --color-white: #FFFFFF;
    --color-black: #222222;
    --font-main: 'Poppins', 'Helvetica', sans-serif;
    --font-heading: 'Montserrat', 'Arial', sans-serif;
    --transition: all 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-black);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-accent);
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container1 {

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container2{
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    margin-top: 1rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.5rem;
}

/* --- Buttons --- */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: 2px solid var(--color-accent);
    margin-bottom: 20px;
}

.btn-primary:hover {
    background-color: white;
    color: var(--color-accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* --- Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 180px;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: var(--color-primary);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--color-accent);
}

/* --- Main Content --- */
main {
    margin-top: 80px;
    min-height: 100vh;
}

/* Diagonal Divider */
.diagonal-divider {
    position: relative;
    height: 100px;
    margin-top: -100px;
}

.diagonal-divider::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100px;
    background-color: var(--color-white);
    transform: skewY(-4deg);
    z-index: 5;
    top: 50px;
}

.diagonal-divider.reversed::before {
    transform: skewY(4deg);
}

/* Section Styling */
section {
    padding: 5rem 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--color-white);
}

section:nth-child(even) {
    background-color: var(--color-gray);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: rgb(255, 84, 84);
    text-shadow: #222222 1px 1px 1px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--color-black);
}

/* --- About Section --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Features/Why Us Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 0;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.8rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.service-price {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0;
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    position: relative;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-quote::before, .testimonial-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.3;
    position: absolute;
}

.testimonial-quote::before {
    top: -2rem;
    left: -1rem;
}

.testimonial-quote::after {
    bottom: -4rem;
    right: -1rem;
}

.testimonial-quote p {
    font-style: italic;
    color: var(--color-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    margin-right: 1rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info p {
    margin-bottom: 0;
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* --- Partners Section --- */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.partner-logo {
    text-align: center;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo p {
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: var(--color-primary);
    font-weight: 600;
}

/* --- Contact Section --- */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgb(110, 110, 110);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-weight: 500;
}

.contact-form input, .contact-form select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgb(110, 110, 110);
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 1rem;
}

.contact-form input:focus, .contact-form select:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    background: var(--color-white);

    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-icon {
    margin-bottom: 1rem;
}

.info-card h4 {
    margin-bottom: 0.8rem;
}

.info-card p {
    margin-bottom: 0;
}

/* --- FAQ Section --- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.faq-item p {
    margin-bottom: 0;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-description {
    margin-top: 1.5rem;
    color: var(--color-gray);
}

.footer-contact, .footer-links, .footer-legal {
    margin-top: 1rem;
}

.footer-contact h3, .footer-links h3, .footer-legal h3 {
    color: var(--color-white);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.footer-contact address p {
    margin-bottom: 0.8rem;
    color: var(--color-gray);
}

.footer-contact a, .footer-links a, .footer-legal a {
    color: var(--color-gray);
}

.footer-contact a:hover, .footer-links a:hover, .footer-legal a:hover {
    color: var(--color-accent);
}

.footer-links ul, .footer-legal ul {
    display: grid;
    gap: 0.8rem;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright p {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Thank You Page --- */
.thank-you-section {
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    border: 1px solid rgb(110, 110, 110);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 15px 105px rgba(0, 0, 0, 0.562);
}

.thank-you-icon {
    margin: 0 auto 2rem;
}

.thank-you-info {
    margin: 2rem 0;
    text-align: left;
}

.thank-you-info ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

/* --- Legal Pages --- */
.legal-section {
    min-height: calc(100vh - 80px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-content h1 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.legal-content .legal-section {
    margin-bottom: 2.5rem;
    min-height: auto;
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-date {
    margin-top: 3rem;
    text-align: right;
    font-style: italic;
    color: var(--color-primary);
}

.legal-back {
    text-align: center;
    margin-top: 3rem;
}

/* --- Cookie Popup --- */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 400px;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    z-index: 9999;
}

.cookie-content h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.cookie-content p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cookie-content form {
    text-align: right;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-popup {
        left: 1rem;
        right: 1rem;
        max-width: calc(100% - 2rem);
    }
}

@media (max-width: 576px) {
    .main-header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 0.5rem;
    }
    
    main {
        margin-top: 140px;
    }
    
    .hero-section {
        height: calc(100vh - 60px);
    }
    
    .hero-content {
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
} 