/*
Theme Name: Renera
Theme URI: https://renerakorea.com
Description: Custom theme for Renera Korea Skincare Concierge
Version: 2.0
Author: Renera
Author URI: https://renerakorea.com
License: Proprietary
Text Domain: renera
*/

/* ─── Custom Font ─── */
@font-face {
    font-family: 'Interstate Condensed';
    src: url('assets/Interstate_Condensed_Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ─── Design Tokens ─── */
:root {
    --ivory: #FDFBF7;
    --champagne: #F4EBE1;
    --navy: #1B2B3A;
    --deep-navy: #0F1923;
    --gold: #C9A961;
    --gold-light: #D4B87A;
    --warm-grey: #8B8680;
    --shadow: rgba(27, 43, 58, 0.12);
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background-color: var(--ivory);
    color: var(--navy);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    color: var(--navy);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ─── Navigation ─── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1.2rem 5%;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
    background: rgba(253, 251, 247, 1);
    border-bottom: 1px solid rgba(201, 169, 97, 0.4);
    box-shadow: 0 2px 20px rgba(27, 43, 58, 0.04);
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-container:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 38px;
    height: auto;
    display: flex;
    align-items: center;
}

.logo-icon svg {
    width: 100%;
    height: auto;
    fill: var(--gold);
    display: block;
}

.logo-text {
    font-family: 'Interstate Condensed', sans-serif;
    font-size: 1.65rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--warm-grey);
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.nav-links {
    display: none;
    gap: 3rem;
    list-style: none;
}

@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }
}

.nav-links a {
    font-family: 'DM Sans', -apple-system, sans-serif;
    text-decoration: none;
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ─── Language Selector ─── */
.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: transparent;
    padding: 0.4rem;
    border: 1px solid rgba(201, 169, 97, 0.4);
}

.language-selector button {
    font-family: 'DM Sans', sans-serif;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.4rem 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.language-selector button:hover {
    background: rgba(201, 169, 97, 0.15);
}

.language-selector button.active {
    background: var(--gold);
    color: var(--ivory);
}

/* ─── Mobile Menu Button ─── */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
}

/* ─── Footer ─── */
footer {
    background: var(--champagne);
    color: var(--navy);
    padding: 5rem 5% 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-icon {
    width: 34px;
    height: auto;
    display: flex;
    align-items: center;
}

.footer-logo-icon svg {
    width: 100%;
    height: auto;
    fill: var(--gold);
    display: block;
}

.footer-logo-text {
    font-family: 'Interstate Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--navy);
    text-transform: uppercase;
}

.footer-about p {
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 0.9rem;
    line-height: 1.75;
    opacity: 0.8;
}

.footer-links h4 {
    font-family: 'Interstate Condensed', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    font-family: 'DM Sans', -apple-system, sans-serif;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ─── Contact Modal ─── */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 43, 58, 0.5);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--ivory);
    border-radius: 16px;
    padding: 3rem;
    max-width: 580px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 32px 64px rgba(27, 43, 58, 0.2);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--warm-grey);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--navy);
}

.modal-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.modal-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--warm-grey);
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    text-decoration: none;
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid var(--champagne);
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-method:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 97, 0.05);
}

.contact-method .icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-method .label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    display: block;
}

.contact-method .detail {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--warm-grey);
    display: block;
    margin-top: 0.3rem;
}

/* ─── Floating Contact Button ─── */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(201, 169, 97, 0.4);
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.floating-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.5);
}

.floating-contact .btn-icon {
    font-size: 1.1rem;
}

/* ─── WeChat QR Modal ─── */
.wechat-qr-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 43, 58, 0.5);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.wechat-qr-modal.active {
    display: flex;
}

.wechat-qr-content {
    background: var(--ivory);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    max-width: 360px;
    width: 90%;
    position: relative;
}

/* ─── Body Scroll Lock ─── */
body.panel-open {
    overflow: hidden;
}

/* ─── Contact Form ─── */
.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: var(--ivory);
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: var(--ivory);
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    outline: none;
    transition: border-color 0.3s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A961' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select:focus {
    border-color: var(--gold);
}

/* Form Validation */
.form-group-error input,
.form-group-error textarea,
.form-group-error .custom-select-trigger,
.form-group-error .interest-selector {
    border-color: #B76E79 !important;
    outline: 1px solid #B76E79;
}

