/* Visa Page Styles */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.visa-item {
    background: #fff;
    border: 1px solid #e0dada;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.visa-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.08);
    border-color: var(--color-accent);
}

.visa-flag {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
    font-size: 3rem;
    /* For Emoji Flags */
}

.visa-info {
    flex: 1;
}

.visa-info h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
}

.visa-specs {
    font-size: 0.95rem;
    color: var(--color-text);
}

.visa-row {
    margin-bottom: 6px;
    display: flex;
}

.visa-label {
    font-weight: 600;
    color: var(--color-text-light);
    width: 60px;
    flex-shrink: 0;
}

.visa-value {
    color: var(--color-text);
}

.visa-extra {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #888;
    background-color: var(--color-light-gray);
    padding: 8px;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .visa-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --color-primary: #5d4037;
    /* Warm earthy brown */
    --color-accent: #d7ccc8;
    /* Soft warm beige/rose tone */
    --color-beige: #efebe9;
    /* Light warm background */
    --color-text: #4e342e;
    /* Dark brown text */
    --color-text-light: #8d6e63;
    /* Lighter brown text */
    --color-white: #ffffff;
    --color-light-gray: #fcfbf9;
    /* Warm off-white */

    /* Secondary Accents */
    --color-secondary-accent: #a1887f;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Noto Sans KR', sans-serif;

    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--color-light-gray);
}

.dark-bg {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.text-white {
    color: var(--color-white);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 34px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 500;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    /* Softer corners */
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: var(--color-text-light);
    /* Lighter brown on hover */
    border-color: var(--color-text-light);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 64, 55, 0.2);
}

.dark-bg .btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.dark-bg .btn-primary:hover {
    background-color: transparent;
    /* Keep transparent hover on dark bg if preferred, or slight white tint */
    color: var(--color-white);
}

.btn-outline {
    display: inline-block;
    padding: 12px 34px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--color-white);
    margin-left: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}


.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-faq {
    display: inline-block;
    width: 1000px;
    max-width: 95%;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .btn-faq {
        min-width: auto;
        width: 90%;
        max-width: 500px;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 253, 250, 0.95);
    /* Warmer background */
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding: 18px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    color: var(--color-text);
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    /* Thicker underline */
    background-color: var(--color-secondary-accent);
    /* Use accent for underline */
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-reserve {
    padding: 10px 24px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.9rem;
    border-radius: 30px;
    /* Pill shape */
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background-color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 64, 55, 0.15);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
    padding-top: 80px;
    /* nav height */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--color-beige);
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 30px;
    /* Updated Animation for Dramatic Entrance */
    animation: heroTextReveal 2.5s cubic-bezier(0.22, 1, 0.36, 1) 1.5s backwards;
}

