/* 
 * Qiubainow - Main Stylesheet
 * Y2K Aesthetic with Modern Functionality
 * Author: Qiubainow Team
 * Version: 1.0
 */

/* ================================================
   Table of Contents:
   1. Global Styles & Variables
   2. Typography
   3. Layout & Containers
   4. Navigation & Header
   5. Buttons & CTAs
   6. Cards & Boxes
   7. Hero Section
   8. Feature Sections
   9. Blog Styles
   10. Contact Styles
   11. Footer
   12. Cookie Consent
   13. Y2K Aesthetic Elements
   14. Utilities & Helpers
   15. Animations
   16. Media Queries
================================================ */

/* ================================================
   1. Global Styles & Variables
================================================ */
:root {
    /* Primary Colors */
    --primary: #00b386;
    --secondary: #ff6b99;
    --accent: #4da6ff;
    --background: #f0f0ff;
    --text-color: #333366;
    
    /* Y2K Colors */
    --y2k-purple: #cc33ff;
    --y2k-yellow: #ffed00;
    --y2k-blue: #0099ff;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #00b386, #4da6ff);
    --secondary-gradient: linear-gradient(135deg, #ff6b99, #ffcc66);
    
    /* Typography */
    --heading-font: 'Merriweather', serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 2rem;
    
    /* Box Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
}

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

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--background);
    line-height: 1.6;
    font-size: 16px;
}

.iti {
  width: 100%;
}

/* ================================================
   2. Typography
================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title {
    position: relative;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-color);
    opacity: 0.9;
}

/* ================================================
   3. Layout & Containers
================================================ */
.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

section {
    padding: 4rem 0;
}

.bg-light {
    background-color: #ffffff;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4, .col-md-6, .col-lg-6, .col-lg-4, .col-lg-8 {
    padding: 0 15px;
}

/* ================================================
   4. Navigation & Header
================================================ */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
}

.navbar-toggler {
    border: none;
    outline: none;
    padding: 0.5rem;
}

.navbar-nav {
    margin-left: auto;
}

.nav-item {
    margin: 0 0.5rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-md);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 1.5px;
}

/* ================================================
   5. Buttons & CTAs
================================================ */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    font-family: var(--body-font);
    text-transform: none;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, #009974, #3b9eff);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
}

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

/* ================================================
   6. Cards & Boxes
================================================ */
.mission-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    opacity: 0.7;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-gradient);
    margin-bottom: 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-image {
    position: relative;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.feature-content {
    padding: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.value-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gradient);
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 2.5rem;
    color: white;
}

/* Blog Cards */
.blog-post-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: transform 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gradient);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #777;
}

.post-meta span {
    margin-right: 1rem;
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 0.3rem;
}

.post-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-excerpt {
    color: #555;
    margin-bottom: 1rem;
}

.read-more {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.featured-post-image {
    height: 100%;
    position: relative;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-post .post-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* ================================================
   7. Hero Section
================================================ */
.hero-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(240, 240, 255, 0.9), rgba(255, 255, 255, 0.9));
}

.y2k-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(204, 51, 255, 0.1) 0%, rgba(0, 153, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.pixel-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-image: linear-gradient(90deg, 
        var(--primary) 0%, var(--primary) 20%, 
        var(--accent) 20%, var(--accent) 40%, 
        var(--secondary) 40%, var(--secondary) 60%, 
        var(--y2k-purple) 60%, var(--y2k-purple) 80%, 
        var(--y2k-yellow) 80%, var(--y2k-yellow) 100%);
}

.pixel-border-header {
    width: 100px;
    height: 6px;
    background-image: linear-gradient(90deg, 
        var(--primary) 0%, var(--primary) 20%, 
        var(--accent) 20%, var(--accent) 40%, 
        var(--secondary) 40%, var(--secondary) 60%, 
        var(--y2k-purple) 60%, var(--y2k-purple) 80%, 
        var(--y2k-yellow) 80%, var(--y2k-yellow) 100%);
    margin: 1.5rem auto 0;
    border-radius: 3px;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.03);
}

.y2k-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--y2k-purple), var(--y2k-blue));
    filter: blur(40px);
    opacity: 0.4;
    pointer-events: none;
}