.form-error {
    display: block;
    font-size: 0.78rem;
    color: #B76E79;
    margin-top: 0.4rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

@keyframes formShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.form-group-shake {
    animation: formShake 0.5s ease;
}

/* Custom Dropdown */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: var(--ivory);
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    cursor: pointer;
    transition: border-color 0.3s ease;
    user-select: none;
}

.custom-select-trigger.placeholder span {
    opacity: 0.45;
}

.custom-select-trigger:hover {
    border-color: var(--gold);
}

.custom-select.open .custom-select-trigger {
    border-color: var(--gold);
}

.custom-select-trigger svg {
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.custom-select.open .custom-select-trigger svg {
    transform: rotate(180deg);
}

.custom-select-options {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    background: var(--ivory);
    border: 1px solid var(--gold);
    border-top: none;
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
}

.custom-select.open .custom-select-options {
    display: block;
}

.custom-select-option {
    padding: 0.7rem 1rem;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 0.88rem;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-select-option:hover {
    background: rgba(201, 169, 97, 0.1);
    color: var(--gold);
}

.custom-select-option.active {
    background: rgba(201, 169, 97, 0.08);
    font-weight: 500;
}

.contact-method-selector,
.interest-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.method-btn,
.interest-btn,
.budget-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: transparent;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.method-btn:hover,
.interest-btn:hover,
.budget-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.method-btn.active,
.interest-btn.active,
.budget-btn.active {
    background: var(--navy);
    color: var(--ivory);
    border-color: var(--navy);
}

/* ─── CTA Button (global) ─── */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--ivory);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--gold-light);
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
    .nav-links {
        gap: 2rem;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--ivory);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 1000;
        padding: 80px 0 80px;
        margin: 0;
    }

    .nav-links li {
        list-style: none;
        text-align: center;
    }

    .nav-links.mobile-open {
        display: flex !important;
    }

    .nav-links.mobile-open a {
        font-size: 1.2rem;
        color: var(--navy) !important;
        padding: 16px 0;
        display: block;
    }

    .nav-links.mobile-open a::after {
        display: none;
    }

    /* Give nav a solid background when mobile menu is open */
    nav.mobile-menu-active {
        background: var(--ivory) !important;
        backdrop-filter: none !important;
    }

    .language-selector {
        display: none;
    }

    /* Show language selector inside mobile menu when open */
    nav.mobile-menu-active .language-selector {
        display: flex;
        position: fixed;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1002;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    nav.mobile-menu-active .container {
        position: relative;
        z-index: 1002;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ─── Chinese Language Overrides ─── */
body.lang-zh {
    font-family: 'DM Sans', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Hiragino Sans GB', sans-serif;
}

body.lang-zh h1,
body.lang-zh h2,
body.lang-zh h3 {
    font-family: 'Cormorant Garamond', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
}

body.lang-zh .nav-links a,
body.lang-zh .footer-links a,
body.lang-zh .footer-links h4 {
    text-transform: none;
    letter-spacing: 0.02em;
}

body.lang-zh .logo-text {
    letter-spacing: 0.35em;
}

body.lang-zh .footer-about p {
    font-size: 0.88rem;
    line-height: 1.8;
}

body.lang-zh .footer-links h4 {
    font-size: 0.85rem;
}

body.lang-zh .footer-links a {
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════
   FRONT PAGE STYLES (merged from style-main.css)
   ═══════════════════════════════════════════════════ */

/* ─── Front Page Overrides ─── */

/* Front page uses Montserrat for body text */
body.home { font-family: 'Montserrat', sans-serif; }

/* Nav transparent state (over hero image) */
body.home nav:not(.scrolled) .logo-text,
body.home nav:not(.scrolled) .nav-links a,
body.home nav:not(.scrolled) .lang-btn {
    color: var(--ivory);
}

body.home nav:not(.scrolled) .lang-btn.active {
    color: var(--gold-light);
}

body.home nav:not(.scrolled) .language-selector {
    border-color: rgba(253, 251, 247, 0.3);
}

body.home nav:not(.scrolled) .mobile-menu-btn span {
    background: var(--ivory);
}

/* When mobile menu is open on homepage (before scroll), reset to dark colors */
body.home nav.mobile-menu-active:not(.scrolled) .logo-text,
body.home nav.mobile-menu-active:not(.scrolled) .nav-links a,
body.home nav.mobile-menu-active:not(.scrolled) .lang-btn {
    color: var(--navy);
}
body.home nav.mobile-menu-active:not(.scrolled) .lang-btn.active {
    color: var(--ivory);
}
body.home nav.mobile-menu-active:not(.scrolled) .language-selector {
    border-color: rgba(201, 169, 97, 0.4);
}
body.home nav.mobile-menu-active:not(.scrolled) .mobile-menu-btn span {
    background: var(--navy);
}

/* Interstate Condensed Font */
@font-face {
    font-family: 'Interstate Condensed';
    src: url('Interstate_Condensed_Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* :root variables — defined in style.css */

/* * reset — defined in style.css */

/* Navigation handled by style.css */

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(15, 25, 35, 0.35) 0%,
        rgba(15, 25, 35, 0.2) 40%,
        rgba(15, 25, 35, 0.45) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-logo-mark {
    width: 90px;
    height: auto;
    animation: heroFadeUp 1.2s ease-out 0.3s both;
}

.hero-logo-mark svg {
    width: 100%;
    height: auto;
    fill: rgba(253, 251, 247, 0.9);
}

.hero-cta {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: transparent;
    color: var(--ivory);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(253, 251, 247, 0.5);
    cursor: pointer;
    transition: all 0.5s ease;
    animation: heroFadeUp 1.2s ease-out 0.6s both;
}

.hero-cta:hover {
    background: rgba(253, 251, 247, 0.12);
    border-color: rgba(253, 251, 247, 0.8);
    letter-spacing: 0.24em;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: heroFadeUp 1.2s ease-out 1s both;
}

.hero-scroll-indicator span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(253, 251, 247, 0.6), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Intro Section */
.intro {
    padding: 8rem 5%;
    text-align: center;
    background: var(--ivory);
    position: relative;
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.intro-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}

.intro-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.35;
    color: var(--navy);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.intro-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
    text-transform: none;
}

.intro-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--navy);
    opacity: 0.8;
    margin-bottom: 2.5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.certification-badge {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--warm-grey);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.certification-icon {
    color: var(--gold);
    font-size: 0.7rem;
}

.footer-certification {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--warm-grey);
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-certification .certification-icon {
    color: var(--gold);
    font-size: 0.65rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: var(--navy);
    color: var(--ivory);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px var(--shadow);
    color: var(--navy);
}

/* Philosophy Section */
.philosophy {
    padding: 0;
    background: var(--champagne);
    position: relative;
}

.founder-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 80vh;
    position: relative;
}

.founder-image-wrapper {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.founder-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.founder-image img,
.founder-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5% 6rem 4rem;
    max-width: 650px;
}

.founder-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.founder-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--navy);
}

