:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --primary-color: #2563eb;
    /* Royal Blue */
    --secondary-color: #1e3a8a;
    /* Darker Blue */
    --accent-color: #2563eb;
    /* Changed from Red to Blue */
    --gray-bg: #f8f9fa;
    --border-color: #e5e5e5;
    --font-kr: 'Noto Sans KR', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
    --header-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-kr);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.section-tag {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #000;
}

/* Navbar - Clean White */
.navbar {
    position: sticky;
    /* Sticky instead of Fixed generally better for this layout */
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-color);
    /* Blue Logo */
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logo pseudo-element removed to avoid duplication with image */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Hero Section (Home) */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    text-align: center;
    color: #fff;
    background: #000;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.hero-video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-jp-text {
    font-family: var(--font-jp);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-kr-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Team/Leadership Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Force 2 columns */
    gap: 40px;
    margin-top: 40px;
    max-width: 1200px;
    /* Wider to match big photos */
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    background: transparent;
    /* Remove white bg */
    border-radius: 0;
    /* Remove radius */
    overflow: visible;
    box-shadow: none;
    /* Remove shadow */
    text-align: left;
    /* Align Left */
    border: none;
    /* Remove border */
    transition: none;
}

.team-card:hover {
    transform: none;
}

.team-img {
    height: auto;
    /* Let image be natural height or fixed aspect ratio if needed */
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 0;
    /* Remove padding */
}

.team-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #000;
}

.team-role {
    color: #666;
    /* Simpler color */
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: block;
    text-transform: none;
    letter-spacing: 0;
}

