/* ============ FAQ PAGE ANTON SC ADDITIONS ============ */
.faq-hero-title,
.faq-hero-title-red,
.faq-hero-stat-number,
.faq-categories-title,
.faq-category-title,
.faq-section-title,
.faq-contact-cta-title,
.faq-cta-button {
    font-family: "Anton SC", "Play", sans-serif !important;
}

/* Hero Section */
.faq-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 120px 0 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.faq-hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(197, 37, 51, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(197, 37, 51, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.faq-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.faq-hero-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.faq-hero-content {
    text-align: left;
}

.faq-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(197, 37, 51, 0.3);
}

.faq-hero-title-red {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

.faq-hero-title-red::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    border-radius: 2px;
}

.faq-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.faq-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.faq-hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(197, 37, 51, 0.1);
    border: 1px solid rgba(197, 37, 51, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 37, 51, 0.2);
}

.faq-hero-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 5px;
}

.faq-hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-hero-search {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-search-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.faq-search-input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(197, 37, 51, 0.3);
}

.faq-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.faq-search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

.faq-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(197, 37, 51, 0.3);
    border-radius: 15px;
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    backdrop-filter: blur(10px);
}

.faq-search-result {
    padding: 15px 20px;
    color: #ffffff;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-search-result:hover {
    background: rgba(197, 37, 51, 0.2);
}

.faq-search-result:last-child {
    border-bottom: none;
}

/* Floating Questions */
.faq-floating-questions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.faq-floating-question {
    position: absolute;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(197, 37, 51, 0.2);
    animation: floatQuestion 8s ease-in-out infinite;
}

.faq-float-1 {
    top: 15%;
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.faq-float-2 {
    top: 60%;
    left: 15%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.faq-float-3 {
    top: 25%;
    right: 10%;
    animation-duration: 9s;
    animation-delay: 1s;
}

.faq-float-4 {
    top: 70%;
    right: 20%;
    animation-duration: 7s;
    animation-delay: 3s;
}

.faq-float-5 {
    top: 40%;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 4s;
}

@keyframes floatQuestion {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-30px) rotate(2deg);
        opacity: 0.5;
    }
}

/* Categories Section */
.faq-categories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    position: relative;
}

.faq-categories-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-categories-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-categories-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-categories-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

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

.faq-category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.faq-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 37, 51, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.faq-category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 37, 51, 0.3);
    box-shadow: 0 20px 40px rgba(197, 37, 51, 0.2);
}

.faq-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-category-card:hover .faq-category-icon {
    transform: scale(1.1) rotate(10deg);
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 15px;
}

.faq-category-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-category-count {
    background: rgba(197, 37, 51, 0.2);
    color: var(--primary-red);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* FAQ Content Section */
.faq-content-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.faq-content-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-category-section {
    margin-bottom: 80px;
    opacity: 1;
    transition: all 0.5s ease;
}

.faq-category-section.hidden {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
}

.faq-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-section-title i {
    color: var(--primary-red);
    font-size: 2rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(197, 37, 51, 0.3);
    box-shadow: 0 10px 30px rgba(197, 37, 51, 0.1);
}

.faq-item.active {
    border-color: rgba(197, 37, 51, 0.5);
    box-shadow: 0 15px 35px rgba(197, 37, 51, 0.2);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(197, 37, 51, 0.05);
}

.faq-question h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle-icon {
    color: var(--primary-red);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 25px 30px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
}

/* Contact CTA Section */
.faq-contact-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(197, 37, 51, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.faq-contact-cta-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.faq-contact-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-contact-cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-contact-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-contact-option:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 37, 51, 0.3);
    box-shadow: 0 20px 40px rgba(197, 37, 51, 0.2);
}

.faq-contact-option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-contact-option:hover .faq-contact-option-icon {
    transform: scale(1.1) rotate(10deg);
}

