@charset "UTF-8";

/* ==========================================================================
   0. RESET & DESIGN TOKENS
   ========================================================================== */
:root {
    --bg-dark-primary: #030712;
    --bg-dark-secondary: #080f1e;
    --accent-blue: #2ebcf9;
    --accent-blue-rgb: 46, 188, 249;
    --accent-gold: #bca47b;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --transition-fast: 0.25s ease;
    --transition-normal: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-page {
    background-color: var(--bg-dark-primary);
    color: var(--text-primary);
    font-family: 'Jost', 'Noto Sans KR', sans-serif;
    overflow-x: hidden;
}

.max-layout-width {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.font-jost { font-family: 'Jost', sans-serif; }
.blue-highlight, .gold-highlight { color: var(--accent-blue); }

/* ==========================================================================
   1. HERO BANNER ZONE (SECTION 1. 풀스크린 메인 배너)
   ========================================================================== */
.section-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    background-color: #000;
}

.hero-swiper { width: 100%; height: 100%; }

.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.media-container { width: 100%; height: 100%; overflow: hidden; }

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-overlay-filter {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
    rgba(3, 7, 18, 0.4) 0%,
    rgba(3, 7, 18, 0.65) 60%,
    var(--bg-dark-primary) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-inner-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 0 10%;
    pointer-events: none;
}

.hero-text-content {
    display: none;
    max-width: 850px;
    pointer-events: auto;
}

.hero-text-content.active-content { display: block; }

.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

.eng-sub {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--accent-blue);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.25rem;
    text-shadow: 0 0 15px rgba(46, 188, 249, 0.4);
}

.hero-main-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.orange-title-style { color: #fff; }

.gold-gradient-title, .blue-gradient-title {
    background: linear-gradient(90deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub-title {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.7;
}

.hero-orange-badge {
    display: inline-block;
    margin-top: 20px;
    background: rgba(46, 188, 249, 0.1);
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
}

.scroll-indicator {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 45px;
    background: linear-gradient(180deg, var(--accent-blue), transparent);
    animation: bounceScroll 2s infinite ease-in-out;
}

.hero-pagination.swiper-pagination-bullets {
    bottom: 4rem;
    right: 10%;
    left: auto;
    width: auto;
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 6px !important;
    border-radius: 50%;
    transition: width var(--transition-fast), background var(--transition-fast);
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 4px;
    background: var(--accent-blue);
    box-shadow: 0 0 10px rgba(46, 188, 249, 0.6);
}

/* ==========================================================================
   2. SECTION 2. QUICK NAVIGATION CARDS
   ========================================================================== */
.section-quick-nav {
    position: relative;
    width: 100%;
    padding: 140px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-dark-primary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.quick-nav-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 1;
}

.quick-nav-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.quick-nav-inner {
    position: relative;
    z-index: 3;
    width: 100%;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.quick-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
    background-size: cover;
    background-position: center;
    transition: all var(--transition-normal);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.quick-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.15) 0%, rgba(3, 7, 18, 0.88) 100%);
    z-index: 1;
}

.quick-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.quick-card-inner {
    height: 100%;
    padding: 35px 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    position: relative;
}

.card-circle-arrow {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(46, 188, 249, 0.45);
    transition: transform var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.arrow-icon {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
}

.card-num {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 10px;
}

.quick-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.quick-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    word-break: keep-all;
}

.quick-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 0 25px rgba(46, 188, 249, 0.35);
}

.quick-card:hover .card-circle-arrow {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #5cd0ff;
    box-shadow: 0 10px 25px rgba(46, 188, 249, 0.65);
}

/* ==========================================================================
   3. SECTION 3. PRODUCTS LINEUP
   ========================================================================== */
.section-products-lineup {
    padding: 100px 0;
    background-color: var(--bg-dark-primary);
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.eng-sub-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 10px;
}

.blue-title, .gold-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.font-glow { text-shadow: 0 0 20px rgba(255, 255, 255, 0.1); }

.desc-text { font-size: 1.05rem; color: var(--text-secondary); }

.products-swiper-container {
    position: relative;
    padding: 0 70px;
}

