/* Global Variables */
:root {
    --electric-mint: #00FFB3;
    --midnight-indigo: #1A1A40;
    --lemon-ash: #F2F29D;
    --coral-flame: #FF5E57;
    --white-smoke: #F5F5F5;
    
    --primary-font: 'Poppins', sans-serif;
    --transition-speed: 0.3s;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    color: var(--midnight-indigo);
    background-color: var(--white-smoke);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--electric-mint);
    margin: 15px auto;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background-color: var(--electric-mint);
    color: var(--midnight-indigo);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: center;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.button-secondary {
    background-color: transparent;
    border: 2px solid var(--electric-mint);
    color: var(--electric-mint);
}

.button-secondary:hover {
    background-color: var(--electric-mint);
    color: var(--midnight-indigo);
}

/* Header and Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 64, 0.95);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--electric-mint);
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--white-smoke);
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--electric-mint);
    transition: width var(--transition-speed) ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--electric-mint);
    color: var(--midnight-indigo) !important;
    padding: 10px 20px;
    border-radius: 50px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 179, 0.3);
}

.cta-button::after {
    display: none;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--electric-mint);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 10px;
}

.menu-icon span:nth-child(3) {
    top: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--midnight-indigo), #2D2D7F);
    color: var(--white-smoke);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('./img/PXlaR2.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-highlight {
    color: var(--electric-mint);
    position: relative;
    display: inline-block;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    justify-content: center;
}

/* About Section */
.about {
    background-color: var(--white-smoke);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
}

/* Services Section */
.services {
    background-color: var(--midnight-indigo);
    color: var(--white-smoke);
}

.services-title {
    color: var(--white-smoke);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--electric-mint);
    transition: height var(--transition-speed) ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-image {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--electric-mint);
}

/* Benefits Section */
.benefits {
    background-color: var(--white-smoke);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(0, 255, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-title {
    margin-bottom: 15px;
    color: var(--midnight-indigo);
}

/* Audit Types Section */
.audit-types {
    background-color: var(--midnight-indigo);
    color: var(--white-smoke);
}

.audit-types-title {
    color: var(--white-smoke);
}

.audit-types-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.audit-type {
    padding: 40px 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.audit-type:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.audit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--electric-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--midnight-indigo);
}

.audit-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--electric-mint);
}

.audit-description {
    margin-bottom: 25px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white-smoke);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-family: serif;
    color: rgba(0, 255, 179, 0.2);
    line-height: 1;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-name {
    font-weight: 600;
}

.author-role {
    color: #777;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background-color: var(--white-smoke);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--midnight-indigo);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--electric-mint);
    transition: transform var(--transition-speed) ease;
}

.faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    background-color: rgba(0, 255, 179, 0.05);
}

.faq-answer.show {
    padding: 20px;
    max-height: 1000px;
}

/* Contact Form Section */
.contact {
    background: linear-gradient(135deg, var(--midnight-indigo), #2D2D7F);
    color: var(--white-smoke);
}

.contact-title {
    color: var(--white-smoke);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--white-smoke);
    font-family: var(--primary-font);
    transition: all var(--transition-speed) ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--electric-mint);
    box-shadow: 0 0 0 3px rgba(0, 255, 179, 0.25);
}

.form-select {
    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='%23f5f5f5' 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 12px center;
    background-size: 16px;
    color: white;
    font-weight: 500;
    border: 2px solid var(--electric-mint);
    cursor: pointer;
}

.form-select option {
    background-color: var(--midnight-indigo);
    color: white;
    padding: 10px;
}

.form-select:focus {
    box-shadow: 0 0 0 3px rgba(0, 255, 179, 0.4);
    outline: none;
}

.checkbox-group {
    margin-top: 20px;
    margin-bottom: 30px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-container a {
    color: var(--electric-mint);
    text-decoration: underline;
}

.submit-btn {
    background-color: var(--electric-mint);
    color: var(--midnight-indigo);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-family: var(--primary-font);
    font-size: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.main-footer {
    background-color: var(--midnight-indigo);
    color: var(--white-smoke);
    padding: 60px 0 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--electric-mint);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-info li, .legal-links li {
    margin-bottom: 10px;
}

.contact-info a, .legal-links a {
    color: var(--white-smoke);
    transition: color var(--transition-speed) ease;
}

.contact-info a:hover, .legal-links a:hover {
    color: var(--electric-mint);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: var(--midnight-indigo);
    color: var(--white-smoke);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: none;
    animation: slideUp 0.5s ease forwards;
}

.cookie-consent.show {
    display: block;
}

.cookie-text {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
}

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

.policy-content h1 {
    color: var(--midnight-indigo);
    margin-bottom: 30px;
}

.policy-content h2 {
    color: var(--midnight-indigo);
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content p, .policy-content ul, .policy-content ol {
    margin-bottom: 20px;
}

.policy-content ul, .policy-content ol {
    margin-left: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-you {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.thank-you-content {
    max-width: 600px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: 2px solid var(--electric-mint);
    position: relative;
    margin: 0 auto;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you h1 {
    color: var(--midnight-indigo);
    margin-bottom: 20px;
    font-size: 2.8rem;
}

.check-icon {
    width: 100px;
    height: 100px;
    background-color: var(--electric-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--midnight-indigo);
    box-shadow: 0 10px 20px rgba(0, 255, 179, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .menu-icon {
        display: block;
        z-index: 1001;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--midnight-indigo);
        z-index: 1000;
        padding: 80px 30px;
        transition: right var(--transition-speed) ease;
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav a {
        display: block;
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}