.faq-contact-option-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.faq-contact-option-content a {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-contact-option-content a:hover {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(197, 37, 51, 0.5);
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.faq-cta-button {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid;
}

.faq-cta-primary {
    background: var(--primary-red);
    color: #ffffff;
    border-color: var(--primary-red);
}

.faq-cta-primary:hover {
    background: transparent;
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 37, 51, 0.3);
}

.faq-cta-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-cta-secondary:hover {
    background: #ffffff;
    color: var(--primary-red);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Search Highlight */
.faq-highlight {
    background: rgba(197, 37, 51, 0.3);
    padding: 2px 4px;
    border-radius: 3px;
    color: #ffffff;
}


/* FAQ ANSWER STYLING ============ */
.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    background: linear-gradient(135deg, rgba(197, 37, 51, 0.05), rgba(255, 59, 63, 0.03));
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid var(--primary-red);
}

.faq-answer li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    transition: all 0.3s ease;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-answer li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(197, 37, 51, 0.3);
}

.faq-answer li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.faq-answer li:hover::before {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(197, 37, 51, 0.5);
}

/* Stunning paragraph styling */
.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 15px;
}

.faq-answer p:first-child {
    border-left: 3px solid rgba(197, 37, 51, 0.4);
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(197, 37, 51, 0.05), transparent);
    border-radius: 0 10px 10px 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.faq-answer strong {
    color: var(--primary-red);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(197, 37, 51, 0.3);
}

/* Special styling for company name */
.faq-answer strong:contains("In Your Face Photo Booth") {
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.05em;
}

/* Icon bullets for special lists */
.faq-answer .faq-features-list {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.05), rgba(197, 37, 51, 0.05));
    border-left: 4px solid #00ccff;
}

.faq-answer .faq-features-list li::before {
    content: "📸";
    background: linear-gradient(135deg, #00ccff, #0099cc);
    font-size: 0.9rem;
}

.faq-answer .faq-payment-list li::before {
    content: "💳";
    background: linear-gradient(135deg, #FFD700, #FFA500);
    font-size: 0.9rem;
}

.faq-answer .faq-pricing-list li::before {
    content: "💰";
    background: linear-gradient(135deg, #32CD32, #228B22);
    font-size: 0.9rem;
}

/* Highlight boxes for important info */
.faq-highlight-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.faq-highlight-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.faq-highlight-box p {
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

/* Responsive improvements */
@media screen and (max-width: 768px) {
    .faq-answer ul {
        padding: 15px;
    }

    .faq-answer li {
        font-size: 1rem;
        padding-left: 30px;
    }

    .faq-answer li::before {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .faq-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .faq-hero-title {
        font-size: 3.5rem;
    }

    .faq-hero-stats {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .faq-hero-title {
        font-size: 2.8rem;
    }

    .faq-hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .faq-hero-stat {
        width: 100%;
        max-width: 200px;
    }

    .faq-categories-title {
        font-size: 2.5rem;
    }

    .faq-section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }

    .faq-contact-cta-title {
        font-size: 2.5rem;
    }

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

    .faq-cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .faq-hero-section {
        padding: 100px 0 60px;
    }

    .faq-hero-title {
        font-size: 2.2rem;
    }

    .faq-hero-subtitle {
        font-size: 1.1rem;
    }

    .faq-search-input {
        padding: 18px 50px 18px 20px;
        font-size: 1rem;
    }

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

    .faq-category-card {
        padding: 30px 20px;
    }

    .faq-section-title {
        font-size: 1.8rem;
    }

    .faq-floating-question {
        font-size: 2rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-hero-content,
.faq-hero-search,
.faq-category-card,
.faq-item {
    animation: fadeInUp 0.8s ease forwards;
}

.faq-hero-search {
    animation-delay: 0.2s;
}

.faq-category-card:nth-child(1) { animation-delay: 0.1s; }
.faq-category-card:nth-child(2) { animation-delay: 0.2s; }
.faq-category-card:nth-child(3) { animation-delay: 0.3s; }
.faq-category-card:nth-child(4) { animation-delay: 0.4s; }
