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

html {
    scroll-behavior: smooth;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #ed00ca, #ff1493);
    color: white;
    box-shadow: 0 4px 15px rgba(237, 0, 202, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 0, 202, 0.6);
}

.btn-secondary {
    background: rgba(237, 0, 202, 0.1);
    color: #ed00ca;
    border: 2px solid #ed00ca;
}

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

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

.btn-outline:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

/* Header */
.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 rgba(237, 0, 202, 0.3);
}

.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 {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ed00ca;
    text-shadow: 0 0 10px rgba(237, 0, 202, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #ed00ca;
    transition: all 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: #ed00ca;
    text-shadow: 0 0 10px rgba(237, 0, 202, 0.5);
}

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

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

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

.hero-bg {
    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 {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(237, 0, 202, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-title .accent {
    color: #ed00ca;
    text-shadow: 0 0 30px rgba(237, 0, 202, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(237, 0, 202, 0.5); }
    to { text-shadow: 0 0 30px rgba(237, 0, 202, 0.8), 0 0 40px rgba(237, 0, 202, 0.3); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ed00ca;
    text-shadow: 0 0 20px rgba(237, 0, 202, 0.5);
}

.page-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(237, 0, 202, 0.1), rgba(0, 0, 0, 0.9));
}

.page-hero h1 {
    font-size: 3rem;
    color: #ed00ca;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(237, 0, 202, 0.5);
}

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

.service-card {
    background: rgba(237, 0, 202, 0.05);
    border: 1px solid rgba(237, 0, 202, 0.2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 0, 202, 0.1), transparent);
    transition: all 0.8s;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ed00ca;
    box-shadow: 0 20px 40px rgba(237, 0, 202, 0.3);
}

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

.service-card h3 {
    color: #ed00ca;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(237, 0, 202, 0.2);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #ed00ca;
    background: rgba(237, 0, 202, 0.05);
    box-shadow: 0 15px 30px rgba(237, 0, 202, 0.2);
}

.category-image {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-card h3 {
    color: #ed00ca;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(237, 0, 202, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #ed00ca;
    background: rgba(237, 0, 202, 0.05);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(237, 0, 202, 0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #ed00ca;
    box-shadow: 0 25px 50px rgba(237, 0, 202, 0.4);
}

.pricing-card h3 {
    color: #ed00ca;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(237, 0, 202, 0.5);
}

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

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(237, 0, 202, 0.1);
}

.pricing-features li::before {
    content: '✓';
    color: #ed00ca;
    font-weight: bold;
    margin-right: 10px;
}

/* Promotion Section */
.promotion {
    background: linear-gradient(135deg, rgba(237, 0, 202, 0.1), rgba(0, 0, 0, 0.9));
}

.promotion-card {
    text-align: center;
    padding: 40px;
    border: 2px solid #ed00ca;
    border-radius: 15px;
    background: rgba(237, 0, 202, 0.05);
    box-shadow: 0 20px 40px rgba(237, 0, 202, 0.3);
}

.promotion-card h2 {
    color: #ed00ca;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(237, 0, 202, 0.5);
}

.promotion-card .accent {
    color: #ff1493;
    text-shadow: 0 0 15px rgba(255, 20, 147, 0.5);
}

/* Newsletter Section */
.newsletter {
    background: rgba(237, 0, 202, 0.02);
}
.section.newsletter p {
    text-align: center;
    margin-bottom: 20px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(237, 0, 202, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ed00ca;
    box-shadow: 0 0 20px rgba(237, 0, 202, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

/* Contact Forms */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 2rem;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

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

.contact-details h3 {
    color: #ed00ca;
    margin-bottom: 8px;
}

.contact-hours {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 5px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ed00ca;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Catalog Styles */
.filters {
    background: rgba(237, 0, 202, 0.02);
    padding: 40px 0;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid rgba(237, 0, 202, 0.3);
    background: transparent;
    color: #ffffff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ed00ca;
    border-color: #ed00ca;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 0, 202, 0.4);
}

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

.costume-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(237, 0, 202, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.costume-card:hover {
    transform: translateY(-10px);
    border-color: #ed00ca;
    box-shadow: 0 20px 40px rgba(237, 0, 202, 0.3);
}

.costume-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.costume-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.costume-card:hover .costume-img {
    transform: scale(1.1);
}

.costume-info {
    padding: 25px;
}

.costume-info h3 {
    color: #ed00ca;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.costume-series {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.costume-description {
    margin-bottom: 15px;
    line-height: 1.5;
}

.costume-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ed00ca;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(237, 0, 202, 0.3);
}

.costume-meta {
    display: flex;
    gap: 10px;
}

.costume-tag,
.costume-difficulty {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.costume-tag {
    background: rgba(237, 0, 202, 0.2);
    color: #ed00ca;
}

.costume-difficulty {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.about-text h2,
.about-text h3 {
    color: #ed00ca;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: 2rem;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-top: 30px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

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

.value-card {
    text-align: center;
    padding: 30px;
    background: rgba(237, 0, 202, 0.05);
    border: 1px solid rgba(237, 0, 202, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: #ed00ca;
    box-shadow: 0 15px 30px rgba(237, 0, 202, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

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

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

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ed00ca;
    text-shadow: 0 0 20px rgba(237, 0, 202, 0.5);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.process-step {
    text-align: center;
    padding: 30px;
    background: rgba(237, 0, 202, 0.05);
    border-radius: 10px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ed00ca;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(237, 0, 202, 0.5);
}

.process-step h3 {
    color: #ed00ca;
    margin-bottom: 15px;
}

/* Thanks Page */
.thanks {
    text-align: center;
    padding: 60px 0;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 30px;
}

.success-icon {
    width: 100px;
    height: 100px;
}

.thanks h1 {
    color: #ed00ca;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(237, 0, 202, 0.5);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
    background: rgba(237, 0, 202, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(237, 0, 202, 0.2);
}

.next-steps h2 {
    color: #ed00ca;
    text-align: center;
    margin-bottom: 20px;
}

.steps-list {
    list-style: none;
}

.steps-list li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-reminder {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.contact-reminder h3 {
    color: #ed00ca;
    margin-bottom: 15px;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ed00ca;
    margin: 10px 0;
}

.phone-hours {
    opacity: 0.8;
    font-size: 0.9rem;
}

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

.related-card {
    text-align: center;
    padding: 30px;
    background: rgba(237, 0, 202, 0.05);
    border: 1px solid rgba(237, 0, 202, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-8px);
    border-color: #ed00ca;
    box-shadow: 0 15px 30px rgba(237, 0, 202, 0.2);
}

.related-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

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

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

.faq-item {
    background: rgba(237, 0, 202, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(237, 0, 202, 0.2);
}

.faq-item h3 {
    color: #ed00ca;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Legal Content */
.legal-content {
    word-break: break-word;
    padding: 40px 0 !important;
}
.page-hero {
    word-break: break-word;
}

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

.legal-text h2 {
    color: #ed00ca;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid rgba(237, 0, 202, 0.3);
    padding-bottom: 10px;
}

.legal-text h3 {
    color: #ed00ca;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
}

.legal-text h4 {
    color: #ed00ca;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.legal-text ul {
    margin: 15px 0 15px 30px;
}

.legal-text li {
    margin-bottom: 8px;
}

.legal-text address {
    background: rgba(237, 0, 202, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ed00ca;
    margin: 20px 0;
    font-style: normal;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(237, 0, 202, 0.3);
    background: rgba(237, 0, 202, 0.02);
    padding: 30px;
    border-radius: 10px;
}

/* Cookie Styles */
.cookie-table {
    background: rgba(237, 0, 202, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid rgba(237, 0, 202, 0.2);
}

.cookie-categories {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.cookie-category {
    background: rgba(237, 0, 202, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(237, 0, 202, 0.2);
}

.cookie-category h3 {
    color: #ed00ca;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-controls {
    text-align: center;
    margin: 30px 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 10, 10, 0.98);
    border: 2px solid #ed00ca;
    border-radius: 10px;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(237, 0, 202, 0.5);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content h3 {
    color: #ed00ca;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cookie-content p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.cookie-modal.hidden {
    display: none;
}

.cookie-modal-content {
    background: #0a0a0a;
    border: 2px solid #ed00ca;
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h2 {
    color: #ed00ca;
    margin-bottom: 20px;
    text-align: center;
}

.cookie-setting {
    background: rgba(237, 0, 202, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(237, 0, 202, 0.2);
}

.cookie-setting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-setting h3 {
    color: #ed00ca;
    font-size: 1.2rem;
    margin: 0;
}

.cookie-status {
    background: rgba(237, 0, 202, 0.2);
    color: #ed00ca;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #ed00ca;
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

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

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(237, 0, 202, 0.3);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ed00ca;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(237, 0, 202, 0.3);
}

.footer-section h3 {
    font-size: 1.5rem;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(237, 0, 202, 0.1);
    border: 1px solid rgba(237, 0, 202, 0.3);
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    color: #ed00ca;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #ed00ca;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(237, 0, 202, 0.4);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ed00ca;
    text-shadow: 0 0 10px rgba(237, 0, 202, 0.5);
}

.contact-info .contact-item {
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(237, 0, 202, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, rgba(237, 0, 202, 0.1), rgba(0, 0, 0, 0.9));
    text-align: center;
}

.cta-content h2 {
    color: #ed00ca;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(237, 0, 202, 0.5);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 2px solid rgba(237, 0, 202, 0.3);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        margin-bottom: 15px;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        border-radius: 8px;
        background: rgba(237, 0, 202, 0.05);
        border: 1px solid rgba(237, 0, 202, 0.2);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(237, 0, 202, 0.1);
        border-color: #ed00ca;
        transform: translateX(5px);
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 3px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .services-grid,
    .categories-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.category-card,
.pricing-card {
    animation: slideInFromBottom 0.6s ease-out;
}

/* Hidden class for JavaScript */
.hidden {
    display: none !important;
}

/* Utility Classes */
.accent {
    color: #ed00ca;
}

.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