.founder-text p {
    margin-bottom: 1.5rem;
}

.founder-text p:last-child {
    margin-bottom: 0;
}

.founder-quote cite {
    font-style: normal;
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--gold);
}

/* Values Section */
.values {
    padding: 8rem 5%;
    background: var(--ivory);
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: var(--gold);
    transform: scale(1.08);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.value-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--navy);
}

/* Services Section */

.services {
    padding: 8rem 5%;
    background: var(--champagne);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--navy);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: var(--ivory);
    border: 1px solid rgba(201, 169, 97, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 320px 1fr;
}

.service-card-img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-img::after {
    display: none;
}

.service-card-content {
    padding: 1.8rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: 2;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow), 0 0 0 1px rgba(201, 169, 97, 0.3);
    border-color: var(--gold);
}

.service-icon {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    display: none;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--navy);
    opacity: 0.85;
    flex: 1;
}

.service-card-clickable {
    cursor: pointer;
}

.service-learn-more {
    display: inline-block;
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #A8893D;
    opacity: 0.7;
    transition: opacity 0.35s ease, letter-spacing 0.35s ease, color 0.35s ease;
}

.service-card-clickable:hover .service-learn-more {
    opacity: 1;
    letter-spacing: 0.12em;
}

/* Journey Section */
.journey {
    padding: 8rem 5%;
    background: var(--ivory);
    position: relative;
}


.journey-container {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.35;
}

.step:last-child::after {
    display: none;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background: var(--gold);
    color: var(--ivory);
    transform: scale(1.08);
}

.step h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--navy);
    line-height: 1.65;
}

/* Why Korea Section */
.why-korea {
    padding: 8rem 5%;
    background: var(--deep-navy);
    color: var(--ivory);
}

.why-korea-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-korea h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--gold);
}