.product-lineup-card {
    background: rgba(8, 15, 30, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.product-lineup-card:hover {
    border-color: rgba(var(--accent-blue-rgb), 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 188, 249, 0.15);
}

.card-img-holder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #000000;
    overflow: hidden;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.product-lineup-card:hover .card-img-holder img { transform: scale(1.06); }

.card-content {
    padding: 25px 20px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    min-height: 48px;
    margin-bottom: 20px;
}

.btn-product-more {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.btn-product-more:hover { color: #ffffff; }

.prod-arrow-prev, .prod-arrow-next {
    color: var(--accent-blue) !important;
    width: 48px !important;
    height: 48px !important;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(8px);
    transition: all var(--transition-fast);
    z-index: 10;
}

.prod-arrow-prev { left: 0 !important; }
.prod-arrow-next { right: 0 !important; }

.prod-arrow-prev:hover, .prod-arrow-next:hover {
    border-color: var(--accent-blue);
    background: rgba(8, 15, 30, 0.95);
    box-shadow: 0 0 20px rgba(46, 188, 249, 0.3);
    transform: scale(1.05);
}

.prod-arrow-prev::after, .prod-arrow-next::after {
    font-size: 1.2rem !important;
    font-weight: 700;
}

/* ==========================================================================
   4. SECTION 4. KEY MESSAGE MOTION GRAPHIC ZONE
   ========================================================================== */
.section-key-message {
    padding: 120px 0;
    background-color: var(--bg-dark-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.key-message-flex-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
}

.motion-graphic-block { flex: 1; }

.motion-media-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(46, 188, 249, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(46, 188, 249, 0.15);
}

.motion-video { width: 100%; height: 100%; object-fit: cover; }

.motion-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(3, 7, 18, 0.85);
    border: 1px solid var(--accent-blue);
    padding: 6px 16px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 15px rgba(46, 188, 249, 0.3);
}

.motion-overlay-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 0.12em;
}

.typography-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.typo-row {
    display: flex;
    flex-direction: column;
    border-left: 3px solid rgba(46, 188, 249, 0.3);
    padding-left: 24px;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    transition: all 0.4s ease;
}

.typo-row:hover {
    border-left-color: var(--accent-blue);
    box-shadow: -5px 0 20px -5px rgba(46, 188, 249, 0.5);
    transform: translateX(6px);
}

.typo-sub {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.typo-main {
    font-family: 'Jost', sans-serif;
    font-size: clamp(3rem, 4.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.03em;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #b2ebff 50%, #2ebcf9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(46, 188, 249, 0.6))
    drop-shadow(0 0 20px rgba(46, 188, 249, 0.35))
    drop-shadow(0 0 45px rgba(46, 188, 249, 0.2));

    transition: filter 0.3s ease;
}

.typo-row:hover .typo-main {
    filter: drop-shadow(0 0 12px rgba(46, 188, 249, 0.9))
    drop-shadow(0 0 30px rgba(46, 188, 249, 0.6))
    drop-shadow(0 0 60px rgba(46, 188, 249, 0.35));
}

.shine-effect::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineLight 4s infinite linear;
    pointer-events: none;
}

@keyframes shineLight {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
/* ==========================================================================
   5. SECTION 5. CONTACT & INQUIRY FORM ZONE
   ========================================================================== */
.section-contact-inquiry {
    padding: 120px 0;
    background-color: var(--bg-dark-primary);
}

.inquiry-grid-wrap {
    display: flex;
    gap: 70px;
    margin-bottom: 80px;
    align-items: center;
    justify-content: center;
}

.inquiry-left-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 20px;
}

.inquiry-left-copy .eng-sub {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--accent-blue);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(46, 188, 249, 0.45);
}

.inquiry-main-head {
    font-family: 'Jost', 'Noto Sans KR', sans-serif;
    font-size: clamp(2.2rem, 3.2vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.inquiry-sub-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
    text-shadow: 0 0 12px rgba(46, 188, 249, 0.25);
}

.inquiry-sub-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    word-break: keep-all;
}

.inquiry-right-form-box {
    flex: 1.2;
    background: rgba(8, 15, 30, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.inquiry-table-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row { display: flex; align-items: center; }
.form-row.textarea-row { align-items: flex-start; }

.form-label {
    width: 100px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.form-row.textarea-row .form-label { padding-top: 10px; }

.form-row input[type="text"],
.form-row textarea {
    flex: 1;
    background: rgba(3, 7, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.form-row input:focus,
.form-row textarea:focus { border-color: var(--accent-blue); }

.form-row textarea { height: 120px; resize: none; }

.file-uploader-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-file-select {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    color: #ffffff;
    font-size: 0.88rem;
    border-radius: 4px;
    cursor: pointer;
}

.file-status-text { font-size: 0.88rem; color: var(--text-muted); }

.form-submit-wrap { margin-top: 15px; }

.btn-main-submit {
    width: 30%;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    padding: 15px;
    background: var(--accent-blue);
    color: #030712;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-main-submit:hover {
    background: #5cd0ff;
    box-shadow: 0 0 20px rgba(46, 188, 249, 0.4);
}

.contact-info-footer-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    border-top: 1px solid var(--border-subtle);
    padding-top: 80px;
    margin-top: 40px;
}

/* 좌측: 테크니컬 약도 프레임 박스 */
.contact-map-holder {
    width: 44%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(8, 15, 30, 0.8) 0%, rgba(3, 7, 18, 0.9) 100%);
    border: 1px solid rgba(46, 188, 249, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(46, 188, 249, 0.1);
    backdrop-filter: blur(12px);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-map-holder:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 25px 60px rgba(46, 188, 249, 0.25);
}

.map-img {
    width: 100%;
    height: auto;
    object-fit: contain !important;
    display: block;
    opacity: 0.92;
    transition: transform var(--transition-normal);
}

.contact-map-holder:hover .map-img {
    transform: scale(1.03);
    opacity: 1;
}

/* 약도 위 레이저 스캔 빔 애니메이션 */
.map-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-blue) 50%, transparent 100%);
    box-shadow: 0 0 15px var(--accent-blue);
    opacity: 0.7;
    animation: mapScanAnim 5s infinite ease-in-out;
    z-index: 3;
    pointer-events: none;
}

@keyframes mapScanAnim {
    0% { top: -5%; }
    50% { top: 105%; }
    100% { top: -5%; }
}

.map-tag-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(3, 7, 18, 0.85);
    border: 1px solid rgba(46, 188, 249, 0.3);
    padding: 4px 12px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.map-tag-overlay span {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-blue);
    letter-spacing: 0.12em;
}

/* 우측: CONTACT 타이틀 & 메타 카드 패널 */
.contact-meta-panel {
    width: 56%;
    flex-grow: 1;
}

.contact-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2.5rem, 3.5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 35px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.meta-cards-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* 글래스모피즘 메타 정보 카드 */
.meta-card-box {
    background: rgba(8, 15, 30, 0.65);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.meta-card-box.address-card {
    grid-column: span 2; /* 주소 카드는 하단 전체 가로 폭 차지 */
}

.meta-card-box:hover {
    transform: translateY(-3px) translateX(3px);
    border-color: rgba(46, 188, 249, 0.5);
    box-shadow: 0 12px 35px rgba(46, 188, 249, 0.18);
}

.meta-icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(46, 188, 249, 0.1);
    border: 1px solid rgba(46, 188, 249, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(46, 188, 249, 0.15);
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.meta-card-box:hover .meta-icon-badge {
    background: rgba(46, 188, 249, 0.2);
    border-color: var(--accent-blue);
    box-shadow: 0 0 18px rgba(46, 188, 249, 0.4);
}

.meta-text-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-text-group .label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-blue);
    letter-spacing: 0.1em;
}

.meta-text-group .val {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
    word-break: keep-all;
}

.meta-text-group .val strong {
    color: var(--accent-blue);
    font-weight: 700;
}

/* ==========================================================================
   6. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1200px) {
    .quick-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .key-message-flex-wrap, .inquiry-grid-wrap, .contact-info-footer-grid {
        flex-direction: column;
        gap: 40px;
    }
    .motion-graphic-block, .typography-block,
    .inquiry-left-copy, .inquiry-right-form-box,
    .contact-map-holder, .contact-meta-panel { width: 100%; }

    .contact-info-footer-grid {
        flex-direction: column;
        gap: 40px;
    }
    .contact-map-holder, .contact-meta-panel {
        width: 100%;
    }
    .meta-cards-layout {
        grid-template-columns: 1fr;
    }
    .meta-card-box.address-card {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .section-quick-nav { padding: 80px 0; }
    .quick-nav-grid {
        grid-template-columns: 1fr;
    }
    .quick-card {
        padding: 30px 20px;
    }
    .hero-main-title { font-size: 2.2rem; }
    .meta-row-grid { grid-template-columns: 1fr; }
    .products-swiper-container { padding: 0; }
    .prod-arrow-prev, .prod-arrow-next { display: none !important; }
    .contact-title { font-size: 2.2rem; }
    .contact-map-holder { padding: 15px; }
}