/* =========================================
   DESIGN SYSTEM & VARIABLES
========================================= */
:root {
    /* Colors - Mystic Dark / Neon Purple Theme */
    --bg-dark: #0a0510;
    --bg-darker: #050208;
    --text-main: #f0e6fa;
    --text-muted: #b8a6d6;

    --neon-purple: #b336ff;
    --neon-purple-glow: rgba(179, 54, 255, 0.6);
    --neon-blue: #36d6ff;
    --accent: #d49fff;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --section-padding: 6rem 0;

    /* Animation */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   RESET & BASE STYLES
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Abstract Backgrounds */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--neon-blue);
    bottom: 20%;
    left: -100px;
    animation-delay: -5s;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding);
}

.dark-bg {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.highlight {
    color: var(--neon-purple);
    text-shadow: 0 0 20px var(--neon-purple-glow);
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(45deg, var(--neon-purple), var(--accent));
    color: white;
    box-shadow: 0 4px 15px var(--neon-purple-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--neon-purple-glow);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
}

.btn-outline:hover,
.btn-outline.glow-effect:hover {
    background: rgba(179, 54, 255, 0.1);
    box-shadow: inset 0 0 10px var(--neon-purple-glow), 0 0 15px var(--neon-purple-glow);
    text-shadow: 0 0 5px var(--neon-purple);
}

/* =========================================
   NAVIGATION
=========================================*/
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(10, 5, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--neon-purple);
    font-size: 1.8rem;
    animation: float 3s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 1.4rem;
    flex-shrink: 0;
}

.nav-links a {
    font-size: 0.92rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-purple);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-purple);
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.lang-switcher a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.lang-switcher a:hover {
    color: var(--text-main);
    text-shadow: 0 0 8px var(--neon-purple);
}

.lang-switcher a.active {
    color: var(--text-main);
    text-shadow: 0 0 10px var(--neon-purple);
}

.lang-switcher .divider {
    color: var(--neon-purple);
    opacity: 0.5;
}

