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

html {
    scroll-behavior: smooth;
}

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;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    text-shadow: 0 0 20px #04c9b9;
}

h2 {
    font-size: 2.5rem;
    color: #04c9b9;
    text-shadow: 0 0 15px rgba(4, 201, 185, 0.5);
}

h3 {
    font-size: 2rem;
    color: #04c9b9;
}

h4 {
    font-size: 1.5rem;
    color: #ffffff;
}

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

a {
    color: #04c9b9;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #04c9b9;
}

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

.btn-primary {
    background: linear-gradient(45deg, #04c9b9, #02a69b);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(4, 201, 185, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #02a69b, #04c9b9);
    box-shadow: 0 0 30px rgba(4, 201, 185, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #04c9b9;
}

.btn-secondary:hover {
    background: rgba(4, 201, 185, 0.2);
    box-shadow: 0 0 20px rgba(4, 201, 185, 0.4);
}

.btn-tertiary {
    background: transparent;
    color: #04c9b9;
    border: 1px solid #04c9b9;
}

.btn-tertiary:hover {
    background: rgba(4, 201, 185, 0.1);
    color: #ffffff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(4, 201, 185, 0.3);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #04c9b9;
    text-shadow: 0 0 15px rgba(4, 201, 185, 0.5);
}

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

.nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(4, 201, 185, 0.2);
    color: #04c9b9;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 25px;
    height: 3px;
    background: #04c9b9;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(4, 201, 185, 0.5);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

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

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #04c9b9, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(4, 201, 185, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(4, 201, 185, 0.8), 0 0 40px rgba(4, 201, 185, 0.6);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #04c9b9;
    margin-bottom: 1rem;
}

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

.hero-cta {
    font-size: 1.2rem;
    padding: 15px 40px;
}

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

.section-dark {
    background: rgba(15, 15, 15, 0.8);
    border-top: 1px solid rgba(4, 201, 185, 0.2);
    border-bottom: 1px solid rgba(4, 201, 185, 0.2);
}

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

.section-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(4, 201, 185, 0.5));
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #cccccc;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #04c9b9;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(4, 201, 185, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(4, 201, 185, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #04c9b9;
    text-shadow: 0 0 15px rgba(4, 201, 185, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(4, 201, 185, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(4, 201, 185, 0.2);
    border-color: rgba(4, 201, 185, 0.5);
}

.product-card h4 {
    color: #04c9b9;
    margin-bottom: 15px;
}

.product-card ul {
    list-style: none;
    margin-top: 20px;
}

.product-card li {
    padding: 5px 0;
    color: #cccccc;
    padding-left: 20px;
    position: relative;
}

.product-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #04c9b9;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(4, 201, 185, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(4, 201, 185, 0.3);
}

.service-card h4 {
    color: #04c9b9;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.service-features span {
    background: rgba(4, 201, 185, 0.2);
    color: #04c9b9;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(4, 201, 185, 0.3);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(4, 201, 185, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: #04c9b9;
    box-shadow: 0 0 30px rgba(4, 201, 185, 0.3);
}

.pricing-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #04c9b9;
    color: #000000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(4, 201, 185, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h4 {
    color: #04c9b9;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #04c9b9;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(4, 201, 185, 0.5);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: #cccccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    font-style: italic;
    color: #04c9b9;
    margin-top: 20px;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(4, 201, 185, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(4, 201, 185, 0.2);
}

.review-stars {
    color: #04c9b9;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(4, 201, 185, 0.5);
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #cccccc;
    line-height: 1.6;
}

.review-author strong {
    color: #04c9b9;
}

.review-author span {
    color: #999999;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item strong {
    color: #04c9b9;
    display: block;
    margin-bottom: 10px;
}

/* Forms */
.contact-form h3 {
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #04c9b9;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(4, 201, 185, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #04c9b9;
    box-shadow: 0 0 10px rgba(4, 201, 185, 0.3);
}

/* Footer */
.footer {
    background: rgba(5, 5, 5, 0.95);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(4, 201, 185, 0.3);
}

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

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section ul li a:hover {
    color: #04c9b9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid #04c9b9;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #cccccc;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 10px 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);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

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

.cookie-modal-content {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #04c9b9;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 30px;
    text-align: center;
}

.cookie-option {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(4, 201, 185, 0.2);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #04c9b9;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #04c9b9;
}

.cookie-option p {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #cccccc;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Thank You Page */
.thank-you-section {
    padding: 150px 0 100px;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(4, 201, 185, 0.5));
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
}

.thank-you-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(4, 201, 185, 0.2);
    margin-bottom: 40px;
    text-align: left;
}

.thank-you-details h3 {
    text-align: center;
    margin-bottom: 25px;
}

.thank-you-details ul {
    list-style: none;
}

.thank-you-details li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #cccccc;
}

.thank-you-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #04c9b9;
    font-weight: bold;
    font-size: 1.2rem;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Legal Pages */
.legal-section {
    padding: 150px 0 100px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    text-align: center;
    margin-bottom: 10px;
}

.last-updated {
    text-align: center;
    color: #999999;
    font-style: italic;
    margin-bottom: 50px;
}

.legal-block {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border-left: 4px solid #04c9b9;
}

.legal-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.legal-block h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-block ul, .legal-block ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-block li {
    margin-bottom: 8px;
    color: #cccccc;
}

.contact-info {
    background: rgba(4, 201, 185, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(4, 201, 185, 0.3);
    margin-top: 20px;
}

.cookie-table {
    margin: 20px 0;
}

.cookie-row {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 3px solid #04c9b9;
}

.cookie-settings-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(4, 201, 185, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(4, 201, 185, 0.3);
}
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-left: 2px solid #04c9b9;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        padding: 15px 20px;
        border-radius: 8px;
        border: 1px solid rgba(4, 201, 185, 0.2);
        text-align: center;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(4, 201, 185, 0.3);
        border-color: #04c9b9;
        transform: translateX(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    .hero-cta {
        font-size: 1rem;
    }
    
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-block {
        padding: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .products-grid,
    .services-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-modal-content {
        padding: 20px;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
}

/* Smooth transitions and animations */
.section, .product-card, .service-card, .pricing-card, .review-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
