@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* ========== Hero Section ========== */
.hero {
    background: linear-gradient(135deg, #c200c2 0%, #800080 100%);
    color: white;
    min-height: 350px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
}

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

/* ========== FAQs Section ========== */
#faqs {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faqs-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Category Styling */
.faq-category {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.category-title {
    font-size: 2rem;
    color: #2b2e4a;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #c200c2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: #c200c2;
    font-size: 2rem;
}

/* FAQ Item Styling */
.faq-item {
    margin-bottom: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #c200c2;
    box-shadow: 0 5px 15px rgba(194, 0, 194, 0.1);
}

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

/* Question Button */
.faq-question {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b2e4a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.faq-question:hover {
    background: #e9ecef;
    color: #c200c2;
}

.faq-question i {
    color: #c200c2;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    background: #c200c2;
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

/* Answer Content */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 3000px;
    padding: 25px;
    border-top: 2px solid #e9ecef;
}

.faq-answer p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-answer ul li {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 25px;
    position: relative;
}

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

.faq-answer ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c200c2;
    font-weight: bold;
}

.faq-answer strong {
    color: #2b2e4a;
}

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

/* Large Tablet */
@media (max-width: 1024px) {
    .hero {
        min-height: 320px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    #faqs {
        padding: 70px 20px;
    }

    .faq-category {
        padding: 35px;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .category-title i {
        font-size: 1.8rem;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .hero {
        min-height: 300px;
    }

    .hero-content {
        padding: 50px 20px;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    #faqs {
        padding: 60px 15px;
    }

    .faqs-container {
        gap: 50px;
    }

    .faq-category {
        padding: 30px;
        border-radius: 15px;
    }

    .category-title {
        font-size: 1.6rem;
        gap: 12px;
    }

    .category-title i {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 1.05rem;
        padding: 18px 20px;
    }

    .faq-answer p,
    .faq-answer ul li {
        font-size: 0.95rem;
    }
}

/* Mobile */
@media (max-width: 720px) {
    .hero {
        min-height: 280px;
    }

    .hero-content {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    #faqs {
        padding: 50px 15px;
    }

    .faqs-container {
        gap: 40px;
    }

    .faq-category {
        padding: 25px 20px;
    }

    .category-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        gap: 10px;
        flex-wrap: wrap;
    }

    .category-title i {
        font-size: 1.4rem;
    }

    .faq-item {
        margin-bottom: 12px;
        border-radius: 10px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 16px 18px;
        gap: 10px;
    }

    .faq-question i {
        font-size: 0.9rem;
    }

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

    .faq-answer p,
    .faq-answer ul li {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .faq-answer ul li {
        padding-left: 20px;
        margin-bottom: 0.8rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        min-height: 250px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    #faqs {
        padding: 40px 10px;
    }

    .faqs-container {
        gap: 35px;
    }

    .faq-category {
        padding: 20px 15px;
    }

    .category-title {
        font-size: 1.3rem;
        margin-bottom: 1.3rem;
        padding-bottom: 0.8rem;
        border-bottom-width: 2px;
    }

    .category-title i {
        font-size: 1.3rem;
    }

    .faq-item {
        margin-bottom: 10px;
        border-width: 1px;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 14px 15px;
    }

    .faq-question i {
        font-size: 0.85rem;
    }

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

    .faq-answer p,
    .faq-answer ul li {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .faq-answer ul li {
        padding-left: 18px;
        margin-bottom: 0.7rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero {
        min-height: 220px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .faq-category {
        padding: 18px 12px;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .category-title i {
        font-size: 1.2rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 12px;
    }

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

    .faq-answer p,
    .faq-answer ul li {
        font-size: 0.8rem;
    }
}

/* ========== Footer Section ========== */
#footer {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-color: #c200c2;
}

.footer {
    background-color: #050505;
    color: white;
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 4px solid var(--brand-color);
}

.footer-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(12, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }
}

.about-section {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .about-section {
        grid-column: span 5;
    }
}

.contact-section {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .contact-section {
        grid-column: span 3;
    }
}

.hours-section {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .hours-section {
        grid-column: span 4;
    }
}

.footer-title {
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-color);
    border-bottom: 1px solid #374151;
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.about-footer {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.625;
    max-width: 28rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-link {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

.email-link:hover {
    color: var(--brand-color);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    color: #9ca3af;
    transition: color 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--brand-color);
}

.social-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #d1d5db;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1f2937;
    padding-bottom: 0.5rem;
}

.hours-day {
    font-weight: 500;
}

.hours-closed {
    color: var(--brand-color);
    font-weight: 500;
}

.hours-note {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.625;
    margin-top: 1.25rem;
}

.hours-note-label {
    color: var(--brand-color);
    font-weight: bold;
}

.footer-bottom {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-bottom {
        padding: 0 2rem;
    }
}

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

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}