/* ============================================
   YUHONGSEN TRADING LIMITED
   Main Stylesheet
   ============================================ */

/* --------------------------------------------
   1. FONT CONNECTION (OTF format)
   -------------------------------------------- */
@font-face {
    font-family: 'TT Berlinerins';
    src: url('TT Berlinerins Trial Grotesk.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Berlinerins';
    src: url('TT Berlinerins Trial Grotesk.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Berlinerins Script';
    src: url('TT Berlinerins Trial Script.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* --------------------------------------------
   2. CSS VARIABLES
   -------------------------------------------- */
:root {
    /* Colors */
    --color-bamboo: #4A7C59;
    --color-bamboo-dark: #3D6B4A;
    --color-bamboo-light: #5A8F6A;
    --color-earth: #B8956A;
    --color-earth-dark: #8B7355;
    --color-earth-light: #D4B896;
    --color-bg: #FFFFFF;
    --color-bg-warm: #F5F3F0;
    --color-bg-beige: #EBE5DE;
    --color-text: #2C2420;
    --color-text-light: #6B5D4F;
    --color-border: #E0E0E0;
    
    /* Typography */
    --font-main: 'TT Berlinerins', sans-serif;
    --font-script: 'TT Berlinerins Script', cursive;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 100px 0;
    --container-padding: 0 40px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* --------------------------------------------
   3. RESET & BASE
   -------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* --------------------------------------------
   4. CONTAINER
   -------------------------------------------- */
.yhs-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* --------------------------------------------
   5. TYPOGRAPHY
   -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: clamp(48px, 6vw, 80px);
}

h2 {
    font-size: clamp(36px, 4vw, 56px);
}

h3 {
    font-size: clamp(24px, 3vw, 36px);
}

h4 {
    font-size: clamp(20px, 2.5vw, 28px);
}

.text-script {
    font-family: var(--font-script);
    font-style: italic;
    font-weight: 400;
}

.text-accent {
    color: var(--color-bamboo);
}

/* --------------------------------------------
   6. BUTTONS
   -------------------------------------------- */
.yhs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.yhs-btn--primary {
    background-color: var(--color-bamboo);
    color: var(--color-bg);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.yhs-btn--primary:hover {
    background-color: var(--color-bamboo-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 124, 89, 0.4);
}

.yhs-btn--outline {
    background-color: transparent;
    color: var(--color-bamboo);
    border-color: var(--color-bamboo);
}

.yhs-btn--outline:hover {
    background-color: var(--color-bamboo);
    color: var(--color-bg);
}

.yhs-btn--white {
    background-color: var(--color-bg);
    color: var(--color-bamboo);
    border-color: var(--color-bg);
}

.yhs-btn--white:hover {
    background-color: var(--color-bg-warm);
    transform: translateY(-2px);
}

.yhs-btn--large {
    font-size: 18px;
    padding: 13px 40px 12px;
    letter-spacing: 0.5px;
}

.yhs-btn--small {
    font-size: 14px;
    padding: 12px 24px;
}

.yhs-btn--full {
    width: 100%;
}


/* --------------------------------------------
   7. HEADER (Classic Layout)
   -------------------------------------------- */
.yhs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.yhs-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    gap: 65px;
}

/* Logo */
.yhs-header__logo {
    flex-shrink: 0;
}

.yhs-header__logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yhs-header__logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.yhs-header__logo-text {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 22px;
    color: var(--color-text);
    line-height: 1.2;
    letter-spacing: 0.9px;
}

.yhs-header__logo-text span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-light);
    letter-spacing: 0.5px;
}

/* Navigation */
.yhs-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
}

.yhs-header__link {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
    position: relative;
}

.yhs-header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-bamboo);
    transition: width var(--transition-base);
}

.yhs-header__link:hover {
    color: var(--color-bamboo);
}

.yhs-header__link:hover::after {
    width: 100%;
}

/* Actions (CTA + Lang) */
.yhs-header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.yhs-header__cta {
    padding: 6px 25px 5px;
    font-size: 15px;
}

