/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: #c3ff00;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a3d600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #c3ff00;
    color: #1a1a1a !important;
}

.btn-primary:hover {
    background-color: #a3d600;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #333;
    color: #ffffff;
    border: 2px solid #c3ff00;
}

.btn-secondary:hover {
    background-color: #c3ff00;
    color: #1a1a1a;
}

.btn-outline {
    background-color: transparent;
    color: #c3ff00;
    border: 2px solid #c3ff00;
}

.btn-outline:hover {
    background-color: #c3ff00;
    color: #1a1a1a;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    border-top: 3px solid #c3ff00;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Header */
.header {
    background-color: #2a2a2a;
    border-bottom: 2px solid #c3ff00;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-brand a:hover {
    color: #c3ff00;
}

.logo {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #c3ff00;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-dark {
    background-color: #2a2a2a;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    margin-bottom: 20px;
}

.section-header h2 {
    color: #ffffff;
}

.section-header p {
    color: #cccccc;
    font-size: 1.2rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background-color: #333333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #444444;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #c3ff00;
    transform: translateY(-5px);
}

.card-icon {
    margin-bottom: 20px;
}

.card h3 {
    color: #c3ff00;
    margin-bottom: 15px;
}

.card p {
    color: #cccccc;
}

.stat-card {
    background-color: #333333;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #c3ff00;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #c3ff00;
    margin-bottom: 10px;
}

.stat-label {
    color: #cccccc;
    font-size: 1.1rem;
}

.service-card {
    background-color: #333333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #444444;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #c3ff00;
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.rating {
    color: #c3ff00;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.price {
    color: #c3ff00;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #cccccc;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: #c3ff00;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #cccccc;
}

.faq-item {
    background-color: #333333;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #c3ff00;
}

.faq-item h4 {
    color: #c3ff00;
    margin-bottom: 15px;
}

.faq-item p {
    color: #cccccc;
}

.review-card {
    background-color: #333333;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #444444;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #c3ff00;
}

.stars {
    color: #c3ff00;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-card p {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 15px;
}

.reviewer {
    color: #c3ff00;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #333333;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #444444;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #c3ff00;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #555555;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-family: 'Lora', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c3ff00;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    border-top: 3px solid #c3ff00;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #c3ff00;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #c3ff00;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333333;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #c3ff00;
}

.social-links a:hover svg {
    fill: #1a1a1a !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444444;
}

.footer-bottom p {
    color: #888888;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2a2a2a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 2px solid #c3ff00;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 0;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .grid,
    .stats-grid,
    .services-grid,
    .benefits-grid,
    .faq-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1.1rem;
    }

    .navbar {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #c3ff00;
    outline-offset: 2px;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header,
.card,
.service-card,
.review-card {
    animation: fadeInUp 0.6s ease-out;
}