.why-korea p {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    border-left: 2px solid var(--rose-gold);
    padding-left: 1.5rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.why-image {
    height: 500px;
    position: relative;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* CTA Section */
.final-cta {
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
    background: var(--navy);
    text-align: center;
}

.final-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1rem;
    color: var(--ivory);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    opacity: 0.8;
}

.final-cta .cta-button {
    background: var(--gold);
    color: var(--navy);
    border: 1px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.final-cta .cta-button::before {
    background: var(--ivory);
}

.final-cta .cta-button:hover {
    color: var(--navy);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Footer — defined in style.css above */

/* Contact Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 43, 58, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.modal-content {
    background: var(--ivory);
    padding: 3rem;
    border-radius: 0;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--gold);
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--navy);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--gold);
}

.modal-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.modal-content p {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.2rem 1.2rem;
    background: var(--champagne);
    border: 1px solid rgba(201, 169, 97, 0.3);
    text-decoration: none;
    color: var(--navy);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
    z-index: 0;
}

.contact-method:hover::before {
    height: 100%;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.contact-method:hover .contact-icon,
.contact-method:hover .contact-name,
.contact-method:hover .contact-label {
    color: var(--navy);
    position: relative;
    z-index: 1;
}

.contact-icon {
    margin-bottom: 1rem;
    transition: color 0.4s ease;
    color: var(--navy);
}

.contact-icon svg {
    display: block;
}

.contact-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.contact-label {
    font-size: 0.85rem;
    opacity: 0.8;
    transition: color 0.4s ease;
    word-break: break-all;
    text-align: center;
}

.contact-label-long {
    font-size: 0.72rem;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    animation: fadeInUp 0.8s ease-out 1s both;
}

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

.floating-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.floating-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.55);
    background: var(--navy);
    color: var(--gold);
}

.floating-contact-icon {
    font-size: 1.3rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .floating-contact-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .floating-contact-text {
        display: none;
    }

    .floating-contact-btn {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .floating-contact-icon {
        font-size: 1.5rem;
    }
}

/* ===== Slide-In Panel Overlays ===== */
.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 25, 35, 0.6);
    backdrop-filter: blur(4px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.slide-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 52%;
    max-width: 780px;
    height: 100%;
    background: var(--ivory);
    z-index: 3001;
    transform: translateX(100%);
    overflow-y: auto;
    display: none;
}

.slide-panel.active {
    display: block;
    transform: translateX(0);
    box-shadow: -20px 0 80px rgba(0, 0, 0, 0.25);
    animation: panelSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes panelSlideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.panel-close {
    position: fixed;
    top: 1.8rem;
    right: 2.2rem;
    z-index: 3002;
    background: var(--ivory);
    border: 1px solid rgba(201, 169, 97, 0.4);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--navy);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.panel-close.active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s;
}

.panel-close:hover {
    background: var(--gold);
    color: var(--ivory);
    border-color: var(--gold);
    transform: rotate(90deg);
}

.panel-header {
    padding: 4.5rem 3.5rem 2.5rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
}

.panel-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 3.5rem;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.panel-header .panel-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: block;
}

.panel-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.panel-header p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--navy);
    opacity: 0.8;
    max-width: 580px;
}

.panel-body {
    padding: 3rem 3.5rem 4rem;
}

.panel-section {
    margin-bottom: 3rem;
}

.panel-section:last-child {
    margin-bottom: 0;
}

.panel-section h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.panel-section p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--navy);
    margin-bottom: 1rem;
}

.panel-section p:last-child {
    margin-bottom: 0;
}

/* Panel feature items */
.panel-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.panel-feature {
    padding: 1.2rem 1.6rem;
    background: rgba(244, 235, 225, 0.5);
    border: 1px solid rgba(201, 169, 97, 0.25);
    transition: all 0.3s ease;
}

.panel-feature:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

.panel-feature-icon {
    font-size: 0.65rem;
    color: var(--gold);
    margin-right: 0.4rem;
    vertical-align: middle;
}

.panel-feature h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.panel-feature p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--navy);
    opacity: 0.85;
}

/* Panel list */
.panel-list {
    list-style: none;
    padding: 0;
}

.panel-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--navy);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.panel-list li:last-child {
    border-bottom: none;
}

.panel-list-icon {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Panel highlight box */
.panel-highlight {
    background: linear-gradient(135deg, var(--champagne) 0%, rgba(201, 169, 97, 0.08) 100%);
    padding: 2rem;
    border-left: 3px solid var(--gold);
    margin: 2rem 0;
}

.panel-highlight p {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--navy);
}

/* Panel CTA */
.panel-cta {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    text-align: center;
}

