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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #95ff00;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: #95ff00;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #ff7300;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #95ff00;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #95ff00, #ff7300);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #95ff00;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #95ff00, #ff7300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px #95ff0066, 0 0 30px #95ff0044, 0 0 40px #95ff0022;
    }
    to {
        text-shadow: 0 0 30px #ff730066, 0 0 40px #ff730044, 0 0 50px #ff730022;
    }
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #95ff00, #ff7300);
    color: #000000;
    box-shadow: 0 4px 15px rgba(149, 255, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(149, 255, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #95ff00;
    border-color: #95ff00;
}

.btn-secondary:hover {
    background: #95ff00;
    color: #000000;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ff7300;
    border-color: #ff7300;
}

.btn-outline:hover {
    background: #ff7300;
    color: #000000;
}

/* Page Hero */
.page-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-bottom: 2px solid #95ff00;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #95ff00;
}

.page-hero p {
    font-size: 1.2rem;
    color: #cccccc;
}

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

.section:nth-child(even) {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #95ff00;
}

.section p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(149, 255, 0, 0.05);
    border-radius: 20px;
    border: 1px solid #95ff00;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(149, 255, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff7300;
    margin-bottom: 0.5rem;
}

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

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(149, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.offer-card:hover::before {
    left: 100%;
}

.offer-card:hover {
    border-color: #95ff00;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(149, 255, 0, 0.2);
}

.offer-card.featured {
    border-color: #ff7300;
    background: linear-gradient(135deg, #2a1a00 0%, #3a2a00 100%);
}

.offer-card.featured:hover {
    border-color: #ff7300;
    box-shadow: 0 15px 40px rgba(255, 115, 0, 0.2);
}

.offer-card h3 {
    color: #95ff00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offer-card.featured h3 {
    color: #ff7300;
}

.offer-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff7300;
    margin-top: 1rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 115, 0, 0.05);
    border-radius: 20px;
    border: 1px solid #ff7300;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 115, 0, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #ff7300;
    margin-bottom: 1rem;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #95ff00;
    box-shadow: 0 10px 30px rgba(149, 255, 0, 0.1);
}

.review-stars {
    color: #ff7300;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-author {
    color: #95ff00;
    font-weight: 600;
    margin-top: 1rem;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 2px solid #95ff00;
    border-bottom: 2px solid #ff7300;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    padding: 15px;
    border: 2px solid #333;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #95ff00;
}

.newsletter-form input::placeholder {
    color: #999;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h2 {
    color: #95ff00;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
}

.about-image svg {
    width: 100%;
    height: 300px;
    border-radius: 20px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #95ff00;
    box-shadow: 0 10px 30px rgba(149, 255, 0, 0.1);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #95ff00;
}

.member-photo svg {
    width: 100%;
    height: 100%;
}

.team-member h3 {
    color: #95ff00;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #ff7300;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(149, 255, 0, 0.05);
    border-radius: 20px;
    border: 1px solid #95ff00;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(149, 255, 0, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #95ff00;
    margin-bottom: 1rem;
}

/* Services Page Styles */
.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #95ff00;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(149, 255, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image svg {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #95ff00;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-rating {
    color: #ff7300;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #95ff00;
    font-weight: bold;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff7300;
    margin: 1.5rem 0;
}

/* Add-ons Grid */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.addon-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 115, 0, 0.05);
    border-radius: 20px;
    border: 1px solid #ff7300;
    transition: transform 0.3s ease;
}

.addon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 115, 0, 0.2);
}

.addon-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.addon-item h3 {
    color: #ff7300;
    margin-bottom: 0.5rem;
}

.addon-price {
    color: #95ff00;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
    display: block;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.contact-item h3 {
    color: #95ff00;
    margin-bottom: 0.5rem;
}

.business-hours {
    margin-top: 2rem;
}

.business-hours h3 {
    color: #ff7300;
    margin-bottom: 1rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    color: #cccccc;
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #333;
}

.contact-form h2 {
    color: #95ff00;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #95ff00;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #333;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.map-section {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #95ff00;
    margin-top: 2rem;
}

.map-placeholder svg {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 2px solid #95ff00;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #95ff00;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #95ff00;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(149, 255, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(149, 255, 0, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-top: 2px solid #95ff00;
    padding: 1.5rem;
    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: 2rem;
}

.cookie-text h3 {
    color: #95ff00;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #cccccc;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #95ff00;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    color: #95ff00;
    margin-bottom: 2rem;
    text-align: center;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(149, 255, 0, 0.05);
    border-radius: 10px;
    border: 1px solid #333;
}

.cookie-switch {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: #95ff00;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-switch input {
    display: none;
}

.slider {
    width: 50px;
    height: 24px;
    background: #333;
    border-radius: 24px;
    position: relative;
    transition: background 0.3s ease;
}

.slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #999;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-switch input:checked + .slider {
    background: #95ff00;
}

.cookie-switch input:checked + .slider::before {
    background: #000;
    transform: translateX(26px);
}

.cookie-switch input:disabled + .slider {
    background: #95ff00;
    opacity: 0.7;
}

.cookie-category p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    color: #95ff00;
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    color: #ff7300;
    margin: 1.5rem 0 0.5rem;
}

.legal-content p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: #cccccc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

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

    .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(7px) rotate(45deg);
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .stats-grid,
    .offers-grid,
    .benefits-grid,
    .reviews-grid,
    .team-grid,
    .values-grid,
    .service-categories,
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 2rem auto 0;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .section {
        padding: 40px 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .offer-card,
    .review-card,
    .team-member,
    .contact-form-container {
        padding: 1.5rem;
    }
}