* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0d2e 50%, #2d1b4e 100%);
    background-attachment: fixed;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(155, 138, 251, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(135deg, #9B8AFB 0%, #c9b3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    filter: drop-shadow(0 0 10px rgba(155, 138, 251, 0.5));
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(155, 138, 251, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(155, 138, 251, 0.8)); }
}

.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #9B8AFB;
    border-radius: 3px;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.mobile-nav-extras {
    display: none;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #9B8AFB;
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: #9B8AFB;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background: rgba(155, 138, 251, 0.1);
    border: 1px solid rgba(155, 138, 251, 0.3);
    border-radius: 20px;
    padding: 8px 40px 8px 15px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s;
    width: 200px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    border-color: #9B8AFB;
    box-shadow: 0 0 15px rgba(155, 138, 251, 0.3);
    width: 250px;
}

.search-btn {
    position: absolute;
    right: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
}

.search-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s;
}

.search-btn:hover img {
    opacity: 1;
    transform: scale(1.1) rotate(90deg);
}

.cta-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(155, 138, 251, 0.5);
    color: #ffffff;
}

.btn-secondary:hover {
    border-color: #9B8AFB;
    background: rgba(155, 138, 251, 0.1);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #9B8AFB 0%, #7a68d6 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(155, 138, 251, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(155, 138, 251, 0.5);
}

.btn img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* FAQ Hero */
.faq-hero {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(155, 138, 251, 0.15) 0%, transparent 70%);
    animation: pulseHero 6s ease-in-out infinite;
}