@keyframes heroTextReveal {
    0% {
        opacity: 0;
        transform: scale(3) translateY(-50px);
        /* Start larger and slightly higher */
        filter: blur(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-btns {
    animation: fadeInUp 1s ease 0.9s backwards;
}

/* Concept Section */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.concept-text .section-title {
    font-size: 3rem;
    line-height: 1.2;
}

.concept-list {
    margin-top: 30px;
}

.concept-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.concept-list i {
    color: var(--color-primary);
    margin-right: 10px;
}

.concept-image img {
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* BA Section (Comparison) */
.ba-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.tech-tags {
    margin-top: 30px;
}

.tech-tags span {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.05);
}

.comparison-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.overlay-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(10, 25, 47, 0.8);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Gallery Section */
.gallery-filters {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-filters button {
    background: none;
    border: none;
    padding: 5px 15px;
    font-size: 1rem;
    cursor: pointer;
    color: var(--color-text-light);
    transition: 0.3s;
    font-family: var(--font-body);
}

.gallery-filters button.active,
.gallery-filters button:hover {
    color: var(--color-primary);
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    aspect-ratio: 2 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    border: 1px solid #fff;
    padding: 8px 20px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Process Section */
.steps-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    background-color: var(--color-light-gray);
    width: 250px;
    text-align: center;
    padding: 0 10px;
}

.step-num {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 auto 20px;
    border: 5px solid var(--color-light-gray);
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Location Section */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.location-info {
    padding: 40px;
}

.info-list li {
    display: flex;
    margin-bottom: 25px;
}

.info-list i {
    width: 40px;
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-top: 5px;
}

.info-list strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.full-width {
    width: 100%;
    text-align: center;
}

.location-map img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

/* Footer */
.footer {
    background-color: #3e2723;
    /* Very Dark Warm Brown */
    color: #efebe9;
    padding: 80px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem !important;
    margin-bottom: 5px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-nav a {
    margin-left: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.4);
    margin-left: 20px;
}

.footer-socials a:hover {
    color: #fff;
}


/* Pricing Section */
.pricing-section {
    background-color: var(--color-light-gray);
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    /* Softer radius */
    box-shadow: 0 10px 40px rgba(93, 64, 55, 0.05);
    /* Brownish shadow */
}

.pricing-group {
    margin-bottom: 80px;
    border-bottom: 1px dashed #e0dada;
    /* Warm grey border */
    padding-bottom: 60px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.pricing-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pricing-info {
    flex: 1;
}

.pricing-group-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-left: 0;
    border-left: none;
}

.pricing-group-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-accent);
}

.pricing-item {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}

.pricing-item:last-child {
    margin-bottom: 0;
}

.price-header {
    width: 200px;
    flex-shrink: 0;
}

.price-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.price-amount {
    font-size: 1.2rem;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 500;
}

.price-details {
    flex-grow: 1;
    border-left: 2px solid #e0dada;
    padding-left: 25px;
}

.price-details li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--color-text);
    /* Use warm text variable */
    position: relative;
    padding-left: 15px;
    line-height: 1.6;
}

.price-details li strong {
    color: var(--color-primary);
    font-weight: 600;
}

.price-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 1.2em;
    line-height: 1.2;
}

.pricing-image {
    width: 300px;
    /* Constrain width */
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Align with top */
}

.pricing-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    /* Constrain max height */
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.small-pricing-img {
    width: 200px;
}

@media (max-width: 900px) {
    .pricing-container {
        padding: 40px 20px;
    }

    .pricing-group {
        flex-direction: column-reverse;
        /* Text on top, image below on mobile? Or standard vertical stack. */
        gap: 40px;
    }

    .pricing-image {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        display: none;
        /* Often cleaner to hide decorative usage images on mobile if they take too much space, or keep small */
    }

    /* If user wants images on mobile, use this: */
    /*
    .pricing-image {
        display: flex;
        justify-content: center;
    }
    .pricing-image img {
        max-width: 250px;
    }
    */

    .pricing-item {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .price-header {
        width: 100%;
        margin-bottom: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 10px;
    }

    .price-amount {
        margin-bottom: 0;
    }

    .price-details {
        border-left: none;
        padding-left: 0;
    }

    .concept-grid,
    .ba-layout,
    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .steps-container::before {
        display: none;
    }

    .step-item {
        width: 100%;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* Guide Extra Buttons */
.guide-extras {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-guide {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #fff;
    color: var(--color-primary);
    border: 1px solid #e0dada;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.btn-guide i {
    font-size: 1.2rem;
    color: var(--color-secondary-accent);
}

.btn-guide:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(93, 64, 55, 0.1);
    border-color: var(--color-primary);
}

.btn-guide:hover i {
    color: var(--color-white);
}

/* Makeup Page Styles */
.hero-makeup {
    height: 60vh;
    min-height: 400px;
}

.makeup-intro {
    padding: 80px 0;
    text-align: center;
}

.makeup-intro p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.makeup-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .makeup-showcase {
        grid-template-columns: 1fr;
    }
}

.makeup-showcase img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

/* Service Page Image Styles (Revised for Zig-Zag Layout) */
.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-image {
    flex: 0 0 400px;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
}

.service-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--color-text);
}

.service-content p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.service-grid-img {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    max-width: 520px;
    /* Increased size by 1.3x */
    margin: 0 auto;
    /* Center the grid */
}

.service-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
        text-align: center;
    }

    .service-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-image.wide-image {
        max-width: 520px;
    }
}

/* Specific override for wider service image on desktop */
.service-image.wide-image {
    flex: 0 0 520px;
    max-width: 520px;
    background-color: var(--color-white);
    margin-top: 90px;
}

@media (max-width: 900px) {
    .service-image.wide-image {
        flex: 1;
        width: 100%;
    }
}

.makeup-showcase img:hover {
    transform: translateY(-5px);
}