/* Language Switcher (New Style - Minimal) */
.yhs-header__lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--color-bg-warm);
    border-radius: var(--radius-full);
}

.yhs-header__lang-btn {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.yhs-header__lang-btn:hover {
    color: var(--color-bamboo);
}

.yhs-header__lang-btn--active {
    color: var(--color-bamboo);
}

.yhs-header__lang-divider {
    color: var(--color-border);
    font-size: 12px;
}

/* Mobile Burger */
.yhs-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
}

.yhs-header__burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition-base);
}

/* Scrolled State */
.yhs-header--scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* --------------------------------------------
   8. MOBILE MENU
   -------------------------------------------- */
.yhs-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all var(--transition-base);
}

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

.yhs-mobile-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.yhs-mobile-menu__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--color-bg);
    padding: 100px 40px 40px;
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
}

.yhs-mobile-menu.active .yhs-mobile-menu__content {
    transform: translateX(0);
}

.yhs-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.yhs-mobile-menu__link {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.yhs-mobile-menu__link:hover {
    color: var(--color-bamboo);
}

.yhs-mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.yhs-mobile-menu__lang {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

/* --------------------------------------------
   9. RESPONSIVE (Header)
   -------------------------------------------- */
@media (max-width: 1024px) {
    .yhs-header__nav {
        display: none;
    }
    
    .yhs-header__burger {
        display: flex;
    }
    
    .yhs-header__container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .yhs-header__container {
        height: 70px;
        padding: 0 20px;
    }
    
    .yhs-header__logo-text {
        font-size: 16px;
    }
    
    .yhs-header__logo-text span {
        font-size: 10px;
    }
    
    .yhs-header__logo-img {
        width: 40px;
        height: 40px;
    }
    
    .yhs-header__actions {
        gap: 16px;
    }
    
    .yhs-header__cta {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .yhs-header__lang-switcher {
        padding: 6px 12px;
    }
    
    .yhs-header__lang-btn {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .yhs-header__logo-text {
        display: none;
    }
    
    .yhs-header__lang-switcher {
        display: none;
    }
}




/* ============================================
   HERO SECTION
   ============================================ */
.yhs-hero {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    overflow: hidden;
    background-color: var(--color-bg);
}

.yhs-hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 60px 40px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.yhs-hero__content {
    position: relative;
    z-index: 2;
}

.yhs-hero__badge {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-bamboo);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding: 8px 16px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: var(--radius-sm);
}

.yhs-hero__title {
    margin-bottom: 24px;
    line-height: 1.1;
}

.yhs-hero__title-line {
    display: block;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    color: var(--color-text);
}

.yhs-hero__title-accent {
    display: block;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    color: var(--color-bamboo);
    font-family: var(--font-script);
    font-style: italic;
}

.yhs-hero__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.yhs-hero__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.yhs-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.yhs-hero__stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text);
}

.yhs-hero__stat-label {
    font-size: 14px;
    color: var(--color-text-light);
}

.yhs-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual */
.yhs-hero__visual {
    position: relative;
    height: 665px;
}

.yhs-hero__image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.yhs-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
}

.yhs-hero__deco {
    position: absolute;
    z-index: 1;
}

.yhs-hero__deco--circle-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(74, 124, 89, 0.15);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.yhs-hero__deco--circle-2 {
    width: 200px;
    height: 200px;
    background-color: rgba(184, 149, 106, 0.2);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
}