.panel-cta p {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.panel-cta .cta-button {
    animation: none;
}

/* Panel testimonial */
.panel-testimonial {
    background: var(--deep-navy);
    color: var(--ivory);
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
}

.panel-testimonial::before {
    content: '"';
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.panel-testimonial p {
    font-size: 1rem;
    line-height: 1.85;
    font-style: italic;
    color: var(--ivory);
    opacity: 0.95;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
}

.panel-testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gold);
    padding-left: 1rem;
}

/* Package cards */
.panel-packages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.panel-package {
    padding: 2rem;
    background: var(--ivory);
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.panel-package:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px var(--shadow);
}

.panel-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
}

.panel-package h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.panel-package .package-duration {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.8rem;
    display: block;
}

.panel-package p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--navy);
    opacity: 0.85;
}

/* Partner grid */
.panel-partners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.panel-partner {
    padding: 1.8rem;
    background: var(--champagne);
    border: 1px solid rgba(201, 169, 97, 0.12);
    text-align: center;
    transition: all 0.3s ease;
}

.panel-partner:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

.panel-partner-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.panel-partner h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.panel-partner p {
    font-size: 0.82rem;
    color: var(--navy);
    opacity: 0.7;
    line-height: 1.6;
}

/* Timeline for stories */
.panel-stories {
    margin-top: 1.5rem;
}

.panel-story {
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: var(--champagne);
    border: 1px solid rgba(201, 169, 97, 0.12);
    position: relative;
}

.panel-story .story-tag {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.6rem;
    display: block;
}

.panel-story h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.panel-story p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--navy);
    opacity: 0.85;
}

/* Insights / Blog cards */
.panel-insights {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.5rem;
}

.panel-insight {
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.panel-insight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.panel-insight-header:hover {
    color: var(--gold);
}

.panel-insight-header h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    color: var(--navy);
    flex: 1;
    padding-right: 1rem;
    transition: color 0.3s ease;
}

.panel-insight-header:hover h4 {
    color: var(--gold);
}

.panel-insight-toggle {
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.panel-insight.open .panel-insight-toggle {
    transform: rotate(45deg);
}

.panel-insight-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0;
}

.panel-insight.open .panel-insight-body {
    max-height: 600px;
    padding: 0 0 1.5rem 0;
}

.panel-insight-body p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--navy);
    opacity: 0.85;
    margin-bottom: 0.8rem;
}

.panel-insight-body p:last-child {
    margin-bottom: 0;
}

.panel-insight-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

/* Accommodation cards */
.panel-accommodations {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.panel-accommodation {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--champagne);
    border: 1px solid rgba(201, 169, 97, 0.12);
    align-items: center;
    transition: all 0.3s ease;
}

.panel-accommodation:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 20px var(--shadow);
}

.panel-accommodation-img {
    width: 100px;
    height: 80px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.panel-accommodation h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.panel-accommodation p {
    font-size: 0.82rem;
    color: var(--navy);
    opacity: 0.75;
    line-height: 1.6;
}

.panel-accommodation .acc-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-top: 0.4rem;
}

