/* 
   Main Stylesheet for AuditPro
   Color scheme:
   - Main background: deep neon indigo (#4b0082)
   - Accents: mint (#98ff98), gold-yellow (#ffd700), coal-gray (#2e2e2e)
   - Text: light gray (#f2f2f2) on dark backgrounds, coal-black (#111111) on light backgrounds
*/

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #4b0082;
    color: #f2f2f2;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #98ff98;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffd700;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.8em;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    list-style-type: none;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Fix for header overlapping section content when using anchor links */
section[id] {
    scroll-margin-top: 90px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #98ff98;
    color: #111111;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border: 2px solid #98ff98;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    color: #98ff98;
}

.btn-nav {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-service {
    margin-top: 20px;
    font-size: 0.9rem;
}

.btn-cookie {
    padding: 8px 16px;
    font-size: 0.8rem;
    margin-left: 15px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(46, 46, 46, 0.95);
    padding: 15px;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    padding-right: 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.main-header {
    position: sticky;
    top: 0;
    padding: 20px 0;
    background-color: rgba(46, 46, 46, 0.95);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: #f2f2f2;
}

.logo svg {
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #98ff98;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    color: #f2f2f2;
    font-weight: 500;
    position: relative;
}

.main-nav a:not(.btn):after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #98ff98;
    transition: width 0.3s ease;
}

.main-nav a:not(.btn):hover:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #f2f2f2;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(75, 0, 130, 0.9), rgba(75, 0, 130, 0.9)), url(../img/6iOwVR.jpg) center/cover no-repeat;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: #2e2e2e;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    text-align: center;
}

.benefits h2 {
    color: #ffd700;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 30px 20px;
    background-color: #2e2e2e;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #98ff98;
}

.benefit-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

/* Icons */
[class^="icon-"] {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: rgba(152, 255, 152, 0.2);
    border-radius: 50%;
    line-height: 60px;
    position: relative;
}

.icon-certificate:before {
    content: "✓";
    font-size: 30px;
    color: #98ff98;
}

.icon-shield:before {
    content: "🔒";
    font-size: 25px;
}

.icon-clock:before {
    content: "⏱";
    font-size: 25px;
}

.icon-document:before {
    content: "📄";
    font-size: 25px;
}

.icon-location:before {
    content: "📍";
    font-size: 25px;
    color: #98ff98;
}

.icon-phone:before {
    content: "📞";
    font-size: 25px;
    color: #98ff98;
}

.icon-email:before {
    content: "✉";
    font-size: 25px;
    color: #98ff98;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: #2e2e2e;
    text-align: center;
}

.services h2 {
    color: #ffd700;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #4b0082;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    color: #ffd700;
    padding: 20px 20px 10px;
}

.service-card p {
    padding: 0 20px;
    margin-bottom: 20px;
}

.service-price {
    color: #98ff98;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 15px 0;
}

.service-card .btn {
    margin: 0 20px 20px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    text-align: center;
}

.testimonials h2 {
    color: #ffd700;
    margin-bottom: 50px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    padding: 30px;
    background-color: #2e2e2e;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding: 20px 0;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: rgba(152, 255, 152, 0.2);
    font-family: sans-serif;
}

.testimonial-author {
    margin-top: 20px;
    text-align: right;
}

.testimonial-author strong {
    color: #ffd700;
}

/* ===== FAQ SECTION ===== */
.faq {
    background-color: #2e2e2e;
}

.faq h2 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: #4b0082;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question h3 {
    color: #ffd700;
    position: relative;
    padding-right: 30px;
}

.faq-answer {
    margin-top: 10px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    text-align: center;
}

.contact-form h2 {
    color: #ffd700;
    margin-bottom: 40px;
}

.custom-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #2e2e2e;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #333;
    color: #f2f2f2;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #98ff98;
    box-shadow: 0 0 0 2px rgba(152, 255, 152, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    display: inline;
}

.form-submit {
    margin-top: 30px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: #2e2e2e;
}

.contact h2 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.5rem;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.map-placeholder p {
    position: relative;
    z-index: 2;
    background-color: rgba(46, 46, 46, 0.8);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: #1a0033;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #98ff98;
    margin-left: 10px;
}

.footer-about p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    color: #ffd700;
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: #f2f2f2;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #98ff98;
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(46, 46, 46, 0.95);
        padding: 20px;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        z-index: 99;
    }
    
    .main-nav.active {
        clip-path: circle(150% at 100% 0);
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav li {
        margin: 15px 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-bottom: 15px;
        padding-right: 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .benefits-grid,
    .services-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .custom-form {
        padding: 20px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
} 