.yhs-hero__deco--wave {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.yhs-about {
    padding: var(--section-padding);
    background-color: var(--color-bg-warm);
    position: relative;
}

.yhs-about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.yhs-about__visual {
    position: relative;
}

.yhs-about__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.yhs-about__image {
    width: 100%;
    height: 575px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.yhs-about__deco {
    position: absolute;
    z-index: -1;
}

.yhs-about__deco--leaf-1 {
    width: 80px;
    height: 80px;
    top: -20px;
    left: -20px;
    opacity: 0.3;
}

.yhs-about__deco--leaf-2 {
    width: 60px;
    height: 60px;
    bottom: -15px;
    right: -15px;
    opacity: 0.3;
}

.yhs-about__content {
    position: relative;
}

.yhs-about__subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-bamboo);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.yhs-about__title {
    font-size: clamp(36px, 4vw, 56px);
    margin-bottom: 32px;
    line-height: 1.2;
}

.yhs-about__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.yhs-about__address {
    display: inline-block;
    margin-top: 24px;
    padding: 16px 24px;
    background-color: rgba(74, 124, 89, 0.1);
    font-size: 15px;
    color: var(--color-text);
}

.yhs-about__address strong {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-bamboo);
}

/* ============================================
   RESPONSIVE (Hero + About)
   ============================================ */
@media (max-width: 1024px) {
    .yhs-hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }
    
    .yhs-hero__visual {
        height: 400px;
        order: -1;
    }
    
    .yhs-about__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .yhs-about__image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .yhs-hero {
        padding-top: 70px;
    }
    
    .yhs-hero__stats {
        gap: 24px;
    }
    
    .yhs-hero__stat-number {
        font-size: 28px;
    }
    
    .yhs-hero__actions {
        flex-direction: column;
    }
    
    .yhs-hero__actions .yhs-btn {
        width: 100%;
    }
    
    .yhs-hero__deco--circle-1 {
        width: 200px;
        height: 200px;
    }
    
    .yhs-hero__deco--circle-2 {
        width: 150px;
        height: 150px;
    }
    
    .yhs-about {
        padding: 60px 0;
    }
    
    .yhs-about__image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .yhs-hero__container {
        padding: 30px 16px;
    }
    
    .yhs-hero__subtitle {
        font-size: 16px;
    }
    
    .yhs-hero__stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .yhs-about__container {
        padding: 0 16px;
    }
    
    .yhs-about__title {
        font-size: 32px;
    }
    
    .yhs-about__text {
        font-size: 15px;
    }
}

@media (max-width: 380px) {
    .yhs-hero__title-line,
    .yhs-hero__title-accent {
        font-size: 40px;
    }
    
    .yhs-hero__visual {
        height: 300px;
    }
    
    .yhs-about__image {
        height: 250px;
    }
}


/* ============================================
   PRODUCTS SECTION
   ============================================ */
.yhs-products {
    padding: var(--section-padding);
    background-color: var(--color-bg);
    position: relative;
}

.yhs-products__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.yhs-products__header {
    text-align: center;
    margin-bottom: 60px;
}

.yhs-products__subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-bamboo);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.yhs-products__title {
    font-size: clamp(36px, 4vw, 56px);
    margin-bottom: 24px;
}

.yhs-products__description {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.yhs-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 30px;
}

.yhs-product-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.yhs-product-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.yhs-product-item:hover {
    transform: translateY(-8px);
}

.yhs-product-item__image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.yhs-product-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.yhs-product-item:hover .yhs-product-item__image {
    transform: scale(1.05);
}

.yhs-product-item__frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--color-bamboo);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.yhs-product-item:hover .yhs-product-item__frame {
    opacity: 1;
}

.yhs-product-item__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--color-bg);
}

.yhs-product-item__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-bg);
}

.yhs-product-item__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.yhs-services {
    padding: var(--section-padding);
    background-color: var(--color-bg-warm);
    position: relative;
}

.yhs-services__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.yhs-services__header {
    text-align: center;
    margin-bottom: 60px;
}

.yhs-services__subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-bamboo);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.yhs-services__title {
    font-size: clamp(36px, 4vw, 56px);
    margin-bottom: 24px;
}

.yhs-services__description {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


.yhs-services__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.yhs-service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    background-color: var(--color-bg);
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.yhs-service-block:last-child {
    margin-bottom: 0;
}

.yhs-service-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.yhs-service-block--reverse {
    direction: rtl;
}

.yhs-service-block--reverse > * {
    direction: ltr;
}

.yhs-service-block__visual {
    position: relative;
    overflow: hidden;
}

.yhs-service-block__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.yhs-service-block:hover .yhs-service-block__image {
    transform: scale(1.05);
}

.yhs-service-block__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.yhs-service-block__number {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-bamboo);
    margin-bottom: 16px;
}

