@charset "utf-8";

@font-face {
    font-family: 'Aritaburi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/Arita-buri-SemiBold.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}


@font-face {
    font-family: 'GounBatang';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/GowunBatang-Regular.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GounBatang';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/GowunBatang-Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

/* ==========================================================================
   1. Global Reset & Typography
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.pc_br{display:inline;}
.m_br{display:none;}


@media (max-width: 1024px) {
    .pc_br{display:none;}
    .m_br{display:inline;}
}



html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Pretendard', sans-serif;
    background-color: #ffffff; /* Explicitly #ffffff per Project Info */
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, li {
    list-style: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Typography Helpers - Component Classes */
/* Typography Helpers - Component Classes (Redesigned) */
.section-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.section-sub {
    display: inline-block;
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    color: #e2b07e; /* Primary */
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px; /* Space for line */
}

.section-sub::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 10px;
    background: #e2b07e;
    opacity: 0.6;
}

.section-title {
    font-size: 52px;
    color: #111111;
    line-height: 1.25;
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: -0.02em;
}

.section-desc {
    margin-top: 24px;
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-40 { margin-bottom: 40px; }

/* High-End Container */
.container {
    max-width: 1720px; /* Wider layout */
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    .section-title {
        font-size: 40px;
    }
    .section-desc {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 30px;
    }
    .container {
        padding: 0 20px;
    }
    .section-desc {
        font-size: 15px;
        padding: 0 10px;
    }
}

/* ==========================================================================
   2. Header (Glassmorphism & High-End)
   ========================================================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.scrolled {
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.header-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .logo {
    display: block;
    width: 150px; /* Adjusted width */
}

#header .logo a {
    display: block;
    position: relative;
    width: 100%;
    /* Aspect ratio hack or fixed height to prevent collapse if children are absolute */
    /* Assuming logo aspect ratio ~3:1 or so. Let's rely on one being static or set height */
}

.logo-white, .logo-color {
    transition: opacity 0.3s ease;
    width: 100%;
    display: block;
}

/* Default State (Transparent Header) */
.logo-white {
    opacity: 1;
    /* Static position to define height of parent */
    position: relative;
}
.logo-color {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* Scrolled State (White Header) */
#header.scrolled .logo-white { opacity: 0; }
#header.scrolled .logo-color { opacity: 1; }

@media (max-width: 1024px) {
    #header .logo {
        width:160px;
    }
}

.gnb-wrap {
    display: block;
}

.gnb {
    display: flex;
    gap: 50px;
}

.gnb li a {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 10px 0;
}

.gnb li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #e2b07e;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gnb li a:hover {
    color: #ffffff;
}

.gnb li a:hover::after {
    width: 100%;
}

/* Scrolled State for Menu */
#header.scrolled .gnb li a {
    color: #333333;
}
#header.scrolled .gnb li a:hover {
    color: #e2b07e;
}

.m-menu-btn {
    display: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
}

#header.scrolled .m-menu-btn {
    color: #000000;
}

@media (max-width: 1024px) {
    .gnb-wrap {
        display: none; /* Mobile Menu will be handled by JS/Overlay usually, simplified here */
    }

    .m-menu-btn {
        display: block;
    }

    #header {
        height: 70px;
    }
    #header.scrolled {
        height: 70px;
    }
}

/* ==========================================================================
   3. Hero Section (Cinematic Dark)
   ========================================================================== */
.hero-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/hero-bg.jpg') no-repeat 50% 50%; /* Placeholder */
    /* background: url('https://images.unsplash.com/photo-1534447677768-be436bb09401?q=80&w=2694&auto=format&fit=crop') no-repeat 50% 50%; */

    /* Wait, user said Keep image paths. The original file linked a background image in CSS or HTML?
       Original new.html didn't explicitely show an img tag for hero bg, but style_jidam had a url.
       I will use a nice dark gradient or the one from the original style if I can find it.
       Original style used: https://images.unsplash.com/photo-1534447677768-be436bb09401
    */
    background: url('https://images.unsplash.com/photo-1534447677768-be436bb09401?q=80&w=2694&auto=format&fit=crop') no-repeat 50% 50%;
    background-size: cover;
    opacity: 0.6;
    animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-icon {
    font-size: 32px;
    color: #e2b07e;
    margin-bottom: 24px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.hero-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-family: 'Aritaburi';
    font-size: 56px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 80px;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-top: 40px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s;
}

.scroll-down i {
    font-size: 24px;
    margin-bottom: 8px;
    animation: scrollBounce 2s infinite;
}