/* Body scroll lock when panel is open */
body.panel-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
    .slide-panel {
        width: 75%;
    }

    .panel-features,
    .panel-partners {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .slide-panel {
        width: 100%;
        max-width: none;
    }

    .panel-header {
        padding: 3.5rem 2rem 2rem;
    }

    .panel-header::after {
        left: 2rem;
    }

    .panel-header h2 {
        font-size: 2.2rem;
    }

    .panel-body {
        padding: 2rem 2rem 3rem;
    }

    .panel-close {
        right: 1.2rem;
        top: 1.2rem;
    }

    .panel-accommodation {
        grid-template-columns: 1fr;
    }

    .panel-accommodation-img {
        width: 100%;
        height: 60px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .intro-content h1 {
        font-size: 2rem;
    }

    .hero-logo-mark {
        width: 75px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card-img {
        min-height: 200px;
    }

    .journey-steps {
        grid-template-columns: 1fr;
    }

    .step::after {
        display: none;
    }

    .why-korea-container {
        grid-template-columns: 1fr;
    }

    .founder-container {
        grid-template-columns: 1fr;
    }

    .founder-image-wrapper {
        min-height: 400px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .founder-text-side {
        padding: 4rem 5%;
    }

    .final-cta h2 {
        font-size: 2.2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .intro-content h1 {
        font-size: 1.6rem;
    }

    .hero-logo-mark {
        width: 65px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .intro {
        padding: 5rem 5%;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .philosophy-container h2 {
        font-size: 2.5rem;
    }

    .founder-content h2 {
        font-size: 2.5rem;
    }

    .modal-content {
        padding: 2rem;
        max-height: 85vh;
    }

    .modal-content h3 {
        font-size: 2rem;
    }

    .modal.active {
        align-items: flex-start;
        padding: 1rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-method {
        flex-direction: row;
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }

    .contact-icon {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .contact-method-text {
        text-align: left;
    }

    .founder-image {
        height: 300px;
        max-width: 100%;
    }

    .founder-image-wrapper::before {
        display: none;
    }

    .founder-heading {
        font-size: 2.5rem;
    }

    .founder-title {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card-img {
        height: 200px;
        min-height: 200px;
    }
}

/* ─── Restored Front Page Styles (from original style.css) ─── */

/* Testimonial Carousel */
.testimonial-strip {
    padding: 4.5rem 5%;
    background: var(--navy);
    text-align: center;
}

.testimonial-strip-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    margin: 0;
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(201, 169, 97, 0.4);
}

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

.testimonial-strip p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ivory);
    margin-bottom: 1.2rem;
    font-style: normal;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
}

.testimonial-strip cite {
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gold);
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gold);
    transition: all 0.3s ease;
    z-index: 2;
}

.testimonial-arrow:hover {
    background: rgba(201, 169, 97, 0.15);
    border-color: var(--gold);
}

.testimonial-prev {
    left: -5px;
}

.testimonial-next {
    right: -5px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.8rem;
}

.testimonial-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Final CTA Certification */
.final-cta-certification {
    margin-top: 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(253, 251, 247, 0.5);
    text-transform: uppercase;
}

.final-cta-certification .certification-icon {
    color: var(--gold);
    margin-right: 0.3rem;
}

/* Why Korea Section */
.why-korea {
    padding: 8rem 5%;
    background: var(--deep-navy);
    color: var(--ivory);
}

.why-korea-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-korea h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--gold);
}

.why-korea p {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    border-left: 2px solid var(--rose-gold);
    padding-left: 1.5rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.why-image {
    height: 500px;
    position: relative;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* CTA Section */
.final-cta {
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
    background: var(--navy);
    text-align: center;
}

.final-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 2rem;
}

.final-cta .cta-button {
    background: var(--gold);
    color: var(--navy);
    border: 1px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.final-cta .cta-button::before {
    background: var(--ivory);
}

.final-cta .cta-button:hover {
    color: var(--navy);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Contact Form */
.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: var(--ivory);
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: var(--ivory);
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    outline: none;
    transition: border-color 0.3s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A961' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select:focus {
    border-color: var(--gold);
}

/* Form Validation Errors */
.form-group-error input,
.form-group-error textarea,
.form-group-error .custom-select-trigger,
.form-group-error .interest-selector {
    border-color: var(--rose-gold) !important;
    outline: 1px solid var(--rose-gold);
}

.form-error {
    display: block;
    font-size: 0.78rem;
    color: var(--rose-gold);
    margin-top: 0.4rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

@keyframes formShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.form-group-shake {
    animation: formShake 0.5s ease;
}

/* Custom Dropdown */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: var(--ivory);
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    cursor: pointer;
    transition: border-color 0.3s ease;
    user-select: none;
}

.custom-select-trigger.placeholder span {
    opacity: 0.45;
}

.custom-select-trigger:hover {
    border-color: var(--gold);
}

.custom-select.open .custom-select-trigger {
    border-color: var(--gold);
}

.custom-select-trigger svg {
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.custom-select.open .custom-select-trigger svg {
    transform: rotate(180deg);
}

.custom-select-options {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    background: var(--ivory);
    border: 1px solid var(--gold);
    border-top: none;
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
}

.custom-select.open .custom-select-options {
    display: block;
}

.custom-select-option {
    padding: 0.7rem 1rem;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 0.88rem;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-select-option:hover {
    background: rgba(201, 169, 97, 0.1);
    color: var(--gold);
}

.custom-select-option.active {
    background: rgba(201, 169, 97, 0.08);
    font-weight: 500;
}

.contact-method-selector,
.interest-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.method-btn,
.interest-btn,
.budget-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: transparent;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.method-btn:hover,
.interest-btn:hover,
.budget-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.method-btn.active,
.interest-btn.active,
.budget-btn.active {
    background: var(--navy);
    color: var(--ivory);
    border-color: var(--navy);
}

/* ===== Slide-In Panel Overlays ===== */
.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 25, 35, 0.6);
    backdrop-filter: blur(4px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.slide-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 52%;
    max-width: 780px;
    height: 100%;
    background: var(--ivory);
    z-index: 3001;
    transform: translateX(100%);
    overflow-y: auto;
    display: none;
}

.slide-panel.active {
    display: block;
    transform: translateX(0);
    box-shadow: -20px 0 80px rgba(0, 0, 0, 0.25);
    animation: panelSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes panelSlideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.panel-close {
    position: fixed;
    top: 1.8rem;
    right: 2.2rem;
    z-index: 3002;
    background: var(--ivory);
    border: 1px solid rgba(201, 169, 97, 0.4);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--navy);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.panel-close.active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s;
}

.panel-close:hover {
    background: var(--gold);
    color: var(--ivory);
    border-color: var(--gold);
    transform: rotate(90deg);
}

.panel-header {
    padding: 4.5rem 3.5rem 2.5rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
}

.panel-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 3.5rem;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.panel-header .panel-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: block;
}

.panel-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.panel-header p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--navy);
    opacity: 0.8;
    max-width: 580px;
}

.panel-body {
    padding: 3rem 3.5rem 4rem;
}

.panel-section {
    margin-bottom: 3rem;
}

.panel-section:last-child {
    margin-bottom: 0;
}

.panel-section h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.panel-section p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--navy);
    margin-bottom: 1rem;
}