.yhs-service-block__title {
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 24px;
    line-height: 1.2;
}

.yhs-service-block__text {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.yhs-service-block__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.yhs-service-block__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--color-text);
    letter-spacing: 0.5px;
}

.yhs-service-block__feature::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--color-bamboo);
    border-radius: 50%;
    flex-shrink: 0;
}


.yhs-services__wave {
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
}

.yhs-services__wave--top {
    top: -50px;
}

.yhs-services__wave--bottom {
    bottom: -50px;
}

.yhs-services__wave svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   RESPONSIVE (Products + Services)
   ============================================ */
@media (max-width: 1024px) {
    .yhs-products__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 400px);
    }
    
    .yhs-product-item--large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .yhs-service-block {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .yhs-service-block--reverse {
        direction: ltr;
    }
    
    .yhs-service-block__visual {
        height: 300px;
    }
    
    .yhs-service-block__content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .yhs-products {
        padding: 60px 0;
    }
    
    .yhs-products__container,
    .yhs-services__container {
        padding: 0 20px;
    }
    
    .yhs-products__grid {
        grid-template-rows: repeat(6, 300px);
        gap: 20px;
    }
    
    .yhs-services {
        padding: 60px 0;
    }
    
    .yhs-service-block__visual {
        height: 250px;
    }
    
    .yhs-service-block__content {
        padding: 30px;
    }
    
    .yhs-service-block__title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .yhs-products__grid {
        grid-template-rows: repeat(6, 250px);
        gap: 16px;
    }
    
    .yhs-product-item__content {
        padding: 20px;
    }
    
    .yhs-product-item__title {
        font-size: 20px;
    }
    
    .yhs-product-item__text {
        font-size: 13px;
    }
    
    .yhs-service-block__visual {
        height: 200px;
    }
    
    .yhs-service-block__content {
        padding: 24px;
    }
    
    .yhs-service-block__title {
        font-size: 24px;
    }
    
    .yhs-service-block__text {
        font-size: 15px;
    }
}

@media (max-width: 380px) {
    .yhs-products__grid {
        grid-template-rows: repeat(6, 220px);
    }
    
    .yhs-products__title,
    .yhs-services__title {
        font-size: 32px;
    }
    
    .yhs-service-block__visual {
        height: 180px;
    }
}


/* ============================================
   LOGISTICS SECTION 
   ============================================ */
.yhs-logistics {
    position: relative;
    padding: 120px 0;
    background: url('image/yh-photo-13.jpg') center/cover no-repeat;
    color: var(--color-bg);
    overflow: hidden;
}

.yhs-logistics__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(44, 36, 32, 0.95) 0%, rgba(44, 36, 32, 0.8) 50%, rgba(74, 124, 89, 0.6) 100%);
    z-index: 1;
}

.yhs-logistics__container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.yhs-logistics__subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-bamboo-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.yhs-logistics__title {
    font-size: clamp(36px, 4vw, 56px);
    margin-bottom: 20px;
    color: var(--color-bg);
    max-width: 700px;
    letter-spacing: 1px;
}

.yhs-logistics__text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 60px;
}

.yhs-logistics__modes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.yhs-logistics__mode {
    border-top: 2px solid var(--color-bamboo);
    padding-top: 24px;
}

.yhs-logistics__mode-num {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-bamboo-light);
    margin-bottom: 12px;
    line-height: 1;
}

.yhs-logistics__mode-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-bg);
}

.yhs-logistics__mode-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ============================================
   WHY US SECTION 
   ============================================ */
.yhs-why {
    padding: var(--section-padding);
    background-color: var(--color-bg-warm);
    position: relative;
}

.yhs-why__container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    align-items: start;
}

.yhs-why__header {
    position: sticky;
    top: 100px;
}