.scroll-down span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 46px;
    }
}
@media (max-width: 767px) {
    .hero-subtitle{
        font-size: 10px;
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .hero-desc {
        font-size: 16px;
        margin-top: 10px;
    }
}

/* ==========================================================================
   4. Story Section (Scrollytelling)
   ========================================================================== */
#story {
    position: relative;
    background: #000000;
    color: #ffffff;
    overflow: hidden;
}

.story-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,1);
}

.story-section .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background:linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: 1;
}

/* Backgrounds for each story slice */
.story-section.s1 {
    background: url('/img/s1.webp') no-repeat 50% 50%;
    background-size: cover;
}
.story-section.s2 {
    background: url('/img/s2.webp') no-repeat 50% 50%;
    background-size: cover;
    background-attachment: fixed; /* Parallax feel */
}
.story-section.s3 {
    background: url('/img/s3.webp') no-repeat 50% 50%;
    background-size: cover;
}

.story-text-box {
    position: relative;
    z-index: 5;
    padding: 0 20px;
    max-width: 800px;
}

.story-kicker {
    display: inline-block;
    font-family: 'Aritaburi';
    font-size: 18px;
    font-style: italic;
    color: #e2b07e;
    margin-bottom: 20px;
}

.story-main {
    font-family: 'Aritaburi';
    font-size: 50px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 30px;
}

.story-sub {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.element-visual-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.element-circle {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Aritaburi';
    font-size: 20px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.element-circle:hover {
    border-color: #e2b07e;
    color: #e2b07e;
    background: rgba(226, 176, 126, 0.1);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .story-main { font-size: 40px; }
    .story-section { min-height: 600px; height: auto; padding: 100px 0; }
}

@media (max-width: 767px) {
    .story-main { font-size: 26px; }
    .story-sub { font-size: 14px; }
    .element-visual-box { gap: 15px; }
    .element-circle { width: 50px; height: 50px; font-size: 16px; }
}

/* ==========================================================================
   5. Philosophy Section (Editorial White)
   ========================================================================== */
#philosophy {
    background-color: #ffffff;
    padding: 160px 0;
    position: relative;
}


        .philosophy-wrap {
            background-color: var(--c-white);
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            gap: 100px;
        }

        .philosophy-img {
            width: 50%;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
        }

        .philosophy-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .philo-content {
            text-align: left;
            max-width: 800px;
            margin: 0 auto;
        }

.label-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #e2b07e;
    border-radius: 50px;
    font-size: 12px;
    color: #e2b07e;
    font-weight: 600;
    margin-bottom: 40px;
}

.philo-title {
    font-family: 'Aritaburi';
    font-size: 40px;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 40px;
    font-weight: 600;
}

.philo-desc {
            font-size: 20px;
            color: var(--c-text-gray);
            line-height: 1.8;
            padding: 40px 0;
            border-top: 1px solid rgba(226, 176, 126, 0.3);
            border-bottom: 1px solid rgba(226, 176, 126, 0.3);
            margin-bottom: 50px;
            font-family: 'Aritaburi';
            font-weight: 600;
        }

        .philo-list {
            display: inline-block;
            text-align: left;

        }

        .philo-list li {
            display: flex;
            align-items: center;

            gap: 10px;
            margin-bottom: 15px;
            font-size: 20px;
            color: #292929;
        }

        .philo-list li i {
            color:#e2b07e;
            font-size: 24px;
        }

.philo-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    #philosophy { padding: 100px 20px; }
     .philosophy-wrap {
        flex-direction: column;
        width: 100%;
        padding: 0;
        gap: 50px;
        align-items: center;


     }
     .philosophy-img {
        width: 100%;
     }
     .philo-content {
        width: 100%;
        padding: 0;
        text-align: center;

     }
     .label-text {
        margin-bottom: 15px;
        font-size: 12px;
     }
     .philo-desc {
        padding: 20px 0;
        margin-bottom: 20px;
        font-size: 16px;
     }

    .philo-title { font-size: 24px; margin-bottom: 20px;}

    .philo-list {
        display: inline-block;
        width: auto;
        padding: 0;
        text-align: left;
    }

    .philo-list li {
        font-size: 16px;
        padding: 0;
        gap: 15px;
        display: flex;
        align-items: center; /* Align icon with text center */
        margin-bottom: 30px; /* Spacing between items */
    }

    .philo-list li i {
        font-size: 20px;
        color: #e2b07e;
        flex-shrink: 0;
    }
}