@keyframes pulseHero {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.faq-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #9B8AFB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-hero-content > p {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.faq-search {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.faq-search-input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(155, 138, 251, 0.1);
    border: 1px solid rgba(155, 138, 251, 0.3);
    border-radius: 30px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.faq-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.faq-search-input:focus {
    border-color: #9B8AFB;
    box-shadow: 0 0 20px rgba(155, 138, 251, 0.3);
    background: rgba(155, 138, 251, 0.15);
}

.faq-search .btn {
    padding: 15px 30px;
    white-space: nowrap;
}

/* FAQ Categories */
.faq-categories {
    padding: 60px 0;
    background: rgba(10, 10, 10, 0.3);
    border-top: 1px solid rgba(155, 138, 251, 0.2);
    border-bottom: 1px solid rgba(155, 138, 251, 0.2);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.category-card {
    background: rgba(155, 138, 251, 0.05);
    border: 1px solid rgba(155, 138, 251, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s;
    animation: fadeInScale 0.6s ease-out;
    animation-fill-mode: backwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }

.category-card:hover,
.category-card.active {
    transform: translateY(-10px);
    border-color: #9B8AFB;
    box-shadow: 0 15px 40px rgba(155, 138, 251, 0.3);
    background: rgba(155, 138, 251, 0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(155, 138, 251, 0.2), rgba(122, 104, 214, 0.2));
    border: 2px solid rgba(155, 138, 251, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.4s;
}

.category-card:hover .category-icon,
.category-card.active .category-icon {
    background: linear-gradient(135deg, #9B8AFB 0%, #7a68d6 100%);
    border-color: #9B8AFB;
    transform: rotate(360deg) scale(1.1);
}

.category-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) saturate(100%) invert(78%) sepia(46%) saturate(1481%) hue-rotate(204deg) brightness(101%) contrast(98%);
    transition: filter 0.4s;
}

.category-card:hover .category-icon img,
.category-card.active .category-icon img {
    filter: brightness(0) invert(1);
}

.category-card h3 {
    color: #ffffff;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.category-card:hover h3,
.category-card.active h3 {
    color: #9B8AFB;
}

/* FAQ Accordion Section */
.faq-accordion-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #9B8AFB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-accordion {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(155, 138, 251, 0.05);
    border: 1px solid rgba(155, 138, 251, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq-item:hover {
    border-color: #9B8AFB;
    box-shadow: 0 5px 20px rgba(155, 138, 251, 0.2);
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    user-select: none;
}

.faq-question:hover {
    color: #9B8AFB;
}

.faq-question img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.faq-toggle:checked + .faq-question {
    color: #9B8AFB;
    background: rgba(155, 138, 251, 0.1);
}

.faq-toggle:checked + .faq-question img {
    transform: rotate(180deg);
    filter: brightness(0) saturate(100%) invert(78%) sepia(46%) saturate(1481%) hue-rotate(204deg) brightness(101%) contrast(98%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    color: #b8b8b8;
    line-height: 1.8;
    margin: 15px 0 15px 25px;
}

.faq-answer li {
    margin-bottom: 10px;
}

.faq-answer strong {
    color: #9B8AFB;
}

.faq-answer a {
    color: #9B8AFB;
    text-decoration: none;
    transition: color 0.3s;
}

.faq-answer a:hover {
    color: #c9b3ff;
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(155, 138, 251, 0.05) 50%, transparent 100%);
}

.contact-content {
    text-align: center;
}

.contact-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #9B8AFB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content > p {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-option {
    background: rgba(155, 138, 251, 0.05);
    border: 1px solid rgba(155, 138, 251, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    animation: fadeInUp 0.6s ease-out;
}

.contact-option:hover {
    transform: translateY(-15px);
    border-color: #9B8AFB;
    box-shadow: 0 20px 60px rgba(155, 138, 251, 0.3);
    background: rgba(155, 138, 251, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(155, 138, 251, 0.2), rgba(122, 104, 214, 0.2));
    border: 2px solid rgba(155, 138, 251, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s;
}

.contact-option:hover .contact-icon {
    background: linear-gradient(135deg, #9B8AFB 0%, #7a68d6 100%);
    border-color: #9B8AFB;
    transform: rotate(360deg) scale(1.1);
}

.contact-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(78%) sepia(46%) saturate(1481%) hue-rotate(204deg) brightness(101%) contrast(98%);
    transition: filter 0.4s;
}

.contact-option:hover .contact-icon img {
    filter: brightness(0) invert(1);
}

.contact-option h3 {
    color: #9B8AFB;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.contact-option p {
    color: #b8b8b8;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.8);
    border-top: 1px solid rgba(155, 138, 251, 0.2);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #9B8AFB 0%, #c9b3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: #9B8AFB;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col p {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(155, 138, 251, 0.1);
    border: 1px solid rgba(155, 138, 251, 0.3);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.social-icons a:hover {
    background: rgba(155, 138, 251, 0.2);
    border-color: #9B8AFB;
    transform: translateY(-3px) rotate(360deg);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #9B8AFB;
    transform: translateX(5px);
}

.footer-col address {
    font-style: normal;
}

.footer-col address p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-col address img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(155, 138, 251, 0.05);
    border: 1px solid rgba(155, 138, 251, 0.3);
    border-radius: 8px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: #9B8AFB;
    box-shadow: 0 0 15px rgba(155, 138, 251, 0.2);
}

.newsletter-form button {
    padding: 12px 25px;
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(155, 138, 251, 0.1);
    color: #b8b8b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Hide desktop nav items */
    .nav-menu > li:not(.mobile-nav-extras) {
        display: none;
    }

    /* Show mobile nav extras inside hamburger menu */
    .mobile-nav-extras {
        display: block;
        width: 100%;
        padding-top: 20px;
        border-top: 1px solid rgba(155, 138, 251, 0.2);
        margin-top: 20px;
    }

    .mobile-nav-extras .search-container {
        margin-bottom: 15px;
    }

    .mobile-nav-extras .search-input {
        width: 100%;
    }

    .mobile-nav-extras .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .mobile-nav-extras .btn {
        width: 100%;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(155, 138, 251, 0.2);
        transform: translateX(-100%);
        transition: transform 0.3s;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .menu-toggle:checked ~ .nav-menu {
        transform: translateX(0);
    }

    /* Show all items when menu is open */
    .menu-toggle:checked ~ .nav-menu > li {
        display: block;
    }

    .menu-toggle:checked ~ .hamburger .bar:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle:checked ~ .hamburger .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked ~ .hamburger .bar:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    /* Hide desktop nav actions */
    .nav-actions {
        display: none;
    }

    .faq-hero-content h1 {
        font-size: 2.5rem;
    }

    .faq-hero-content > p {
        font-size: 1rem;
    }

    .faq-search {
        flex-direction: column;
    }

    .faq-search .btn {
        width: 100%;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }

    .category-card {
        padding: 20px 15px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon img {
        width: 30px;
        height: 30px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-toggle:checked ~ .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .contact-content h2 {
        font-size: 2.2rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .faq-hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .contact-content h2 {
        font-size: 1.8rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: rgba(155, 138, 251, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(155, 138, 251, 0.3);
    color: #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #9B8AFB 0%, #7a68d6 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #c9b3ff 0%, #9B8AFB 100%);
}