.yhs-why__subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-bamboo);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.yhs-why__title {
    font-size: clamp(36px, 4vw, 56px);
    margin-bottom: 24px;
    line-height: 1.1;
}

.yhs-why__title span {
    font-family: var(--font-script);
    font-style: italic;
    color: var(--color-bamboo);
}

.yhs-why__text {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.yhs-why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.yhs-why-card {
    background-color: var(--color-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.yhs-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.yhs-why-card__num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 64px;
    font-weight: 700;
    color: var(--color-bamboo);
    opacity: 0.1;
    line-height: 1;
}

.yhs-why-card__title {
    font-size: 22px;
    margin-bottom: 16px;
    padding-right: 40px;
}

.yhs-why-card__text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   BEST PRICES SECTION 
   ============================================ */
.yhs-prices {
    padding: 100px 0;
    background-color: var(--color-bamboo);
    color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.yhs-prices__container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.yhs-prices__subtitle {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.yhs-prices__title {
    font-size: clamp(36px, 4vw, 56px);
    margin-bottom: 24px;
    color: var(--color-bg);
    line-height: 1.1;
}

.yhs-prices__title span {
    font-family: var(--font-script);
    font-style: italic;
    color: var(--color-earth-light);
}

.yhs-prices__text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
}

.yhs-prices__visual {
    position: relative;
    height: 400px;
}

.yhs-prices__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
}


.yhs-prices__deco {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.yhs-prices__deco--circle-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    top: -100px;
    right: -50px;
}

.yhs-prices__deco--circle-2 {
    width: 200px;
    height: 200px;
    background-color: rgba(184, 149, 106, 0.3);
    bottom: -50px;
    left: -50px;
}

/* ============================================
   RESPONSIVE (Logistics + Why Us + Prices)
   ============================================ */
@media (max-width: 1024px) {
    .yhs-logistics__modes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yhs-why__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .yhs-why__header {
        position: static;
    }
    
    .yhs-prices__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .yhs-prices__visual {
        height: 300px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .yhs-logistics {
        padding: 80px 0;
    }
    
    .yhs-logistics__container,
    .yhs-why__container,
    .yhs-prices__container {
        padding: 0 20px;
    }
    
    .yhs-logistics__modes {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .yhs-why__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .yhs-why-card {
        padding: 30px;
    }
    
    .yhs-prices {
        padding: 60px 0;
    }
    
    .yhs-prices__visual {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .yhs-logistics__mode-num {
        font-size: 36px;
    }
    
    .yhs-why-card__num {
        font-size: 48px;
    }
    
    .yhs-why-card {
        padding: 24px;
    }
    
    .yhs-prices__title {
        font-size: 32px;
    }
}

@media (max-width: 380px) {
    .yhs-logistics__title,
    .yhs-why__title,
    .yhs-prices__title {
        font-size: 28px;
    }
    
    .yhs-prices__visual {
        height: 200px;
    }
}


/* ============================================
   PARTNERS SECTION
   ============================================ */
.yhs-partners {
    padding: var(--section-padding);
    background-color: var(--color-bg-beige);
    position: relative;
}

.yhs-partners__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.yhs-partners__header {
    text-align: center;
    margin-bottom: 60px;
}

.yhs-partners__subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-bamboo);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.yhs-partners__title {
    font-size: clamp(36px, 4vw, 56px);
    margin-bottom: 24px;
}

.yhs-partners__text {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.yhs-partners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.yhs-partner-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    background-color: var(--color-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.yhs-partner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.yhs-partner-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: grayscale(100%);
}

.yhs-partner-item:hover .yhs-partner-item__image {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.yhs-partner-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-bg);
}

.yhs-partner-item__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

/* ============================================
   CONTACT SECTION 
   ============================================ */
.yhs-contact {
    padding: var(--section-padding);
    background-color: var(--color-bg);
    position: relative;
}

.yhs-contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.yhs-contact__visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 600px;
}

.yhs-contact__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yhs-contact__info {
    padding: 40px 0;
}

.yhs-contact__subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-bamboo);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.yhs-contact__title {
    font-size: clamp(36px, 4vw, 56px);
    margin-bottom: 32px;
    line-height: 1.1;
}

.yhs-contact__details {
    margin-bottom: 40px;
}

.yhs-contact__detail {
    margin-bottom: 24px;
}

.yhs-contact__detail-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 8px;
    display: block;
}

.yhs-contact__detail-value {
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.4;
}

.yhs-contact__detail-value a {
    color: var(--color-bamboo);
    transition: color var(--transition-fast);
}

.yhs-contact__detail-value a:hover {
    color: var(--color-bamboo-dark);
}


.yhs-form {
    background-color: var(--color-bg-warm);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.yhs-form__group {
    margin-bottom: 20px;
}

.yhs-form__label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.yhs-form__input,
.yhs-form__select,
.yhs-form__textarea {
    width: 100%;
    padding: 16px;
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--color-text);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.yhs-form__input:focus,
.yhs-form__select:focus,
.yhs-form__textarea:focus {
    outline: none;
    border-color: var(--color-bamboo);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.yhs-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.yhs-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.yhs-form__checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.yhs-form__checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-bamboo);
    cursor: pointer;
}

.yhs-form__checkbox-label {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.4;
}

.yhs-form__checkbox-label a {
    color: var(--color-bamboo);
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.yhs-footer {
    background-color: var(--color-text);
    color: var(--color-bg);
    padding: 80px 0 40px;
}

.yhs-footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.yhs-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.yhs-footer__brand {
    max-width: 300px;
}

.yhs-footer__logo {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.yhs-footer__logo-text {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-bg);
}

.yhs-footer__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.yhs-footer__heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-bamboo-light);
}

