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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #c069ff, #69e1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

h3 {
    font-size: 1.8rem;
    color: #ffffff;
}

h4 {
    font-size: 1.4rem;
    color: #c069ff;
}

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

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

a:hover {
    color: #c069ff;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #c069ff, #69e1ff);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 105, 255, 0.3);
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #c069ff;
    border: 2px solid #c069ff;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #c069ff;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-tertiary {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(105, 225, 255, 0.1);
    color: #69e1ff;
    border: 1px solid #69e1ff;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-tertiary:hover {
    background: rgba(105, 225, 255, 0.2);
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(192, 105, 255, 0.2);
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c069ff, #69e1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-list a:hover {
    color: #c069ff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #c069ff;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: left 0.3s ease;
    padding-top: 80px;
}

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

.mobile-nav ul {
    list-style: none;
    padding: 2rem;
}

.mobile-nav li {
    margin-bottom: 1.5rem;
}

.mobile-nav a {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    min-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 .hero-image {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

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

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

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

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

.section-header h2 {
    margin-bottom: 1rem;
}

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

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(192, 105, 255, 0.05), rgba(105, 225, 255, 0.05));
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #c069ff;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(192, 105, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(192, 105, 255, 0.2);
}

.stat h4 {
    font-size: 2.5rem;
    color: #69e1ff;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #cccccc;
    margin: 0;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: rgba(10, 10, 10, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(105, 225, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(105, 225, 255, 0.2);
}

.advantage-card h3 {
    color: #69e1ff;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, rgba(105, 225, 255, 0.05), rgba(192, 105, 255, 0.05));
}

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

.service-card {
    background: rgba(10, 10, 10, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(192, 105, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(192, 105, 255, 0.2);
}

.service-card h3 {
    color: #c069ff;
    margin-bottom: 1rem;
}

/* Achievements Section */
.achievements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.achievement-item {
    background: rgba(10, 10, 10, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(192, 105, 255, 0.2);
    text-align: center;
}

.achievement-item h3 {
    color: #c069ff;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, rgba(192, 105, 255, 0.05), rgba(105, 225, 255, 0.05));
}

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

.review-card {
    background: rgba(10, 10, 10, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(105, 225, 255, 0.2);
    text-align: center;
}

.stars {
    color: #69e1ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reviewer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(105, 225, 255, 0.2);
}

.reviewer strong {
    color: #c069ff;
    display: block;
    margin-bottom: 0.5rem;
}

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

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    color: #c069ff;
    display: block;
    margin-bottom: 0.5rem;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    margin-bottom: 1rem;
}

.social-link {
    display: inline-block;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(105, 225, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(105, 225, 255, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #c069ff;
    font-weight: 500;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c069ff;
    box-shadow: 0 0 0 2px rgba(192, 105, 255, 0.2);
}

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

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, rgba(105, 225, 255, 0.1), rgba(192, 105, 255, 0.1));
    text-align: center;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: end;
    max-width: 800px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 105, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(192, 105, 255, 0.2);
}

.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: #c069ff;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(105, 225, 255, 0.2);
    color: #999999;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(192, 105, 255, 0.1), rgba(105, 225, 255, 0.1));
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(192, 105, 255, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(192, 105, 255, 0.2);
}

.blog-image {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(192, 105, 255, 0.05), rgba(105, 225, 255, 0.05));
}

.article-image {
    width: 80px;
    height: 80px;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-meta .date,
.blog-meta .category {
    font-size: 0.9rem;
    color: #69e1ff;
    background: rgba(105, 225, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content h2 a {
    color: #ffffff;
}

.blog-content h2 a:hover {
    color: #c069ff;
}

.read-more {
    color: #c069ff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #69e1ff;
}

/* Article Styles */
.article-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(192, 105, 255, 0.1), rgba(105, 225, 255, 0.1));
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.article-hero {
    margin-top: 2rem;
}

.hero-image {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.article-content {
    padding: 4rem 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #c069ff;
}

.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #69e1ff;
}

.article-navigation {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(192, 105, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-blog {
    color: #69e1ff;
    font-weight: 600;
}

.article-sharing {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-share {
    padding: 0.5rem 1rem;
    background: rgba(105, 225, 255, 0.1);
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #c069ff;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #69e1ff;
}

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.contact-details {
    background: rgba(192, 105, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.last-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(192, 105, 255, 0.2);
    text-align: center;
    color: #999999;
}

/* Cookie Policy Tables */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(10, 10, 10, 0.6);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(192, 105, 255, 0.2);
}

.cookie-table th {
    background: rgba(192, 105, 255, 0.2);
    color: #c069ff;
    font-weight: 600;
}

.cookie-table td {
    color: #cccccc;
}

.cookie-settings-btn {
    margin: 1rem 0;
}

/* Thank You Page */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

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

.next-steps {
    margin-bottom: 3rem;
}

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

.step {
    background: rgba(192, 105, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(192, 105, 255, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c069ff, #69e1ff);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.contact-info-box {
    background: rgba(105, 225, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(105, 225, 255, 0.2);
    margin-bottom: 3rem;
}

.phone-number {
    font-size: 1.5rem;
    color: #69e1ff;
    font-weight: 600;
    margin: 1rem 0;
}

.business-hours {
    color: #999999;
    font-size: 0.9rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.social-follow h4 {
    margin-bottom: 1rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(192, 105, 255, 0.2);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

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

.modal-content {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(192, 105, 255, 0.2);
    max-width: 500px;
    width: 90%;
}

.cookie-option {
    margin: 1rem 0;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    cursor: pointer;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .newsletter-form input {
        min-width: auto;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .article-sharing {
        justify-content: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .advantages-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    .cookie-table {
        display: none;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #c069ff, #69e1ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #a055e6, #55c4e6);
}