/* ==========================================================================
   6. Program Section (Cards)
   ========================================================================== */
#program {
    background-color: #f7f8fa; /* Very light grey */
    padding: 160px 0;
}

.program-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.program-item {
    background: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid transparent;
}

.program-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: #e2b07e;
}

.p-img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.p-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.program-item:hover .p-img-box img {
    transform: scale(1.1);
}

.p-txt-box {
    padding: 40px;
}

.p-cat {
    display: block;
    font-size: 12px;
    color: #e2b07e;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
}

.p-tit {
    font-family: 'Aritaburi';
    font-size: 24px;
    color: #222222;
    margin-bottom: 20px;
    font-weight: 700;
}

.p-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 24px;
    min-height: 75px;
}

.p-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.p-tag {
    font-size: 13px;
    color: #888888;
    background: #f5f5f5;
    padding: 6px 14px;
    border-radius: 30px;
    transition: all 0.3s;
}

.program-item:hover .p-tag {
    background: #e2b07e;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .program-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .program-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   7. Process Section
   ========================================================================== */
#process {
    background-color: #ffffff;
    padding: 160px 0;
}

.process-list {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    position: relative;
    border-top: 1px solid #eeeeee;
    padding-top: 60px;
}

.process-item {
    flex: 1;
    position: relative;
    padding-right: 40px;
}

.process-item:last-child {
    padding-right: 0;
}

.process-num {
    display: block;
    font-size: 60px;
    font-weight: 900;
    color: #e2b07e;
    font-family: 'Aritaburi';
    margin-bottom: 0px;
    transition: color 0.3s;
}

.process-item:hover .process-num {
    color: #f0f0f0;
}

.process-tit {
    font-size: 22px;
    color: #222222;
    margin-bottom: 16px;
    font-weight: 700;
}

.process-desc {
    font-size: 16px;
    color: #777777;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .process-list {
        flex-direction: column;
        align-items: center;

        gap: 40px;
        padding-top: 40px;
    }
    .process-item {
        padding-right: 0;
        text-align: center;
    }
}

/* Mobile Line Break */
.m_br { display: none; }
@media (max-width: 767px) {
    .m_br { display: inline; }
}

/* ==========================================================================
   2. Header & Navigation
   ========================================================================== */
#reviews {
    background-color: #f9f9f9;
    padding: 160px 0;
}

.review-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: -100px;
    position: relative;
    z-index: 1;
    border-radius: 4px;
}

.review-banner img {
    object-position: center 30%;
}

.reviewSwiper {
    padding: 0 20px 60px 20px !important;
    position: relative;
    z-index: 2;
}

.review-card {
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-radius: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align for card content */
    text-align: center;
}

.r-img-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;

}

.r-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-stars {
    display: flex;
    gap: 4px;
    font-size: 14px;
    color: #e2b07e;
    margin-bottom: 16px;
}

.r-text {
    font-size: 16px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 80px;
    word-break: keep-all;
}

.r-author {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    border-top: 1px solid #eeeeee;
    padding-top: 16px;
    width: 100%;
}


@media (max-width: 767px) {
    .r-img-box {
        height: 200px;
    }
}

/* ==========================================================================
   9. CTA & FAQ
   ========================================================================== */
/* CTA Section Dark */
/* CTA Section Dark */
.section-dark {
    position: relative;
    background: url("/img/online_bg.png") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 160px 0;
    color: #ffffff;
    overflow: hidden;
}

.section-dark .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

.section-dark .section-title {
    color: #ffffff;
    font-size: 54px;
    margin-bottom: 24px;
    line-height:1.4;
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 300;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2b07e;
    color: #000000;
width: 300px;
height: 70px;
margin:0 auto;
    padding: 20px 60px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(226, 176, 126, 0.4);
    animation: btnGlow 3s infinite;
}
.btn-primary i{
    margin-right: 10px;
    font-size: 24px;
}

@keyframes btnGlow {
    0% { box-shadow: 0 0 20px rgba(226, 176, 126, 0.4); }
    50% { box-shadow: 0 0 40px rgba(226, 176, 126, 0.8); }
    100% { box-shadow: 0 0 20px rgba(226, 176, 126, 0.4); }
}

.btn-primary:hover {
    background: #ffffff;
    color: #e2b07e;
    transform: translateY(-5px);
}