.yhs-footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.yhs-footer__link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.yhs-footer__link:hover {
    color: var(--color-bg);
}

.yhs-footer__contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.yhs-footer__contact-item {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.yhs-footer__contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.yhs-footer__contact-item a:hover {
    color: var(--color-bamboo-light);
}

.yhs-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.yhs-footer__copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.yhs-footer__legal {
    display: flex;
    gap: 24px;
}

.yhs-footer__legal-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.yhs-footer__legal-link:hover {
    color: var(--color-bamboo-light);
}



/* ============================================
   SLIDE-IN PANEL (Form)
   ============================================ */
.yhs-slide-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 500px;
    z-index: 1001;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: all var(--transition-base);
}

.yhs-slide-panel.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.yhs-slide-panel__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.yhs-slide-panel__content {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    padding: 40px;
    overflow-y: auto;
    z-index: 1002;
}

.yhs-slide-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.yhs-slide-panel__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yhs-slide-panel__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.yhs-slide-panel__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
}

.yhs-slide-panel__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-text);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.yhs-slide-panel__close:hover {
    background-color: var(--color-bg-warm);
    color: var(--color-bamboo);
}

/* Form Status Messages */
.yhs-form__status {
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    text-align: center;
}

.yhs-form__status--error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.yhs-form__status--success {
    background-color: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

.yhs-form__success {
    text-align: center;
    padding: 40px 20px;
}

.yhs-form__success-icon {
    font-size: 64px;
    color: var(--color-bamboo);
    margin-bottom: 24px;
}

.yhs-form__success h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.yhs-form__success p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.yhs-form__phone-wrap {
    display: flex;
    gap: 12px;
}

.yhs-form__select--code {
    width: 120px;
    flex-shrink: 0;
}

.yhs-form__agreements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}


/* ============================================
   STANDALONE PAGES (Legal + Inquiry)
   ============================================ */

/* Legal Pages (Privacy, Terms) */
.legal-page {
    min-height: 100vh;
    background-color: var(--color-bg);
    padding: 80px 40px 60px;
    position: relative;
    font-family: var(--font-main);
}

.legal-page__back-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-bamboo);
    color: var(--color-bg);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
    z-index: 100;
}

