/* --- Foxylang Theme Variables --- */
:root {
    --primary-orange: #FF6B00;
    --light-orange: #FFECD6;
    --dark-orange: #CC5500;
    --background-light: #FFF7F0;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-light: rgba(0, 0, 0, 0.08);
}

/* --- Back Button --- */
.back-button-container {
    text-align: center;
    margin-bottom: 20px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--primary-orange);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.back-button i {
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.back-button:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.2);
}

.back-button:hover i {
    transform: translateX(-4px);
}

/* --- Body Background & Base Layout --- */
body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #FFF3E6, #FFD8B0);
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    position: relative;
    box-sizing: border-box;
}

/* 🔸 Background decorative shape */
body::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #FF6B00 0%, transparent 70%);
    opacity: 0.08;
    z-index: 0;
}

/* --- Main Container --- */
.container {
    max-width: 900px;
    width: 100%;
    background-color: #FFFFFF; /* fallback for var(--background-light) */
    border-radius: 24px;
    padding: 30px 40px;
    border: 2px solid #FFC062; /* fallback for var(--border-color)
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); /* softer shadow */
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* --- Header Section --- */
.header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

h1 {
    font-family: 'Nunito', sans-serif;
    color: var(--primary-orange);
    font-size: 2.8em;
    margin-bottom: 10px;
    font-weight: 700;
}

.header p {
    font-size: 1.1em;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Sections --- */
.section {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 40px 0;
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.07);
    border: 1px solid #FFC062; /* fallback for var(--border-color) */
    position: relative;
    z-index: 1;
}

h2 {
    font-family: 'Nunito', sans-serif;
    color: var(--primary-orange);
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

h2::after {
    content: " ✨";
    font-size: 1.2em;
}

h3 {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* --- Contact Buttons --- */
.contact-section {
    text-align: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #FF6B00, #FF934D);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    margin-top: 15px;
}

.button i {
    margin-right: 10px;
    font-size: 1.2em;
}

.button:hover {
    background-color: var(--dark-orange);
    transform: translateY(-3px) scale(1.03);
}

.response-time {
    font-size: 0.9em;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

/* --- Social Icons --- */
.social-links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* --- Base Icon Style --- */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--light-orange-bg);
    color: var(--primary-orange);
    font-size: 1.8em;
    text-decoration: none;
    transition: all 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-light);
}

/* --- Shared Hover Behavior --- */
.social-icon:hover {
    transform: translateY(-5px) rotate(12deg);
    color: var(--white);
    box-shadow: 0 6px 12px rgba(255, 107, 0, 0.3);
}

/* Specific social icon colors (optional, for branding) (Removed it, to have default orange color) */
/*.social-icon.facebook { background-color: #e6f0ff; color: #3b5998; }*/
/*.social-icon.x { background-color: #e0e0e0; color: #000000; }*/
/*.social-icon.youtube { background-color: #ffe6e6; color: #FF0000; }*/

/* Specific icons hover colors */
.social-icon.facebook:hover { background-color: #3b5998; color: var(--white); }
.social-icon.x:hover { background-color: #000000; color: var(--white); }
.social-icon.youtube:hover { background-color: #FF0000; color: var(--white); }

/* --- FAQ Accordion --- */
.faq-section {
    padding-top: 15px;
}

.faq-intro {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.05em;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: var(--light-orange);
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #FF6B00, #FFAD66);
    color: #fff;
}

.faq-question:hover {
    background-color: var(--light-orange);
    color: var(--primary-orange);
}

.faq-question .arrow {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background-color: var(--white);
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
}

.faq-answer p,
.faq-answer ul {
    color: var(--text-light);
    font-size: 0.95em;
}

.faq-answer a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* --- Footer --- */
.footer {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9em;
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .container {
        padding: 25px 25px;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5em;
    }

    .faq-question,
    .faq-answer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .container {
        padding: 20px 15px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.5em;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .button {
        width: calc(100% - 20px);
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .social-links {
        gap: 15px;
    }
}

/* 🎈 Fun floating effect */
@keyframes floaty {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0px); }
}
