/* 
 * Financial Audit Experts - Main Stylesheet
 * This file contains all styles for the website
 * Color scheme: Midnight Blue, Electric Cyan, Magenta Fusion, Platinum Gray, Deep Neon Green
 */

/* ===== CSS RESET & BASE STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color variables */
    --primary-bg: #1B1F3B;  /* Midnight Blue */
    --accent-cyan: #00FFFF; /* Electric Cyan */
    --accent-magenta: #FF00FF; /* Magenta Fusion */
    --text-color: #EAEAEA; /* Platinum Gray */
    --button-color: #39FF14; /* Deep Neon Green */
    --link-color: #A6E3E9; /* Pastel Blue */
    --section-bg: #2B2B2B; /* Dark Gray */
    
    /* Font families */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-tertiary: 'DM Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat');
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: local('DM Sans');
    font-display: swap;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-bg);
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
    max-width: 100%;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-cyan);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

/* Section background with radial gradient */
.section-bg {
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.05), transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(255, 0, 255, 0.05), transparent 40%);
    pointer-events: none;
}

/* Button styles */
.button {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-bg);
    background-color: var(--button-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: -1;
}

.button:hover {
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.4);
}

.button:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(27, 31, 59, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: var(--spacing-md);
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
    color: var(--primary-bg) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 255, 255, 0.3);
}

.cta-button::after {
    display: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 0, 255, 0.4);
}

/* Mobile menu */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px; /* Account for fixed header */
    overflow: hidden;
    text-align: center; /* Center text */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./img/q2Zyzx.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.3;
    filter: blur(3px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.1), transparent 40%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
    margin: 0 auto; /* Center the content */
    text-align: center; /* Center text */
}

.hero-title {
    margin-bottom: var(--spacing-md);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.hero-cta-wrapper {
    display: flex;
    justify-content: center;
}

.hero-cta {
    display: inline-block;
}

/* About Section */
.about {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    z-index: 1;
}

.about-content {
    animation: fadeInUp 1.2s ease-out;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.service-card {
    background-color: rgba(43, 43, 43, 0.5);
    border-radius: 15px;
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInUp 0.8s ease-out;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:nth-child(4) {
    animation-delay: 0.6s;
}

.service-card:nth-child(5) {
    animation-delay: 0.8s;
}

.service-card:nth-child(6) {
    animation-delay: 1s;
}

.service-card:nth-child(7) {
    animation-delay: 1.2s;
}

.service-card:nth-child(8) {
    animation-delay: 1.4s;
}

.service-card:nth-child(9) {
    animation-delay: 1.6s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

/* Advantages Section */
.advantages-list {
    list-style: none;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    animation: fadeInLeft 0.8s ease-out;
}

.advantage-item:nth-child(2) {
    animation-delay: 0.2s;
}

.advantage-item:nth-child(3) {
    animation-delay: 0.4s;
}

.advantage-item:nth-child(4) {
    animation-delay: 0.6s;
}

.advantage-item:nth-child(5) {
    animation-delay: 0.8s;
}

.advantage-icon {
    margin-right: var(--spacing-sm);
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantage-content {
    flex: 1;
}

.advantage-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Process Section */
.process-flow {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: var(--spacing-lg) 0;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
    transform: translateY(-50%);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 120px;
    animation: fadeInUp 0.8s ease-out;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.4s;
}

.process-step:nth-child(4) {
    animation-delay: 0.6s;
}

.process-step:nth-child(5) {
    animation-delay: 0.8s;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-bg);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta)) 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-slider {
    position: relative;
    margin: var(--spacing-md) 0;
    overflow: hidden;
}

.testimonial-card {
    background-color: rgba(43, 43, 43, 0.5);
    border-radius: 15px;
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 var(--spacing-sm);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.6s;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-left: var(--spacing-sm);
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 3rem;
    color: var(--accent-cyan);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: var(--spacing-sm);
}

.author-name {
    font-weight: 600;
}

.author-title {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.pricing-card {
    background-color: rgba(43, 43, 43, 0.5);
    border-radius: 15px;
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease-out;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.3s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.6s;
}

.pricing-card.popular {
    transform: scale(1.05);
    z-index: 1;
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta)) 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-plan {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.pricing-period {
    font-size: 0.875rem;
    opacity: 0.7;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.pricing-feature {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.pricing-feature::before {
    content: '✓';
    margin-right: 0.5rem;
    color: var(--accent-cyan);
    font-weight: 700;
}

.pricing-cta {
    text-align: center;
}

/* Contact Form */
.contact {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.contact-info {
    animation: fadeInLeft 0.8s ease-out;
}

.contact-form {
    background: rgba(43, 43, 43, 0.6);
    border-radius: 20px;
    padding: var(--spacing-md);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    animation: fadeInRight 0.8s ease-out;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.2);
}

.form-radio-group {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.form-radio-label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: inline-block;
    margin-right: var(--spacing-md);
}

.form-radio {
    position: absolute;
    opacity: 0;
}

.radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.form-radio:checked ~ .radio-checkmark {
    background-color: var(--accent-cyan);
}

.form-checkbox-group {
    margin-bottom: var(--spacing-md);
}

.form-checkbox-label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: block;
    margin-bottom: 0.5rem;
}

.form-checkbox {
    position: absolute;
    opacity: 0;
}

.checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.form-checkbox:checked ~ .checkbox-checkmark {
    background-color: var(--accent-cyan);
}

.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.form-checkbox:checked ~ .checkbox-checkmark:after {
    display: block;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-submit {
    width: 100%;
}

/* Footer */
.main-footer {
    background-color: rgba(27, 31, 59, 0.95);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-md);
}

.footer-about p {
    margin-bottom: var(--spacing-sm);
    max-width: 400px;
}

.footer-contact address {
    font-style: normal;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: rgba(27, 31, 59, 0.95);
    border-radius: 10px;
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideUp 0.5s forwards;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-content p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
}

.cookie-accept {
    background-color: var(--button-color);
    color: var(--primary-bg);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background-color: var(--accent-cyan);
}

.cookie-more {
    margin-left: var(--spacing-sm);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Remove fade-in class and make animations work by default */
.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Thank you page styles */
.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-lg) 0;
    position: relative;
}

.thanks-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.1), transparent 40%);
    z-index: 0;
}

.thanks-content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    color: var(--accent-cyan);
}

.thanks-title {
    margin-bottom: var(--spacing-sm);
}

.thanks-message {
    margin-bottom: var(--spacing-md);
}

.back-home-wrapper {
    display: flex;
    justify-content: center;
}

.back-home {
    display: inline-block;
}

/* Media Queries */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-flow {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .process-flow::before {
        display: none;
    }
    
    .process-step {
        width: 45%;
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: var(--spacing-md);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .menu-icon {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.5s ease;
        z-index: -1;
    }
    
    .nav-links li {
        margin: var(--spacing-sm) 0;
    }
    
    .menu-toggle:checked ~ .nav-links {
        transform: translateX(0);
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 576px) {
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .process-step {
        width: 100%;
    }
    
    .contact-form {
        clip-path: none;
    }
}

/* Updated service and advantage icon styles */
.service-icon img, 
.advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} 