.legal-page__back-btn:hover {
    background-color: var(--color-bamboo-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 124, 89, 0.4);
}

.legal-page__container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page__header {
    margin-bottom: 60px;
}

.legal-page__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
    font-family: var(--font-main);
}

.legal-page__date {
    font-size: 16px;
    color: var(--color-text-light);
    font-family: var(--font-main);
}

.legal-page__content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-bamboo);
    font-family: var(--font-main);
}

.legal-page__content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--color-text);
    font-family: var(--font-main);
}

.legal-page__content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
    font-family: var(--font-main);
}

.legal-page__content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page__content li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--color-text);
    font-family: var(--font-main);
}

.legal-page__content a {
    color: var(--color-bamboo);
    text-decoration: underline;
}

/* Inquiry Page */
.standalone-page {
    min-height: 100vh;
    background-color: var(--color-bg);
    padding: 60px 40px;
    position: relative;
    font-family: var(--font-main);
}

.standalone-page__back-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-bamboo);
    color: var(--color-bg);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
    z-index: 100;
}

.standalone-page__back-btn:hover {
    background-color: var(--color-bamboo-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 124, 89, 0.4);
}

.standalone-page__container {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 40px;
}

.standalone-page__header {
    text-align: center;
    margin-bottom: 60px;
}

.standalone-page__logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    object-fit: contain;
}

.standalone-page__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
    font-family: var(--font-main);
}

.standalone-page__subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    font-family: var(--font-main);
}

.standalone-form {
    background-color: var(--color-bg-warm);
    padding: 50px;
    border-radius: var(--radius-lg);
}

.standalone-form .yhs-form__group {
    margin-bottom: 24px;
}

.standalone-form .yhs-form__input,
.standalone-form .yhs-form__select,
.standalone-form .yhs-form__textarea {
    width: 100%;
    padding: 18px;
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--color-text);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.standalone-form .yhs-form__input:focus,
.standalone-form .yhs-form__select:focus,
.standalone-form .yhs-form__textarea:focus {
    outline: none;
    border-color: var(--color-bamboo);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.standalone-form .yhs-form__textarea {
    resize: vertical;
    min-height: 140px;
}

.standalone-form .yhs-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.standalone-form .yhs-form__phone-wrap {
    display: flex;
    gap: 12px;
}

.standalone-form .yhs-form__select--code {
    width: 140px;
    flex-shrink: 0;
}

.standalone-form .yhs-form__agreements {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px 0;
}

.standalone-form .yhs-form__checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.standalone-form .yhs-form__checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-bamboo);
    cursor: pointer;
}

.standalone-form .yhs-form__checkbox-label {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.4;
    font-family: var(--font-main);
}

.standalone-form .yhs-form__checkbox-label a {
    color: var(--color-bamboo);
    text-decoration: underline;
}

.standalone-form .yhs-form__submit {
    width: 100%;
    padding: 20px;
    font-size: 18px;
}

.standalone-form .yhs-form__status {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    text-align: center;
    font-family: var(--font-main);
}

.standalone-form .yhs-form__status--error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.standalone-form .yhs-form__success {
    text-align: center;
    padding: 60px 20px;
}

.standalone-form .yhs-form__success-icon {
    font-size: 80px;
    color: var(--color-bamboo);
    margin-bottom: 30px;
}

.standalone-form .yhs-form__success h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
    font-family: var(--font-main);
}

.standalone-form .yhs-form__success p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-family: var(--font-main);
}

/* Responsive for Standalone Pages */
@media (max-width: 768px) {
    .legal-page,
    .standalone-page {
        padding: 60px 20px 40px;
    }
    
    .legal-page__back-btn,
    .standalone-page__back-btn {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    
    .legal-page__title {
        font-size: 36px;
    }
    
    .standalone-page__title {
        font-size: 32px;
    }
    
    .legal-page__content h2 {
        font-size: 24px;
    }
    
    .standalone-form {
        padding: 30px;
    }
    
    .standalone-form .yhs-form__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .legal-page__title {
        font-size: 28px;
    }
    
    .standalone-page__title {
        font-size: 28px;
    }
    
    .standalone-form {
        padding: 24px;
    }
}


.yhs-form__status {
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    text-align: center;
}

.yhs-form__status--error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.yhs-form__status--success {
    background-color: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

.yhs-form__phone-wrap {
    display: flex;
    gap: 12px;
}

.yhs-form__select--code {
    width: 120px;
    flex-shrink: 0;
}

.yhs-form__agreements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.yhs-form__checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.yhs-form__checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-bamboo);
    cursor: pointer;
}