.decoration-1 {
    top: -30px;
    right: -30px;
}

.decoration-2 {
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--secondary), var(--y2k-yellow));
}

/* ================================================
   8. Feature Sections
================================================ */
/* Eco-Tech Section */
.eco-tech-section {
    position: relative;
    overflow: hidden;
}

.eco-tech-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.eco-tech-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.eco-tech-image:hover img {
    transform: scale(1.05);
}

.decoration-3 {
    bottom: -30px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    width: 120px;
    height: 120px;
}

.eco-tech-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.eco-tech-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.eco-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.eco-icon i {
    color: white;
    font-size: 1.25rem;
}

/* Testimonials Section */
.testimonial-item {
    padding: 2rem;
}

.testimonial-content {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-info {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.testimonial-info h4 {
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    color: #777;
    font-style: italic;
}

/* Vision Section */
.vision-section {
    position: relative;
    overflow: hidden;
}

.vision-goals {
    margin-top: 2rem;
}

.vision-goal {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.vision-goal i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    margin-right: 1rem;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.vision-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.vision-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.vision-image:hover {
    transform: translateY(-5px);
}

.vision-image img {
    width: 100%;
    height: auto;
}

.primary-image {
    width: 80%;
    z-index: 2;
}

.secondary-image {
    width: 60%;
    position: absolute;
    bottom: -20px;
    right: 0;
    z-index: 1;
}

.decoration-7, .decoration-8 {
    width: 120px;
    height: 120px;
}

.decoration-7 {
    top: -40px;
    left: 10%;
    background: linear-gradient(135deg, var(--y2k-purple), var(--primary));
}

.decoration-8 {
    bottom: -30px;
    right: 20%;
    background: linear-gradient(135deg, var(--secondary), var(--y2k-yellow));
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
}

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

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ================================================
   9. Blog Styles
================================================ */
.page-header {
    padding: 4rem 0 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(240, 240, 255, 0.9), rgba(255, 255, 255, 0.9));
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.widget-title {
    position: relative;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #eee;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-gradient);
}

.search-form {
    display: flex;
}

.search-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.search-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.categories-list a:hover {
    color: var(--primary);
}

.categories-list span {
    color: #777;
    font-size: 0.875rem;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
}

.recent-posts-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts-list a {
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.recent-posts-list a:hover {
    color: var(--primary);
}

.post-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.post-info span {
    color: #777;
    font-size: 0.875rem;
}

.newsletter-form .form-check-label {
    font-size: 0.875rem;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 3rem;
}

.pagination .page-link {
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background: var(--primary-gradient);
    color: white;
}

.pagination .page-link:hover {
    background-color: #f0f0f0;
    color: var(--primary);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link:hover {
    background: var(--primary-gradient);
    color: white;
}

/* ================================================
   10. Contact Styles
================================================ */
.contact-form-section {
    position: relative;
    overflow: hidden;
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
}

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

.contact-details {
    margin-top: 2rem;
}

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

.contact-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    margin-right: 1rem;
}

.contact-form-container {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form .form-label {
    font-weight: 600;
}

.contact-form .form-control {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 179, 134, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Contact Page Styles */
.contact-section {
    position: relative;
}

.contact-info-wrapper {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-hours {
    color: #777;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-image {
    margin-top: 2rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-image img {
    width: 100%;
    height: auto;
}

/* Map Section */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 4rem 0;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.faq-question i {
    margin-right: 0.75rem;
    color: var(--primary);
}

.faq-answer {
    color: #555;
}

/* FAQ Page Styles */
.faq-section {
    position: relative;
}

.faq-categories {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.faq-category-list {
    list-style: none;
    padding: 0;
}

.faq-category-list li {
    margin-bottom: 1rem;
}

.faq-category-list a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    color: var(--text-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

.faq-category-list a:hover, .faq-category-list a.active {
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
}

.faq-contact-box {
    background: var(--background);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.faq-category {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.category-title {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 1rem;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background: #f8f9fa;
    border-radius: var(--border-radius-md) !important;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--text-color);
    padding: 1.25rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: #f0f0ff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 179, 134, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300b386'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
}

/* Story Page Styles */
.story-section {
    position: relative;
}

.story-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.decoration-4 {
    top: -30px;
    right: -20px;
    background: linear-gradient(135deg, var(--secondary), var(--y2k-purple));
}

.decoration-5 {
    bottom: -30px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.decoration-6 {
    top: -20px;
    left: 20%;
    background: linear-gradient(135deg, var(--y2k-yellow), var(--secondary));
}

/* Thanks Page Styles */
.thanks-section {
    padding: 5rem 0;
    text-align: center;
}

.thanks-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    margin-bottom: 2rem;
    font-size: 3rem;
}

.thanks-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-details {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.thanks-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: transform 0.3s ease;
}

.thanks-card:hover {
    transform: translateY(-5px);
}

.thanks-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Legal Pages Styles */
.privacy-section, .terms-section, .cookie-policy-section {
    padding: 4rem 0;
}

.privacy-content, .terms-content, .cookie-policy-content {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.privacy-section h2, .terms-section h2, .cookie-policy-section h2 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-section h3, .terms-section h3, .cookie-policy-section h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-section ul, .terms-section ul, .cookie-policy-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-section ul li, .terms-section ul li, .cookie-policy-section ul li {
    margin-bottom: 0.5rem;
}

.table-responsive {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    border: none;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 179, 134, 0.05);
}

/* ================================================
   11. Footer
================================================ */
.site-footer {
    background: #333366;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    color: var(--y2k-blue);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    text-decoration: none;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 0.75rem;
    color: var(--primary);
}

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

.copyright p {
    opacity: 0.6;
    margin-bottom: 0;
}

/* ================================================
   12. Cookie Consent
================================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: none;
}

.cookie-content {
    padding: 2rem;
}

.cookie-header {
    margin-bottom: 1.5rem;
}

.cookie-header h3 {
    margin-bottom: 0;
    color: var(--primary);
}

.cookie-options {
    margin: 1.5rem 0;
}

.cookie-option {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cookie-option:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-option input {
    margin-top: 0.3rem;
    margin-right: 1rem;
}

.cookie-option label {
    font-weight: 600;
    margin-right: 1rem;
}

.cookie-description {
    width: 100%;
    margin-top: 0.5rem;
    margin-left: 2rem;
    font-size: 0.875rem;
    color: #777;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cookie-footer {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #777;
}

.cookie-settings-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 99;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.cookie-settings-button:hover {
    transform: scale(1.1);
}

/* ================================================
   13. Y2K Aesthetic Elements
================================================ */
.pixel-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 5v1H5V0zm1 5V1H5v4h1z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.3;
}

/* ================================================
   14. Utilities & Helpers
================================================ */
.bg-primary {
    background: var(--primary-gradient) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: var(--border-radius-lg) !important;
}

.shadow {
    box-shadow: var(--shadow-md) !important;
}

/* ================================================
   15. Animations
================================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ================================================
   16. Media Queries
================================================ */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .cookie-option {
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .cookie-description {
        width: auto;
        margin-top: 0;
        margin-left: auto;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    section {
        padding: 5rem 0;
    }
    
    .hero-section {
        padding: 6rem 0;
    }
    
    .cookie-banner {
        width: 80%;
    }
    
    .cookie-actions {
        flex-wrap: nowrap;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .navbar {
        padding: 1.25rem 0;
    }
    
    .logo {
        height: 50px;
    }
    
    .hero-section {
        padding: 7rem 0;
    }
    
    .featured-post-content {
        padding: 3rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-section {
        padding: 8rem 0;
    }
}

/* Mobile-first Media Queries */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-md);
        margin-top: 1rem;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .secondary-image {
        width: 50%;
        bottom: -10px;
        right: 10%;
    }
    
    .featured-post-image {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .footer-title {
        margin-top: 2rem;
    }
    
    .cookie-banner {
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-actions button {
        width: 100%;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 1rem;
    }
    
    .faq-categories {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .pixel-border {
        height: 6px;
    }
    
    .thanks-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .thanks-title {
        font-size: 2rem;
    }
    
    .map-container {
        height: 300px;
    }
}