.mobile-lang-switcher {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mobile-lang-switcher a {
    color: var(--text-muted);
}

.mobile-lang-switcher a.active {
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(188, 19, 254, 0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* Mobile Menu Fullscreen */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-darker);
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin: 2rem 0;
}

.mobile-menu a {
    font-size: 2rem;
    font-family: var(--font-heading);
}

.glow-text {
    color: var(--neon-purple);
    text-shadow: 0 0 15px var(--neon-purple-glow);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    /* offset for nav */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(179, 54, 255, 0.1);
    border: 1px solid rgba(179, 54, 255, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.hero-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
    filter: contrast(1.1) brightness(0.9);
}

.floating-badge {
    position: absolute;
    background: rgba(10, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 6s infinite ease-in-out;
}

.badge-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

.floating-badge i {
    color: var(--neon-purple);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
}

.a-bounce {
    animation: bounce 2s infinite;
}

/* =========================================
   SECTIONS GENERAL
========================================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
}

/* =========================================
   ENERGY FILTERS
========================================= */
.energy-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(10, 5, 16, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover {
    border-color: rgba(179, 54, 255, 0.4);
    color: var(--text-main);
}

.filter-btn.active {
    background: rgba(179, 54, 255, 0.15);
    border-color: var(--neon-purple);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(179, 54, 255, 0.3);
}

/* =========================================
   PRODUCTS GRID
========================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(179, 54, 255, 0.3);
    box-shadow: 0 10px 30px rgba(179, 54, 255, 0.1);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-stock {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(10, 5, 16, 0.8);
    backdrop-filter: blur(5px);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid var(--glass-border);
}

.product-card.sold-out .product-img {
    opacity: 0.6;
    filter: grayscale(100%);
}

.buy-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.8rem;
    background: rgba(179, 54, 255, 0.1);
    color: var(--text-main);
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid transparent;
}

.product-card:hover .buy-btn {
    background: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple-glow);
}

/* =========================================
   SERVICES
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: var(--transition);
}

.glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(54, 214, 255, 0.3);
    box-shadow: 0 10px 30px rgba(54, 214, 255, 0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(179, 54, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--neon-purple);
    border: 1px solid rgba(179, 54, 255, 0.3);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-blue);
    font-weight: 600;
}

.service-link i {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* =========================================
   BLOG SECTION
========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(179, 54, 255, 0.3);
    box-shadow: 0 10px 30px rgba(179, 54, 255, 0.1);
}

.blog-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--neon-purple);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 0 10px var(--neon-purple-glow);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-blue);
    font-weight: 600;
    margin-top: auto;
}

.blog-read-more i {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* =========================================
   FOOTER
========================================= */
.footer {
    padding: 4rem 0 2rem;
    background: #000;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple-glow);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--neon-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   ANIMATIONS & UTILS
========================================= */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

.text-center {
    text-align: center;
}

/* Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up.active,
.reveal-right.active,
.reveal-left.active {
    opacity: 1;
    transform: translate(0);
}

/* =========================================
   MYSTIC ORACLE
========================================= */
.oracle-section {
    padding: 6rem 0;
    overflow: hidden;
}

.oracle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    perspective: 1000px;
}

.oracle-card {
    width: 280px;
    height: 420px;
    background-color: transparent;
    cursor: pointer;
}

.oracle-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.oracle-card.flipped .oracle-card-inner {
    transform: rotateY(180deg);
}

.oracle-card-front,
.oracle-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

.oracle-card-front {
    background: linear-gradient(145deg, rgba(179, 54, 255, 0.1) 0%, rgba(10, 5, 16, 0.8) 100%);
    border: 1px solid rgba(179, 54, 255, 0.3);
    box-shadow: 0 0 30px rgba(179, 54, 255, 0.1), inset 0 0 20px rgba(179, 54, 255, 0.05);
}

.oracle-card-front::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px dotted var(--neon-purple);
    border-radius: 12px;
    opacity: 0.5;
}

.oracle-icon {
    width: 48px;
    height: 48px;
    color: var(--neon-purple);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(179, 54, 255, 0.5));
}

.oracle-text-front {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-main);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.oracle-card-back {
    background: linear-gradient(145deg, rgba(10, 5, 16, 0.9) 0%, rgba(40, 10, 60, 0.9) 100%);
    border: 1px solid var(--accent);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
    transform: rotateY(180deg);
}

#oracleMessage {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    font-style: italic;
}

/* =========================================
   INTERACTIVE ZODIAC SELECTOR
========================================= */
.zodiac-section {
    padding: 6rem 0;
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 3rem auto;
}

.zodiac-btn {
    background: rgba(10, 5, 16, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.zodiac-btn:hover {
    border-color: rgba(179, 54, 255, 0.4);
    color: var(--text-main);
    transform: translateY(-3px);
}

.zodiac-btn.active {
    background: rgba(179, 54, 255, 0.2);
    border-color: var(--neon-purple);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(179, 54, 255, 0.2);
}

.zodiac-result {
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(10, 5, 16, 0.8) 0%, rgba(40, 10, 60, 0.5) 100%);
    border: 1px dotted var(--neon-purple);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zodiac-result-title {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.zodiac-result-desc {
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.zodiac-result-crystal {
    font-weight: 600;
    color: var(--text-muted);
}

/* =========================================
   PARTICLES BACKGROUND
========================================= */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

/* =========================================
   FAQ (MYSTICAL ACCORDION)
========================================= */
.faq-section {
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(10, 5, 16, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(179, 54, 255, 0.4);
    box-shadow: 0 5px 20px rgba(179, 54, 255, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--neon-purple);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--neon-purple);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   TESTIMONIALS (COSMIC FEEDBACK)
========================================= */
.testimonials-section {
    padding: 5rem 0;
    overflow: hidden;
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0 2rem 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testimonial-card {
    min-width: 320px;
    max-width: 350px;
    scroll-snap-align: center;
    background: linear-gradient(145deg, rgba(179, 54, 255, 0.05) 0%, rgba(10, 5, 16, 0.6) 100%);
    border: 1px solid rgba(179, 54, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    position: relative;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 6rem;
    color: rgba(179, 54, 255, 0.1);
    font-family: var(--font-display);
    line-height: 1;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    gap: 0.3rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 1px;
}

/* =========================================
   MEDIA QUERIES
========================================= */
@media screen and (max-width: 768px) {

    .nav-links,
    .lang-switcher {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }

    .nav-links,
    .navbar .btn-outline {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .floating-badge {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .badge-1 {
        top: -10px;
        left: -10px;
    }

    .badge-2 {
        bottom: -10px;
        right: -10px;
    }
}

@media screen and (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .article-title {
        font-size: 2.2rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .blog-img-wrapper {
        height: 200px;
    }
}