.panel-section p:last-child {
    margin-bottom: 0;
}

/* Panel feature items */
.panel-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.panel-feature {
    padding: 1.2rem 1.6rem;
    background: rgba(244, 235, 225, 0.5);
    border: 1px solid rgba(201, 169, 97, 0.25);
    transition: all 0.3s ease;
}

.panel-feature:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

.panel-feature-icon {
    font-size: 0.65rem;
    color: var(--gold);
    margin-right: 0.4rem;
    vertical-align: middle;
}

.panel-feature h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.panel-feature p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--navy);
    opacity: 0.85;
}

/* Panel list */
.panel-list {
    list-style: none;
    padding: 0;
}

.panel-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--navy);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.panel-list li:last-child {
    border-bottom: none;
}

.panel-list-icon {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Panel highlight box */
.panel-highlight {
    background: linear-gradient(135deg, var(--champagne) 0%, rgba(201, 169, 97, 0.08) 100%);
    padding: 2rem;
    border-left: 3px solid var(--gold);
    margin: 2rem 0;
}

.panel-highlight p {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--navy);
}

/* Panel Transparency */
.panel-transparency {
    background: var(--ivory);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: 2rem 2.2rem;
    margin: 2.5rem 0 0;
}

.panel-transparency h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1rem;
}

.panel-transparency p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--navy);
    opacity: 0.85;
    margin-bottom: 1rem;
}

.panel-transparency p:last-child {
    margin-bottom: 0;
}

/* Panel CTA */
.panel-cta {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    text-align: center;
}

.panel-cta p {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.panel-cta .cta-button {
    animation: none;
}

/* Panel testimonial */
.panel-testimonial {
    background: var(--deep-navy);
    color: var(--ivory);
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
}

.panel-testimonial::before {
    content: '"';
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.panel-testimonial p {
    font-size: 1rem;
    line-height: 1.85;
    font-style: italic;
    color: var(--ivory);
    opacity: 0.95;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
}

.panel-testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gold);
    padding-left: 1rem;
}

/* Package cards */
.panel-packages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.panel-package {
    padding: 2rem;
    background: var(--ivory);
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.panel-package:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px var(--shadow);
}

.panel-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
}

.panel-package h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.panel-package .package-duration {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.8rem;
    display: block;
}

.panel-package p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--navy);
    opacity: 0.85;
}

/* Partner grid */
.panel-partners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.panel-partner {
    padding: 1.8rem;
    background: var(--champagne);
    border: 1px solid rgba(201, 169, 97, 0.12);
    text-align: center;
    transition: all 0.3s ease;
}

.panel-partner:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

.panel-partner-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.panel-partner h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.panel-partner p {
    font-size: 0.82rem;
    color: var(--navy);
    opacity: 0.7;
    line-height: 1.6;
}

/* Timeline for stories */
.panel-stories {
    margin-top: 1.5rem;
}