.team-contact p {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 3px;
    display: block;
    /* Stack vertically */
    /* Remove center alignment flex */
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Business Section */
.business-section {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    margin-bottom: 60px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.business-card {
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.business-card:hover .card-image img {
    transform: scale(1.05);
}

.placeholder-img {
    width: 100%;
    height: 100%;
}

.color-1 {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.more-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Highlight Card for Logistics */
.highlight-card {
    border-top: 4px solid var(--accent-color);
}

/* Company Section */
.company-section {
    padding: 100px 0;
    background-color: var(--gray-bg);
}

.flex-r.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Prevent logo from shrinking too much, but also don't let it grow */
    margin-right: 20px;
    /* Add some space between logo and nav */
}

.logo img {
    height: 40px;
    /* Reduced from 50px to ensure better fit if layout is tight */
    width: auto;
    max-width: 150px;
    /* Prevent it from being too wide */
    object-fit: contain;
}

.image-group {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.image-group img {
    width: 100%;
    display: block;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 30px;
    letter-spacing: 1px;
}

.btn-black {
    background: #000;
    color: #fff;
}

.btn-black:hover {
    background: #333;
}

/* =========================================
   News Page Redesign (Newspaper Theme)
   ========================================= */

.news-newspaper-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .news-newspaper-grid {
        grid-template-columns: 1fr;
    }
}

.newspaper-header-line {
    border-top: 4px solid #000;
    border-bottom: 1px solid #000;
    padding: 10px 0;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Times New Roman', serif;
}

.vol-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.date-text {
    color: #666;
    font-style: italic;
}

/* Latest News List */
.newspaper-news-list {
    border-top: 2px solid #000;
}

.news-row {
    display: block;
    /* changed to block to allow description under */
    padding: 25px 0;
    border-bottom: 1px solid #ccc;
    transition: background 0.2s ease;
}

.news-row:hover {
    background: #fdfdfd;
}

.news-row-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
}

.news-date {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.news-headline {
    font-size: 1.15rem;
    font-weight: 700;
    flex: 1;
    line-height: 1.4;
}

.news-desc {
    margin-top: 10px;
    margin-left: 120px;
    /* aligns with title */
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .news-row-header {
        flex-direction: column;
        gap: 5px;
    }

    .news-desc {
        margin-left: 0;
    }
}

/* Success Story Sidebar */
.story-sidebar {
    background: #000;
    color: #fff;
    padding: 30px;
    position: relative;
}

.story-sidebar h3 {
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: 'Times New Roman', serif;
    font-size: 1.5rem;
}

.sidebar-card {
    margin-bottom: 30px;
}

.sidebar-card img {
    width: 100%;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.sidebar-card:hover img {
    filter: grayscale(0%);
}

.sidebar-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 900;
}

.sidebar-card p {
    color: #aaa;
    font-size: 0.9rem;
}

/* Case Section */
.case-section {
    padding: 100px 0;
    background: #111;
    color: #fff;
}

.case-section .section-title {
    color: #fff;
}

.case-section .section-desc {
    color: #888;
}

.case-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-item {
    background: #222;
    padding: 30px;
    border-radius: 10px;
}

.case-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.case-item p {
    color: #aaa;
    font-size: 0.9rem;
}

.btn-outline-white {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-white:hover {
    background: #fff;
    color: #000;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--accent-color);
    /* Toridori pink/red */
    text-align: center;
    color: #fff;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.btn-white-filled {
    background: #fff;
    color: var(--accent-color);
}

.btn-white-filled:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}


/* Recruit Section */
.recruit-section {
    padding: 100px 0;
    background: url('assets/images/uploaded_image_3_1766732782377.jpg') no-repeat center center/cover;
    position: relative;
    color: #fff;
    /* Assuming dark image */
}

.recruit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.recruit-content {
    position: relative;
    z-index: 2;
}

.recruit-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 900;
}

/* Footer */
footer {
    padding: 60px 0;
    background: #000;
    color: #fff;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    /* Added for alignment */
}

.privacy-link {
    display: block;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: #777;
}

.copyright {
    color: #555;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .flex-row {
        flex-direction: column;
    }

    .hero-kr-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Shared Styles for Subpages
   ========================================= */

/* Page Headers - Blue Gradient */
.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Add abstract wave shape if possible via CSS or SVG later, for now simple gradient matches reference feel */

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Buttons - Rounded Pills */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-blue {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-blue:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Active Nav State overrides */
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    background: var(--primary-color);
}

/* Pricing Page Specifics */
.cost-alert {
    background: #fff5f7;
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 0 10px 10px 0;
}

.alert-icon {
    font-size: 2.5rem;
}

.cost-alert h3 {
    margin-bottom: 5px;
    color: var(--accent-color);
    font-weight: 800;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 45, 85, 0.15);
    z-index: 2;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.pricing-card .subtitle {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 30px;
    display: block;
}

.price-box {
    margin-bottom: 40px;
}

.price-box .currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 700;
    margin-right: 5px;
}

.price-box .amount {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.features {
    text-align: left;
    margin-bottom: 40px;
    padding: 0 10px;
}

.features li {
    margin-bottom: 18px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.features i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.cost-note {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.cost-note h4 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.cost-note ul {
    padding-left: 20px;
    list-style: circle;
}

.cost-note li {
    margin-bottom: 8px;
}

/* Business Page Details */
.business-detail {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.business-detail.reverse {
    flex-direction: row-reverse;
}

.business-detail .text {
    flex: 1.5;
    /* Increased from 1 to give more space to text */
}

.business-detail .image {
    flex: 0.8;
    /* Reduced from 1 to make image smaller */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.business-detail .image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.business-detail:hover .image img {
    transform: scale(1.05);
}

.business-detail h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.check-list {
    margin-top: 30px;
    padding-left: 20px;
}

.check-list li {
    list-style: disc;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
}

/* Job List */
.job-list {
    display: grid;
    gap: 20px;
}

.job-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.job-item:hover {
    border-color: #000;
    transform: translateX(5px);
}

.job-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.job-tag {
    display: inline-block;
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
    margin-right: 5px;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.85rem;
}

/* Contact Form */
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #000;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

@media (max-width: 768px) {

    .business-detail,
    .business-detail.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* =========================================
   New Organized Styles (Cleanup)
   ========================================= */

/* Company Page & Modern Headers */
.company-header-modern {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.company-header-modern h1 {
    font-size: 3rem;
    font-weight: 900;
    margin: 10px 0;
    color: #1a1a1a;
}

.company-header-modern p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.mission-box {
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 80px;
    border: 1px solid #eee;
}

.mission-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(to right, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Value Crates */
.value-crates {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.crate-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.crate-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.crate-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.crate-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

/* Badge Cards (Leadership) */
.leadership-modern {
    background: #f0f2f5;
    padding: 100px 0;
}

.badge-card {
    background: #fff;
    width: 100%;
    max-width: 400px;
    /* Limit width */
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    position: relative;
    /* Passport style */
}

.badge-header {
    background: #1a1a1a;
    color: #ebd078;
    /* Goldish */
    padding: 10px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-bottom: 2px solid #ebd078;
}

.badge-body {
    padding: 30px;
    text-align: center;
}

.badge-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #eee;
    object-fit: cover;
    margin-bottom: 20px;
}

.badge-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.badge-role {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.badge-info p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

/* Outline Label */
.outline-label {
    max-width: 600px;
    margin: 40px auto;
    border: 4px solid #333;
    padding: 30px;
    position: relative;
    background: #fff;
}

.outline-row {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.outline-row:last-child {
    border-bottom: none;
}

.outline-head {
    width: 100px;
    font-weight: 800;
    color: #333;
}

.outline-content {
    flex: 1;
    color: #555;
    line-height: 1.5;
}

/* Buttons */
.btn-outline-black {
    border: 1px solid #000;
    color: #000;
    background: transparent;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-outline-black:hover {
    background: #000;
    color: #fff;
}

/* Recruit Header */
.recruit-header {
    position: relative;
    padding: 120px 0 80px;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.recruit-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.recruit-header-content {
    position: relative;
    z-index: 2;
}

/* Hero Text Helps */
.hero-title-main {
    font-size: 3.5rem;
    line-height: 1.3;
}

.hero-title-sub {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-highlight {
    background: rgba(0, 0, 0, 0.6);
    padding: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .value-crates {
        grid-template-columns: 1fr;
    }
}

/* Index Hero Specifics */
.hero-event-banner {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.hero-event-banner p {
    margin-bottom: 5px;
}

.hero-event-title {
    font-size: 1.1rem;
    color: #ffeb3b;
    font-weight: 700;
}

.hero-event-sub {
    font-size: 0.9rem;
    color: #eee;
}

.btn-hero-cta {
    background: #0044cc;
    border: 2px solid #fff;
    font-weight: 800;
    padding: 15px 40px;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s;
}

.btn-hero-cta:hover {
    background: #003399;
    color: #fff;
    transform: scale(1.05);
}

.jp-text-highlight {
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-sub-text {
    margin-top: 20px;
    font-size: 1.3rem;
}

.vision-map-container {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Business Page Cleanup */
.business-detail.reverse {
    margin-top: 150px;
}

.business-desc-custom {
    color: #444;
    margin-bottom: 20px;
}

.business-img-shadow {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-transparent-wrapper {
    background: transparent !important;
    box-shadow: none !important;
}

/* Utilities */
.btn-full-width {
    width: 100%;
}

/* KOL Page Items */
.fee-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.calc-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.calc-val {
    color: #333;
    font-weight: 700;
}

.calc-val.primary {
    color: var(--primary-color);
}

.calc-val.total {
    font-size: 1.5rem;
    color: #000;
}

.btn-kol-action {
    font-size: 1.2rem;
    padding: 15px 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-kol-action i {
    margin-right: 10px;
}

/* Vision Map Emphasis */
.vision-emphasis-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-emphasis-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.vision-title-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-top: 10px;
    letter-spacing: -0.5px;
}

.vision-map-back-glow {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
    /* Light blue glow */
    border: 1px solid rgba(37, 99, 235, 0.1);
}

/* =========================================
   NEWSPAPER DESIGN (News Page)
   ========================================= */
.newspaper-font {
    font-family: 'Times New Roman', Times, serif;
}

.newspaper-header {
    text-align: center;
    border-bottom: 3px double #000;
    padding-bottom: 20px;
    margin-bottom: 40px;
    font-family: 'Times New Roman', Times, serif;
}

.newspaper-header h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1;
}

.newspaper-header p {
    font-family: var(--font-kr);
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.newspaper-date-line {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.newspaper-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background-color: #fdfbf7;
    /* Paper color */
    padding: 40px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.news-paper-column h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.8rem;
    border-bottom: 4px solid #000;
    padding-bottom: 10px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-list-paper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-paper-item {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.news-paper-item:last-child {
    border-bottom: none;
}

.news-paper-item .date {
    display: block;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.news-paper-item .title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
    font-family: var(--font-kr);
}

.news-paper-item .title:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.paper-story-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.paper-story-card img {
    width: 100%;
    margin-bottom: 15px;
    filter: sepia(20%);
    /* Slight vintage feel */
    transition: filter 0.3s;
}

.paper-story-card:hover img {
    filter: sepia(0%);
}

.paper-story-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.paper-story-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.btn-paper {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #000;
    text-decoration: underline;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .newspaper-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .newspaper-header h1 {
        font-size: 2.5rem;
    }
}

/* =========================================
   RECRUIT PAGE ANIMATION
   ========================================= */
.hiring-active {
    position: relative;
    border-left: 5px solid #28a745;
}

.badge-hiring {
    background-color: #28a745;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
    text-transform: uppercase;
    animation: pulse-green 2s infinite;
}

.salary-text {
    font-size: 0.9rem;
    color: #555;
    margin-top: 5px;
    font-weight: 500;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Helper Utilities */
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}