.cta-phone-box {
    margin-top: 40px;
    font-size: 36px;
    color: #e2b07e;
    opacity: 1;
    font-family: 'Aritaburi';
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.cta-phone-box i{
    font-size: 36px;
}

@media (max-width: 767px) {
    .section-dark .section-title {
        font-size: 32px;
    }
    .section-dark .section-desc {
        font-size: 16px;
    }
    .cta-phone-box {
        text-align: center;
        font-size: 34px;
    }
    .cta-phone-box i{
        font-size: 24px;
    }
    .btn-primary{
        width: 80%;
        padding: 10px 20px;
        height: 50px;
        font-size: 16px;
    }
}

/* FAQ */
#faq {
    background-color: #ffffff;
    padding: 140px 0;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eeeeee;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: #e2b07e;
}

.faq-q {
    padding: 20px 0;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333333;
    font-family: 'Aritaburi';
}

.faq-q-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.q-icon {
    font-size: 24px;
    color: #e2b07e;
    flex-shrink: 0;
}

.toggle-icon {
    transition: transform 0.3s;
    font-size: 20px;
    color: #999;
}

.faq-q:hover .toggle-icon {
    color: #e2b07e;
}

.faq-a {
    padding-bottom: 0px;
    color: #666666;
    line-height: 1.6;
    line-height: 1.6;
    font-size: 16px;

    /* Animation Init */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block; /* Override display:none */
}

.faq-item.active .faq-a {
    max-height: 500px; /* Check content size */
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 24px;
}

.faq-item.active .faq-q {
    color: #e2b07e;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
    color: #e2b07e;
}


.faq-a-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size:20px;
    color:#474747;
}

.a-icon {
    font-size: 24px;
    color: #cccccc;
    margin-top: 2px;
    flex-shrink: 0;
}


@media (max-width: 767px) {
    .faq-q-text {
        justify-content: flex-start;
        gap: 10px;
        align-items: flex-start;
        font-size: 16px;
    }
    .faq-a-text {
        font-size:14px;
    }
}

/* ==========================================================================
   10. Global Quick Menu & Utility
   ========================================================================== */
.quick-menu {
    position: fixed;
    right: 30px;
    bottom: 50px;
    z-index: 9999; /* Increased to ensure visibility */
    display: flex;
    flex-direction: column;
    gap: 15px;
    visibility: visible;
    opacity: 1;
}

.quick-item {
    width: 60px;
    height: 60px;
    background: #ad8957; /* Low saturation beige */
    backdrop-filter: none;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #4A3B2A; /* Dark brown */
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
}


.quick-item i {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.quick-item:hover {
    background: #C7B59D; /* Slightly darker beige on hover */
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    border: none;
}

.quick-item:hover i {
    color: #2e241b;
}

.quick-tooltip {
    position: absolute;
    right: 70px;
    background: #cbd2ed;
    color: #2a2a2a;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    white-space: nowrap;
}

.quick-item:hover .quick-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.quick-top {
    width: 40px;
    height: 40px;
    margin:0 auto;
    background: #D4C5B0;
    color: #4A3B2A;
    border: none;
    backdrop-filter: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-top:hover {
    background: #C7B59D;
    color: #2e241b;
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer-wrap {
    background: #111111;
    padding: 100px 0 40px;
    color: #888888;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
}

.footer-logo-text {
    display: block;
    font-family: 'Aritaburi';
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.5;
}

.footer-item {
    font-size: 14px;
    margin-bottom: 12px;
    color: #999999;
}

.footer-item b {
    color: #dddddd;
    margin-right: 8px;
}

.sns-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.sns-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s;
}

.sns-icon:hover {
    background: #e2b07e;
}

.copyright {
    margin-top: 80px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #444444;
    border-top: 1px solid #222222;
    padding-top: 40px;
}

@media (max-width: 767px) {
    .footer-inner { flex-direction: column; gap: 40px; padding: 0 20px;}
    .quick-menu { right: 10px; bottom: 30px; gap: 10px;}
    .quick-item { width: 40px; height: 40px; font-size: 15px; }
    .quick-top { width: 30px; height: 30px; font-size: 15px; margin:0 auto;}
}

/* ==========================================================================
   11. Mobile Menu Overlay
   ========================================================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
    color: #e2b07e;
}

.mobile-menu-list {
    text-align: center;
}

.mobile-menu-list li {
    margin: 30px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.mobile-menu-list li a {
    font-size: 28px;
    color: #ffffff;
    font-family: 'Aritaburi';
    font-weight: 300;
}

.mobile-menu-list li a:hover {
    color: #e2b07e;
}

/* Animation Delays for Menu Items */
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