.yhs-form__checkbox-label {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.4;
}

.yhs-form__checkbox-label a {
    color: var(--color-bamboo);
    text-decoration: underline;
}

.yhs-form__success {
    text-align: center;
    padding: 40px 20px;
}

.yhs-form__success-icon {
    font-size: 64px;
    color: var(--color-bamboo);
    margin-bottom: 24px;
}

.yhs-form__success h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.yhs-form__success p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

/* Contact Section - Image Stack */
.yhs-contact__visual {
    position: relative;
    height: 700px;
}

.yhs-contact__image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.yhs-contact__image--main {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 65%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.yhs-contact__image--secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 50%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 8px solid var(--color-bg);
}

/* Responsive */
@media (max-width: 1024px) {
    .yhs-contact__visual {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .yhs-contact__visual {
        height: 400px;
    }
    
    .yhs-contact__image--main {
        width: 90%;
        height: 60%;
    }
    
    .yhs-contact__image--secondary {
        width: 75%;
        height: 45%;
    }
}

@media (max-width: 480px) {
    .yhs-contact__visual {
        height: 300px;
    }
    
    .yhs-contact__image--main {
        width: 100%;
        height: 55%;
    }
    
    .yhs-contact__image--secondary {
        width: 80%;
        height: 40%;
    }
}

/* Contact Section - Equal Height Columns */
.yhs-contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch; /* Stretch columns to equal height */
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.yhs-contact__visual {
    position: relative;
    height: 100%;
    min-height: 800px; /* Match form height */
}

.yhs-contact__image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.yhs-contact__image--main {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 60%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.yhs-contact__image--secondary {
    position: absolute;
    bottom: 2%;
    right: 0;
    width: 82%;
    height: 51%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 8px solid var(--color-bg);
}

/* Responsive */
@media (max-width: 1024px) {
    .yhs-contact__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .yhs-contact__visual {
        min-height: 500px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .yhs-contact__visual {
        min-height: 400px;
    }
    
    .yhs-contact__image--main {
        width: 95%;
        height: 65%;
    }
    
    .yhs-contact__image--secondary {
        width: 80%;
        height: 50%;
    }
}

@media (max-width: 480px) {
    .yhs-contact__visual {
        min-height: 300px;
    }
}

/* ============================================
   RESPONSIVE (Partners + Contact + Footer)
   ============================================ */
@media (max-width: 1024px) {
    .yhs-contact__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .yhs-contact__visual {
        height: 400px;
        order: -1;
    }
    
    .yhs-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .yhs-footer__brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .yhs-partners__container,
    .yhs-contact__container,
    .yhs-footer__container {
        padding: 0 20px;
    }
    
    .yhs-contact__visual {
        height: 300px;
    }
    
    .yhs-form {
        padding: 30px;
    }
    
    .yhs-form__row {
        grid-template-columns: 1fr;
    }
    
    .yhs-footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .yhs-footer__brand {
        grid-column: span 1;
    }
    
    .yhs-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .yhs-partners__grid {
        grid-template-columns: 1fr;
    }
    
    .yhs-contact__visual {
        height: 250px;
    }
    
    .yhs-form {
        padding: 24px;
    }
    
    .yhs-footer__legal {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 380px) {
    .yhs-contact__title {
        font-size: 32px;
    }
    
    .yhs-form__input,
    .yhs-form__select,
    .yhs-form__textarea {
        padding: 12px;
        font-size: 15px;
    }
}
