/* ==========================================================================
   Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* Container */
.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;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.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: 0.5rem;
}

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

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00ffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.hero-image img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.3));
}

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

.stars-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Sections
   ========================================================================== */

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 3rem;
}

/* Page Hero */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.5rem;
    color: #ccc;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
}

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

.service-card {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 255, 255, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.service-link {
    color: #ff00ff;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-preview {
    background: rgba(255, 0, 255, 0.05);
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.about-image img {
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.3));
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
}

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

.testimonial-card {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 0, 0.1);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #fff;
}

.testimonial-author strong {
    color: #ffff00;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #ccc;
    font-size: 0.9rem;
}

/* ==========================================================================
   Blog Section
   ========================================================================== */

.blog-preview {
    background: rgba(0, 255, 255, 0.05);
}

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

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 255, 255, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.blog-image img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.blog-link {
    color: #ff00ff;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.blog-center {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */

.newsletter {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    text-align: center;
}

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

.newsletter-form {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.form-group {
    position: relative;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
    background: rgba(255, 255, 0, 0.05);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.contact-item h3 {
    color: #ffff00;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #ccc;
    line-height: 1.8;
}

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

.social-link {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 0, 0.1);
    color: #ffff00;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 0, 0.2);
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: #000;
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    width: 30px;
    height: 30px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-links a.active {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

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

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* ==========================================================================
   Blog Page Styles
   ========================================================================== */

.blog-section {
    padding: 80px 0;
}

.blog-grid-full {
    display: grid;
    gap: 3rem;
}

.blog-card-large {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    align-items: start;
}

.blog-card-large:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
}

.blog-image-large {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.blog-image-large img {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

.blog-content-large h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

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

.blog-date,
.blog-category {
    background: rgba(255, 0, 255, 0.2);
    color: #ff00ff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.blog-link-large {
    color: #ff00ff;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
}

.blog-link-large:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Blog Newsletter */
.blog-newsletter {
    margin: 4rem 0;
    padding: 3rem;
    border-radius: 15px;
    background: rgba(255, 0, 255, 0.1);
    text-align: center;
}

.newsletter-form-inline {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Categories */
.blog-categories {
    margin-top: 4rem;
}

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

.category-card {
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    background: rgba(255, 255, 0, 0.1);
    transform: translateY(-5px);
}

.category-card h4 {
    color: #ffff00;
    margin-bottom: 1rem;
}

.category-count {
    color: #00ffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    display: block;
}

/* Blog CTA */
.blog-cta {
    background: rgba(0, 255, 255, 0.05);
    text-align: center;
    padding: 60px 0;
}

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

/* ==========================================================================
   Article Page Styles
   ========================================================================== */

.article {
    padding: 120px 0 80px;
}

.article-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.article-meta {
    margin-bottom: 2rem;
}

.back-to-blog {
    color: #00ffff;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.article-info {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.article-date,
.article-category,
.article-read-time {
    background: rgba(255, 0, 255, 0.2);
    color: #ff00ff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.article-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.article-author {
    color: #00ffff;
    font-style: italic;
}

.article-image {
    text-align: center;
    margin: 3rem 0;
}

.article-image img {
    max-width: 400px;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.3));
}

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

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.article-lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #00ffff;
}

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

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

.article-body ul,
.article-body ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.article-share {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
}

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

.share-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    transition: all 0.3s ease;
    font-weight: 600;
}

.share-btn:hover {
    background: rgba(0, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.article-author-bio {
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 15px;
    background: rgba(255, 0, 255, 0.1);
}

.author-info h3 {
    color: #ff00ff;
    margin-bottom: 0.5rem;
}

.author-info h4 {
    color: #00ffff;
    margin-bottom: 1rem;
}

.related-articles {
    margin-top: 4rem;
}

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

.related-card {
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.related-card:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
}

.related-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
}

.related-card h4 {
    color: #00ffff;
    font-size: 1rem;
}

/* Newsletter CTA */
.newsletter-cta {
    background: rgba(255, 0, 255, 0.05);
    text-align: center;
    padding: 60px 0;
}

/* ==========================================================================
   Legal Pages Styles
   ========================================================================== */

.legal-content {
    padding: 60px 0;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #00ffff;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.legal-section h3 {
    color: #ff00ff;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.25rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-section li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-address {
    background: rgba(0, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #00ffff;
    margin: 1.5rem 0;
    font-style: normal;
}

.legal-actions {
    text-align: center;
    margin-top: 3rem;
}

.legal-actions .btn-neon {
    margin-right: 1rem;
}

/* Cookie Table */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

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

.cookie-table th {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    font-weight: 600;
}

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

/* ==========================================================================
   Thank You Page Styles
   ========================================================================== */

.thank-you {
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
}

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

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

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.5));
}

.thank-you-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.thank-you-details {
    background: rgba(0, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #00ffff;
    margin: 2rem 0;
    text-align: left;
}

.next-steps {
    list-style: none;
    margin-left: 0;
}

.next-steps li {
    padding: 0.5rem 0;
    color: #ccc;
    position: relative;
    padding-left: 2rem;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Expectations Section */
.expectations {
    padding: 60px 0;
    background: rgba(0, 255, 255, 0.05);
}

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

.expectation-card {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.expectation-card:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
}

.expectation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

.expectation-card h3 {
    color: #00ffff;
    margin-bottom: 1rem;
}

/* Social Follow Section */
.social-follow {
    padding: 60px 0;
    text-align: center;
}

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

.social-link-large {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    display: block;
}

.social-link-large:hover {
    background: rgba(255, 255, 0, 0.1);
    transform: translateY(-5px);
}

.social-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffff00;
    margin-bottom: 0.5rem;
}

.social-description {
    color: #ccc;
    font-size: 0.9rem;
}

/* ==========================================================================
   About Page Specific Styles
   ========================================================================== */

.company-story {
    padding: 60px 0;
}

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

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission {
    padding: 60px 0;
    background: rgba(0, 255, 255, 0.05);
}

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

.mission-item {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

.mission-item h3 {
    color: #00ffff;
    margin-bottom: 1rem;
}

.services-detail {
    padding: 60px 0;
}

.services-detailed {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.service-detailed {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.service-detailed h3 {
    color: #ff00ff;
    margin-bottom: 1rem;
}

.service-detailed ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.service-detailed li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.team {
    padding: 60px 0;
    background: rgba(255, 0, 255, 0.05);
}

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

.team-member {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(255, 0, 255, 0.1);
    transform: translateY(-5px);
}

.member-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
}

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

.member-title {
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-cta {
    padding: 60px 0;
    text-align: center;
    background: rgba(255, 255, 0, 0.05);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulsing {
    animation: pulse 2s ease-in-out infinite;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

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

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

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

    .hero-buttons,
    .thank-you-actions,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .blog-card-large {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .newsletter-form-inline {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        justify-content: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .article-info {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero,
    .page-hero,
    .thank-you {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

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

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

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

    .section-title {
        font-size: 1.75rem;
    }

    .services-grid,
    .testimonials-grid,
    .mission-grid,
    .team-grid,
    .expectations-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .newsletter,
    .newsletter-cta,
    .blog-cta,
    .contact-cta,
    .article-share,
    .related-articles {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .neon-text,
    .neon-glow {
        color: black;
        text-shadow: none;
        background: none;
        -webkit-text-fill-color: black;
    }

    .neon-border {
        border: 1px solid black;
        box-shadow: none;
    }

    .article {
        padding: 20px 0;
    }
}