.price-image-section {
    background-color: var(--color-light-gray);
    padding: 80px 0;
    text-align: center;
}

.price-img-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(93, 64, 55, 0.1);
}

@media (max-width: 768px) {
    .makeup-showcase {
        grid-template-columns: 1fr;
    }
}

/* Bottom Reserve Button with Glowing Effect */
.reserve-btn-container {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.btn-bottom-reserve {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: glowingEffect 3s infinite ease-in-out;
}

.btn-bottom-reserve:hover {
    transform: translateY(-3px);
    background-color: var(--color-primary-dark);
}

@keyframes glowingEffect {
    0% {
        box-shadow: 0 0 5px rgba(189, 147, 84, 0.2);
        /* Base shadow */
    }

    50% {
        box-shadow: 0 0 25px rgba(189, 147, 84, 0.6), 0 0 50px rgba(189, 147, 84, 0.3);
        /* Expanded glow */
    }

    100% {
        box-shadow: 0 0 5px rgba(189, 147, 84, 0.2);
        /* Contracted */
    }
}

/* Guide Page Cards */
.guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.guide-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(93, 64, 55, 0.15);
    border-color: var(--color-accent);
}

.guide-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.guide-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-card:hover .guide-card-img img {
    transform: scale(1.1);
}

.guide-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--color-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-size: 1.2rem;
    transition: 0.3s;
}

.guide-card:hover .card-icon-wrapper {
    background-color: var(--color-primary);
    color: #fff;
}

.guide-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: var(--color-text);
}