.panel-story {
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: var(--champagne);
    border: 1px solid rgba(201, 169, 97, 0.12);
    position: relative;
}

.panel-story .story-tag {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.6rem;
    display: block;
}

.panel-story h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.panel-story p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--navy);
    opacity: 0.85;
}

/* Insights / Blog cards */
.panel-insights {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.5rem;
}

.panel-insight {
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.panel-insight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.panel-insight-header:hover {
    color: var(--gold);
}

.panel-insight-header h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    color: var(--navy);
    flex: 1;
    padding-right: 1rem;
    transition: color 0.3s ease;
}

.panel-insight-header:hover h4 {
    color: var(--gold);
}

.panel-insight-toggle {
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.panel-insight.open .panel-insight-toggle {
    transform: rotate(45deg);
}

.panel-insight-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0;
}

.panel-insight.open .panel-insight-body {
    max-height: 600px;
    padding: 0 0 1.5rem 0;
}

.panel-insight-body p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--navy);
    opacity: 0.85;
    margin-bottom: 0.8rem;
}

.panel-insight-body p:last-child {
    margin-bottom: 0;
}

.panel-insight-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

/* Accommodation cards */
.panel-accommodations {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.panel-accommodation {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--champagne);
    border: 1px solid rgba(201, 169, 97, 0.12);
    align-items: center;
    transition: all 0.3s ease;
}

.panel-accommodation:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 20px var(--shadow);
}

.panel-accommodation-img {
    width: 100px;
    height: 80px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.panel-accommodation h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.panel-accommodation p {
    font-size: 0.82rem;
    color: var(--navy);
    opacity: 0.75;
    line-height: 1.6;
}

.panel-accommodation .acc-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-top: 0.4rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .slide-panel {
        width: 75%;
    }

    .panel-features,
    .panel-partners {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .slide-panel {
        width: 100%;
        max-width: none;
    }

    .panel-header {
        padding: 3.5rem 2rem 2rem;
    }

    .panel-header::after {
        left: 2rem;
    }

    .panel-header h2 {
        font-size: 2.2rem;
    }

    .panel-body {
        padding: 2rem 2rem 3rem;
    }

    .panel-close {
        right: 1.2rem;
        top: 1.2rem;
    }

    .panel-accommodation {
        grid-template-columns: 1fr;
    }

    .panel-accommodation-img {
        width: 100%;
        height: 60px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .intro-content h1 {
        font-size: 2rem;
    }

    .hero-logo-mark {
        width: 75px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card-img {
        min-height: 220px;
        height: 220px;
    }

    .journey-steps {
        grid-template-columns: 1fr;
    }

    .step::after {
        display: none;
    }

    .why-korea-container {
        grid-template-columns: 1fr;
    }

    .founder-container {
        grid-template-columns: 1fr;
    }

    .founder-image-wrapper {
        min-height: 400px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .founder-text-side {
        padding: 4rem 5%;
    }

    .final-cta h2 {
        font-size: 2.2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .intro-content h1 {
        font-size: 1.6rem;
    }

    .hero-logo-mark {
        width: 65px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .intro {
        padding: 5rem 5%;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .philosophy-container h2 {
        font-size: 2.5rem;
    }

    .founder-content h2 {
        font-size: 2.5rem;
    }

    /* nav-links mobile — handled by style.css */

    /* mobile-open — handled by style.css */

    /* mobile-menu-btn — handled by style.css */

    .mobile-menu-btn.active span {
        background: var(--navy) !important;
    }

    /* language-selector — handled by style.css */

    .testimonial-strip {
        padding: 3.5rem 5%;
    }

    .testimonial-strip-container {
        padding: 0 40px;
    }

    .testimonial-strip p {
        font-size: 1.1rem;
    }

    .testimonial-prev {
        left: -5px;
    }

    .testimonial-next {
        right: -5px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .modal-content {
        padding: 2rem;
        max-height: 85vh;
    }

    .modal-content h3 {
        font-size: 2rem;
    }

    .modal.active {
        align-items: flex-start;
        padding: 1rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-method {
        flex-direction: row;
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }

    .contact-icon {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .contact-method-text {
        text-align: left;
    }

    .founder-image {
        height: 300px;
        max-width: 100%;
    }

    .founder-image-wrapper::before {
        display: none;
    }

    .founder-heading {
        font-size: 2.5rem;
    }

    .founder-title {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card-img {
        height: 200px;
        min-height: 200px;
    }
}