.guide-card-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-text {
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-text i {
    transition: transform 0.3s;
}

.guide-card:hover .btn-text i {
    transform: translateX(5px);
}

/* Wide crop for BA image */
.comparison-card.wide-crop {
    height: 350px;
}

.comparison-card.wide-crop img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Media Banner (Marquee) */
.media-banner {
    width: 100%;
    overflow: hidden;
    background-color: #fcfbf9;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.media-marquee {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scrollLeft 40s linear infinite;
    padding-left: 80px;
}

.media-marquee:hover {
    animation-play-state: paused;
}

.media-item {
    height: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.media-item:hover img {
    transform: scale(2.0);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

/* Preparation Guide Section */
.prep-section {
    padding-top: 0;
    padding-bottom: 80px;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.prep-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prep-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.prep-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-light-gray);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.prep-img-container {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 4px solid var(--color-light-gray);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.prep-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prep-card:hover .prep-img-container {
    border-color: var(--color-accent);
}

.prep-card:hover .prep-img-container img {
    transform: scale(1.1);
}

.prep-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 15px;
}

.prep-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.time-badge {
    background-color: var(--color-primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.tips-box {
    background-color: #fff;
    border-left: 5px solid var(--color-secondary-accent);
    padding: 30px 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.tips-box h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips-list {
    list-style: none;
}

.tips-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: var(--color-text);
}

.tips-list li::before {
    content: "•";
    color: var(--color-secondary-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tips-list strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Booking Section (Small Section with Image & Button) */
.booking-section {
    max-width: 400px;
    /* Small section constraint */
    margin: 60px auto 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.booking-image {
    width: 100%;
}

.booking-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 50%;
    height: 120px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto;
}

.reserve-btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Shared Text Emphasis */
.emphasis-dots {
    text-emphasis: dot;
    -webkit-text-emphasis: dot;
    text-emphasis-position: over right;
}

/* Shop Page Styling */
.shop-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.shop-container {
    max-width: 600px;
    margin: 50px auto 0;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.shop-form .form-group {
    margin-bottom: 25px;
}

.shop-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
}

.shop-form input[type="text"],
.shop-form input[type="tel"],
.shop-form select,
.shop-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.shop-form input:focus,
.shop-form select:focus,
.shop-form textarea:focus {
    border-color: var(--color-primary);
    outline: none;
}

.shop-form input[type="file"] {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px dashed #ccc;
    border-radius: 6px;
    background-color: #fafafa;
    cursor: pointer;
}

.shop-form .help-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 5px;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 30px;
}

.btn-submit:hover {
    background-color: var(--color-primary-dark);
}

.bank-info {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.bank-info h3 {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bank-details {
    background-color: var(--color-light-gray);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.account-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.account-holder {
    font-size: 1rem;
    color: var(--color-text);
}

.info-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Shop Hero Section */
.shop-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.shop-hero-content {
    position: relative;
    z-index: 1;
}

.shop-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.shop-hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* Services Hub Section */
.services-hub-section {
    padding: 80px 0;
    background-color: #fff;
}

.shop-form-section {
    padding: 80px 0;
}

/* Ensure smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile responsive for hero */
@media (max-width: 768px) {
    .shop-hero {
        height: 50vh;
    }

    .shop-hero h1 {
        font-size: 2rem;
    }

    .shop-hero p {
        font-size: 1rem;
    }
}

/* Quality Assurance Section */
.quality-section {
    padding: 80px 0;
    background-color: #fff;
}

.quality-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.quality-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quality-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quality-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.quality-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-light-gray);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.quality-text h3 {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.quality-text p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .quality-grid {
        flex-direction: column;
    }

    .quality-image {
        width: 100%;
        max-height: 300px;
    }
}

/* Reverse layout for Quality Grid */
.quality-grid.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 900px) {
    .quality-grid.reverse {
        flex-direction: column;
    }
}

/* Language Switcher Styles */
.btn-lang {
    margin-right: 15px;
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-lang:hover {
    background-color: var(--color-light-gray);
    border-color: var(--color-secondary-accent);
}

.mobile-lang-btn {
    display: none;
    /* Hidden on desktop */
}

.desktop-lang-btn {
    display: flex;
}

@media (max-width: 1024px) {
    .mobile-lang-btn {
        display: flex;
        margin-right: 15px;
        /* Spacing from toggle */
        border: 1px solid #ddd !important;
        /* Restore border */
        border-radius: 20px;
        padding: 5px 12px;
    }

    .mobile-lang-btn span {
        display: inline !important;

        font-size: 0.9rem;
        /* Adjust font size if needed */
        margin-left: 5px;
        font-weight: 500;
    }

    .mobile-lang-btn i {
        font-size: 1.1rem;
        /* Adjust icon size */
    }

    .desktop-lang-btn {
        display: none !important;
    }

    .btn-reserve {
        display: block !important;
        /* Show in menu */
    }
}

.btn-lang i {
    color: var(--color-primary);
}

/* Modal Styles */
.lang-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.lang-modal-content {
    background-color: #fdfbf7;
    /* Warm white */
    margin: auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-modal-header h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    /* Brown */
    margin-bottom: 30px;
    font-size: 2rem;
}

.lang-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.lang-option {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px 10px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Noto Sans KR', sans-serif;
}

.lang-option:hover {
    background-color: #fff8f0;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.lang-option.active {
    background-color: #c59d5f;
    /* Gold/Primary color */
    color: #fff;
    border-color: #c59d5f;
    box-shadow: 0 4px 10px rgba(197, 157, 95, 0.3);
}

/* Specific Highlight for Korean - Removed to allow dynamic active state */
/* .lang-option[data-lang="ko"] { ... } */

.lang-modal-close-btn {
    background-color: #a1887f;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.lang-modal-close-btn:hover {
    background-color: #8d6e63;
}

/* Hide Google Translate Banner completely */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Hide the google translate element div */
#google_translate_element {
    visibility: hidden !important;
    position: absolute;
    top: -9999px;
    left: -9999px;
}

/* Responsive Navigation Styles */
.nav-extras {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    /* Mobile Menu Drawer */
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        padding-top: 60px;
        /* Space for top buttons */
        z-index: 1500;
        /* Behind toggle but above content */

        /* Hidden State */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition: all 0.3s ease-in-out;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--color-primary);
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }

    .nav-links.active a {
        transform: translateY(0);
    }

    /* Extras (Language & Reserve) in Mobile */
    /* Extras (Language & Reserve) in Mobile */
    .nav-extras {
        display: flex;
        position: fixed;
        /* Move from bottom to top */
        top: 120px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        width: 100%;
        justify-content: center;
        gap: 15px;
        z-index: 1500;

        /* Hidden State */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease 0.1s;
        /* Slight delay */
    }

    .nav-extras.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    /* Nav Container Adjustment */
    .nav-container {
        padding: 0 10px;
    }

    /* Hero Responsive */
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
        padding: 0 20px;
    }

    /* Footer Responsive */
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-nav {
        margin-top: 20px;
    }

    .footer-nav a {
        margin: 0 10px;
        display: inline-block;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    /* Ensure other grids stack */
    .pricing-group,
    .pricing-item,
    .steps-container,
    .service-row,
    .service-row.reverse {
        flex-direction: column;
    }

    .pricing-image {
        display: none;
    }
}
/* Bright retouching section and soft editorial body typography */
@font-face {
    font-family: 'Pretendard';
    src: url('../assets/fonts/PretendardVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
:root {
    --font-body: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', 'Pretendard', 'Noto Sans KR', sans-serif;
}
body {
    font-family: var(--font-body);
    line-height: 1.75;
    letter-spacing: -0.015em;
    -webkit-font-smoothing: antialiased;
}
button, input, select, textarea, .lang-option { font-family: var(--font-body); }
.service-content p, .concept-text p, .lighting-story-desc, .section-subtitle {
    line-height: 1.85;
    font-weight: 400;
}
.ba-section.dark-bg {
    background: linear-gradient(115deg, #fffaf3 0%, #fff2ef 55%, #f8e9ee 100%);
    color: #57414a;
    border-top: 1px solid #f4e5e7;
    border-bottom: 1px solid #f4e5e7;
}
.ba-section .section-title.text-white {
    color: #664453;
    font-size: clamp(2.25rem, 3.4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: -0.025em;
}
.ba-section .text-white-50 {
    color: #725660;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.9;
}
.ba-section .tech-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.ba-section .tech-tags span {
    margin: 0;
    padding: 7px 16px;
    color: #755463;
    background: #ffffffd9;
    border: 1px solid #e8cfd7;
    border-radius: 999px;
    font-weight: 500;
    box-shadow: 0 3px 10px #a7758708;
}
.ba-section .comparison-card {
    border-radius: 22px;
    box-shadow: 0 16px 38px #98677c1c;
    border: 1px solid #ffffffb3;
}
.ba-section .overlay-label {
    background: #fff8f2f2;
    color: #654753;
    font-family: var(--font-body);
    font-weight: 500;
    border: 1px solid #ffffffb3;
    padding: 7px 15px;
    border-radius: 999px;
}
@media(max-width: 600px) {
    .ba-section .tech-tags { gap: 8px; }
    .ba-section .tech-tags span { padding: 6px 12px; font-size: .8125rem; }
    .ba-section .comparison-card { border-radius: 16px; }
}

/* Closing reservation invitation */
.final-booking { padding: 72px 0 80px; background: #fffaf7; }
.final-booking-card { text-align: center; padding: 64px 28px; border: 1px solid #eedcde; border-radius: 28px; background: linear-gradient(130deg, #fffdfa, #fceef1); box-shadow: 0 12px 40px #9966780a; }
.final-booking-eyebrow { font-size: .75rem; letter-spacing: .18em; font-weight: 600; color: #916174; margin-bottom: 18px; }
.final-booking h2 { font-family: var(--font-body); font-size: clamp(1.8rem, 3.3vw, 2.75rem); line-height: 1.4; font-weight: 600; letter-spacing: -.035em; color: #5d3e4c; margin: 0 auto 20px; max-width: 820px; text-wrap: balance; overflow-wrap: anywhere; }
.final-booking-lead { font-size: 1.125rem; color: #694b58; margin-bottom: 8px; }
.final-booking-description { font-size: 1rem; line-height: 1.85; color: #765e66; max-width: 640px; margin: 0 auto; }
.final-booking-button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; max-width: 100%; min-height: 60px; margin-top: 30px; padding: 16px 38px; border-radius: 999px; background: #765064; color: #fff; font-size: 1.0625rem; font-weight: 600; box-shadow: 0 8px 24px #76506420; transition: background .2s, transform .2s; }
.final-booking-button:hover { background: #604051; color: #fff; transform: translateY(-2px); }
.final-booking-button:focus-visible { outline: 3px solid #765064; outline-offset: 5px; }
.final-booking-note { font-size: .8125rem; color: #806770; margin-top: 14px; }
@media(max-width:600px) { .final-booking { padding: 40px 0 48px; } .final-booking-card { padding: 42px 20px; border-radius: 20px; } .final-booking-button { width: 100%; padding: 15px 18px; gap: 12px; } .final-booking-lead { font-size: 1rem; } }
@media(prefers-reduced-motion:reduce) { .final-booking-button { transition: none; } .final-booking-button:hover { transform: none; } }
