/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

:root {
    --primary: #0077b6;
    --primary-dark: #005f8a;
    --secondary: #00a8e8;
    --accent: #f7941d;
    --accent-soft: #fff1dd;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: #ffffff;
    --surface-muted: #f3f8fc;
    --text: #173042;
    --text-soft: #5d6d79;
    --line: rgba(10, 88, 133, 0.12);
    --shadow-soft: 0 18px 40px rgba(10, 54, 86, 0.08);
    --shadow-strong: 0 24px 60px rgba(10, 54, 86, 0.14);
}

body {
    font-family: 'Segoe UI', 'Hiragino Sans', 'Yu Gothic', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(0, 168, 232, 0.08), transparent 32%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 28%);
    overflow-x: hidden;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(9, 40, 70, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 12px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: linear-gradient(135deg, #f7941d 0%, #ffb703 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(247, 148, 29, 0.25);
}

.logo-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.logo-name small {
    font-size: 10px;
    color: #f7941d;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

/* Menu Toggle Button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 249, 255, 0.96);
    backdrop-filter: blur(16px);
    z-index: 999;
    padding: 60px 20px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.nav-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 36px;
    cursor: pointer;
    color: var(--text);
}

.nav-list {
    list-style: none;
    padding: 20px 0;
}

.nav-list li {
    margin-bottom: 15px;
}

.nav-list a {
    display: block;
    font-size: 18px;
    color: var(--text-soft);
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 119, 182, 0.12);
}

.nav-list a span {
    font-size: 12px;
    margin-left: 10px;
    color: #999;
}

.nav-list a.active,
.nav-list a:hover {
    color: var(--primary);
}

.nav-lang {
    margin-top: 30px;
    font-size: 16px;
}

.nav-lang a {
    color: #666;
}

.nav-lang a.active {
    color: var(--text);
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background: url('https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?w=800') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services {
    display: grid;
    gap: 24px;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-card h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0077b6;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 52%, var(--secondary) 100%);
    color: #fff;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
    box-shadow: 0 14px 28px rgba(0, 95, 138, 0.2);
}

.btn-detail:hover {
    transform: translateY(-2px);
    filter: saturate(1.05);
    box-shadow: 0 18px 34px rgba(0, 95, 138, 0.26);
}

/* News Section */
.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.news-list {
    display: grid;
    gap: 24px;
}

.news-card {
    display: block;
    background: #fff;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 236px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-info {
    padding: 28px 24px 24px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 12px;
    color: var(--text-soft);
    margin-bottom: 12px;
}

.news-date,
.news-views {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 119, 182, 0.08);
}

.news-info h3 {
    font-size: 20px;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 12px;
}

.news-info p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-soft);
}

/* Page Header */
.page-header {
    position: relative;
    min-height: 260px;
    padding: 92px 20px 42px;
    background:
        linear-gradient(135deg, rgba(0, 95, 138, 0.94) 0%, rgba(0, 119, 182, 0.92) 42%, rgba(0, 168, 232, 0.9) 100%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 38%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    overflow: hidden;
    isolation: isolate;
}

.page-header::before,
.page-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.page-header::before {
    width: 280px;
    height: 280px;
    top: -84px;
    left: -60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 72%);
    animation: driftGlow 11s ease-in-out infinite;
}

.page-header::after {
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: -160px;
    background: radial-gradient(circle, rgba(144, 224, 239, 0.24) 0%, rgba(144, 224, 239, 0) 72%);
    animation: driftGlow 13s ease-in-out infinite reverse;
}

.contact-header {
    background:
        linear-gradient(135deg, rgba(0, 96, 143, 0.95) 0%, rgba(0, 153, 214, 0.9) 52%, rgba(97, 201, 255, 0.82) 100%),
        radial-gradient(circle at 18% 20%, rgba(255, 246, 227, 0.2), transparent 28%);
}

.company-header {
    background:
        linear-gradient(135deg, rgba(4, 82, 120, 0.95) 0%, rgba(0, 121, 164, 0.92) 48%, rgba(80, 172, 196, 0.84) 100%),
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.09) 0 2px, transparent 2px 32px),
        radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.22), transparent 24%);
}

.service-header {
    background:
        linear-gradient(135deg, rgba(0, 72, 126, 0.96) 0%, rgba(0, 118, 182, 0.9) 42%, rgba(0, 174, 216, 0.82) 100%),
        repeating-linear-gradient(150deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 26px),
        radial-gradient(circle at 84% 14%, rgba(255, 226, 181, 0.18), transparent 20%);
}

.route-header {
    background:
        linear-gradient(135deg, rgba(0, 86, 124, 0.96) 0%, rgba(0, 133, 177, 0.9) 44%, rgba(86, 185, 207, 0.82) 100%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 28px),
        radial-gradient(circle at 18% 18%, rgba(255, 233, 193, 0.18), transparent 24%);
}

.news-header {
    background:
        linear-gradient(135deg, rgba(9, 57, 97, 0.96) 0%, rgba(7, 101, 138, 0.92) 48%, rgba(0, 142, 173, 0.82) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 24% 18%, rgba(255, 213, 148, 0.16), transparent 22%);
    background-size: auto, 34px 34px, 34px 34px, auto;
}

.privacy-header {
    background:
        linear-gradient(135deg, rgba(34, 67, 96, 0.97) 0%, rgba(58, 92, 124, 0.92) 48%, rgba(110, 146, 172, 0.84) 100%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.16), transparent 20%);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.16), transparent 18%),
        radial-gradient(circle at 22% 76%, rgba(255, 255, 255, 0.08), transparent 22%);
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    width: min(100%, 1180px);
    margin: 0 auto;
    text-align: left;
    color: #fff;
    padding: 24px 0;
}

.page-header-content h1 {
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 1.08;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.page-header-content h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(110px, 42%);
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.18) 100%);
}

.company-header::before {
    background:
        radial-gradient(circle, rgba(255, 247, 229, 0.2) 0%, rgba(255, 247, 229, 0) 70%),
        conic-gradient(from 220deg, rgba(255, 255, 255, 0.06), transparent 65%);
}

.company-header::after {
    background:
        radial-gradient(circle, rgba(170, 229, 255, 0.22) 0%, rgba(170, 229, 255, 0) 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.service-header::before {
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 72%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 60%);
}

.service-header::after {
    background:
        radial-gradient(circle, rgba(153, 232, 255, 0.26) 0%, rgba(153, 232, 255, 0) 70%),
        linear-gradient(135deg, rgba(255, 203, 150, 0.06), transparent 65%);
}

.route-header::before {
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 72%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 56%);
}

.route-header::after {
    background:
        radial-gradient(circle, rgba(163, 236, 255, 0.24) 0%, rgba(163, 236, 255, 0) 70%),
        linear-gradient(135deg, rgba(255, 215, 165, 0.06), transparent 62%);
}

.news-header::before {
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 72%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 54%);
}

.news-header::after {
    background:
        radial-gradient(circle, rgba(114, 224, 255, 0.24) 0%, rgba(114, 224, 255, 0) 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 58%);
}

.privacy-header::before {
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 72%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 60%);
}

.privacy-header::after {
    background:
        radial-gradient(circle, rgba(202, 228, 255, 0.2) 0%, rgba(202, 228, 255, 0) 72%),
        linear-gradient(180deg, rgba(255, 247, 230, 0.04), transparent 56%);
}

.contact-header::before {
    background:
        radial-gradient(circle, rgba(255, 241, 222, 0.18) 0%, rgba(255, 241, 222, 0) 70%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 60%);
}

.contact-header::after {
    background:
        radial-gradient(circle, rgba(174, 238, 255, 0.26) 0%, rgba(174, 238, 255, 0) 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 54%);
}

/* Breadcrumb */
.breadcrumb {
    padding: 16px max(20px, calc((100vw - 1120px) / 2 + 20px));
    font-size: 12px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(10, 88, 133, 0.08);
    backdrop-filter: blur(8px);
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 48px max(20px, calc((100vw - 1120px) / 2 + 20px)) 72px;
}

.company-section,
.service-section,
.news-section,
.contact-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 960px;
}

.company-section,
.service-section,
.news-section {
    padding: 48px max(20px, calc((100vw - 1120px) / 2 + 20px)) 72px;
}

.page-title {
    font-size: clamp(1.95rem, 3vw, 2.8rem);
    text-align: left;
    margin-bottom: 16px;
    color: var(--text);
    line-height: 1.18;
}

.contact-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.detail-page {
    padding: 48px max(20px, calc((100vw - 1120px) / 2 + 20px)) 72px;
}

.detail-shell {
    display: grid;
    gap: 28px;
}

.detail-main {
    display: grid;
    gap: 24px;
    min-width: 0;
}

.detail-sidebar {
    display: grid;
    gap: 20px;
    align-content: start;
}

.detail-hero-card,
.detail-section-card,
.detail-sidebar-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98));
    border-radius: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.detail-hero-card {
    overflow: hidden;
}

.detail-cover {
    position: relative;
    min-height: 290px;
}

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

.detail-cover::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(7, 30, 49, 0), rgba(7, 30, 49, 0.32));
}

.detail-hero-body {
    padding: 28px;
}

.detail-label-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.detail-label,
.detail-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.detail-label {
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary-dark);
    text-transform: uppercase;
}

.detail-chip {
    background: rgba(10, 88, 133, 0.08);
    color: var(--text-soft);
}

.detail-hero-body h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.18;
    color: var(--text);
    margin-bottom: 14px;
}

.detail-lead {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.9;
}

.detail-metrics {
    display: grid;
    gap: 14px;
}

.detail-metric {
    padding: 18px 20px;
    border-radius: 22px;
    background: var(--surface-muted);
    border: 1px solid rgba(10, 88, 133, 0.08);
}

.detail-metric-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.detail-metric-value {
    font-size: 18px;
    color: var(--text);
    font-weight: 700;
    line-height: 1.4;
}

.detail-section-card {
    padding: 26px 24px;
}

.detail-section-card h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 14px;
}

.detail-section-card p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.9;
}

.detail-richtext p + p {
    margin-top: 14px;
}

.detail-list,
.detail-bullet-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.detail-list li,
.detail-bullet-list li {
    position: relative;
    padding-left: 20px;
    color: var(--text-soft);
    line-height: 1.8;
}

.detail-list li::before,
.detail-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
}

.detail-split {
    display: grid;
    gap: 20px;
}

.detail-block {
    padding-top: 18px;
    border-top: 1px solid rgba(10, 88, 133, 0.08);
}

.detail-block:first-child {
    padding-top: 0;
    border-top: 0;
}

.detail-block h4 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 10px;
}

.detail-caption {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-sidebar-card {
    padding: 22px 20px;
}

.detail-sidebar-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text);
}

.detail-sidebar-card p,
.detail-sidebar-card li {
    color: var(--text-soft);
    line-height: 1.8;
}

.detail-sidebar-card ul {
    margin: 0;
    padding-left: 18px;
}

.detail-contact-list {
    display: grid;
    gap: 12px;
}

.detail-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: var(--surface-muted);
    border-radius: 16px;
}

.detail-contact-item strong {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.detail-contact-item span,
.detail-contact-item a {
    color: var(--text);
    word-break: break-word;
}

.detail-cta {
    background: linear-gradient(135deg, rgba(0, 95, 138, 0.96), rgba(0, 119, 182, 0.92) 56%, rgba(0, 168, 232, 0.88));
    color: #fff;
    box-shadow: var(--shadow-strong);
}

.detail-cta h3,
.detail-cta p,
.detail-cta li {
    color: #fff;
}

.detail-cta .btn-detail {
    margin-top: 14px;
    background: #fff;
    color: var(--primary-dark);
}

.detail-backlink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
}

.article-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 119, 182, 0.08);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.contact-cards {
    display: grid;
    gap: 20px;
}

.contact-layout {
    display: grid;
    gap: 24px;
    margin-top: 28px;
    margin-bottom: 28px;
}

.contact-form-panel,
.contact-side-panel {
    display: grid;
    gap: 18px;
}

.contact-form-panel {
    background: var(--white);
    border-radius: 28px;
    border: 1px solid rgba(10, 88, 133, 0.08);
    box-shadow: var(--shadow-soft);
    padding: 28px;
}

.contact-form-heading h3 {
    color: var(--primary-dark);
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.contact-form-heading p {
    color: var(--text-soft);
    line-height: 1.8;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.contact-form .iti {
    width: 100%;
    display: block;
}

.contact-form .iti input.iti__tel-input {
    width: 100%;
    min-height: 58px;
    border: 1px solid rgba(14, 74, 118, 0.14);
    border-radius: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 18px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.contact-form .iti__selected-country {
    border-radius: 18px 0 0 18px;
}

.contact-form .iti__selected-country-primary {
    padding-left: 16px;
    padding-right: 10px;
}

.contact-form .iti__dropdown-content {
    border: 1px solid rgba(14, 74, 118, 0.12);
    border-radius: 22px;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}

.contact-form .iti__search-input {
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: inherit;
}

.contact-form .iti__country {
    padding-top: 12px;
    padding-bottom: 12px;
}

.contact-card-group {
    display: grid;
    gap: 10px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 20px;
    border-radius: 24px;
    color: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.contact-card::after {
    content: '';
    position: absolute;
    inset: auto -12% -38% auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.contact-card.phone {
    background: linear-gradient(135deg, #005f8a 0%, #0096c7 100%);
}

.contact-card.whatsapp {
    background: linear-gradient(135deg, #1faa59 0%, #25d366 100%);
}

.contact-card.line {
    background: linear-gradient(135deg, #00a94f 0%, #00c853 100%);
}

.contact-card.email {
    background: linear-gradient(135deg, #f77f00 0%, #ff9f1c 100%);
}

.contact-card.info {
    background: linear-gradient(135deg, #4c5b66 0%, #6b7b87 100%);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card-content {
    min-width: 0;
    flex: 1;
}

.contact-card-label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.88;
    margin-bottom: 6px;
}

.contact-card-value {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    word-break: break-word;
}

.contact-card-note {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.9;
}

.contact-card-arrow {
    font-size: 24px;
    opacity: 0.72;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
}

.contact-helper-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-helper-button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary-dark);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-helper-button:hover {
    transform: translateY(-1px);
    background: rgba(0, 119, 182, 0.18);
}

.contact-helper-button.is-copy {
    background: rgba(10, 163, 110, 0.12);
    color: #17724d;
}

.contact-helper-button.is-copy:hover {
    background: rgba(10, 163, 110, 0.18);
}

.contact-qr-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 20, 36, 0.64);
    backdrop-filter: blur(8px);
    z-index: 1500;
}

.contact-qr-modal[hidden] {
    display: none;
}

.contact-qr-dialog {
    position: relative;
    width: min(100%, 420px);
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(12, 36, 64, 0.28);
    text-align: center;
}

.contact-qr-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #eef4f8;
    color: #496173;
    font-size: 1.2rem;
    cursor: pointer;
}

.contact-qr-channel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary-dark);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.contact-qr-title {
    margin: 0 0 10px;
    font-size: 1.45rem;
    color: #17324b;
}

.contact-qr-description {
    margin: 0 0 20px;
    color: #53687a;
    line-height: 1.7;
}

.contact-qr-image-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 244px;
    height: 244px;
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 28px;
    background: linear-gradient(145deg, #f6fbff 0%, #edf5fa 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 119, 182, 0.08);
}

.contact-qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
    background: #fff;
}

.contact-qr-value {
    margin: 0 0 18px;
    font-size: 1rem;
    font-weight: 700;
    color: #17324b;
    word-break: break-all;
}

.contact-qr-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.contact-qr-action {
    min-width: 150px;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-qr-action:hover {
    transform: translateY(-1px);
}

.contact-qr-action.primary {
    background: linear-gradient(135deg, #0077b6 0%, #00a8e8 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 119, 182, 0.2);
}

.contact-qr-action.secondary {
    background: #eef5fa;
    color: #18415f;
}

body.contact-qr-open {
    overflow: hidden;
}

/* WhatsApp Contact Section */
.whatsapp-contact {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-contact h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.whatsapp-contact h3 i {
    margin-right: 10px;
}

.whatsapp-contact > p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #25d366;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn i {
    font-size: 24px;
}

.whatsapp-number {
    margin-top: 15px;
    font-size: 16px;
    opacity: 0.9;
}

.whatsapp-number i {
    margin-right: 5px;
}

/* Contact Form */
.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(10, 88, 133, 0.18);
    border-radius: 16px;
    font-size: 15px;
    color: var(--text-main);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0077b6;
    box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.12);
}

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

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #005f8a, #0077b6 55%, #00a8e8);
    color: #fff;
    padding: 15px 22px;
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 16px 32px rgba(0, 119, 182, 0.18);
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.68;
    cursor: wait;
}

.field-note {
    margin-top: -2px;
    margin-bottom: 8px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(0, 119, 182, 0.08);
    color: var(--primary-dark);
    font-size: 13px;
    line-height: 1.7;
}

.form-message {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.7;
}

.form-message.success {
    background: rgba(31, 170, 89, 0.14);
    color: #146c43;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.12);
    color: #b42333;
}

/* Other Contact Methods */
.other-contact {
    margin-top: 40px;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.other-contact h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-method i {
    font-size: 24px;
    color: #0077b6;
    width: 40px;
    text-align: center;
}

.contact-method span {
    font-size: 12px;
    color: #999;
    min-width: 60px;
}

.contact-method a {
    color: #0077b6;
    font-size: 14px;
}

.contact-method.whatsapp-method i {
    color: #25d366;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #005f8a 0%, #0077b6 48%, #00a8e8 100%);
    color: #fff;
    text-align: center;
    padding: 38px 20px 30px;
}

.footer a {
    color: #fff;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.footer p {
    font-size: 12px;
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Company Page */
.company-intro {
    text-align: center;
    margin-bottom: 30px;
}

.company-intro h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.company-intro p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.company-info {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
}

.info-row {
    display: flex;
    border-bottom: 1px solid rgba(10, 88, 133, 0.08);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    width: 152px;
    padding: 18px 20px;
    background: var(--surface-muted);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.info-value {
    flex: 1;
    padding: 18px 20px;
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.8;
}

/* Service Page */
.service-detail {
    margin-bottom: 40px;
}

.service-detail-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0077b6;
}

.service-detail p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.archive-service-card,
.archive-news-card {
    position: relative;
    margin-bottom: 0;
    padding: 0;
    text-align: left;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98));
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archive-service-card:hover,
.archive-news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.archive-service-card::before,
.archive-news-card::before,
.fact-card::before,
.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(247, 148, 29, 0.94), rgba(0, 168, 232, 0.9));
}

.archive-media {
    position: relative;
    height: 236px;
}

.archive-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-icon {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
}

.archive-body {
    padding: 28px 24px 24px;
}

.archive-body h2 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.3;
    color: var(--text);
    padding-bottom: 0;
    border-bottom: 0;
}

.archive-body p {
    color: var(--text-soft);
    line-height: 1.8;
}

.archive-empty {
    padding: 28px;
    text-align: center;
    color: var(--text-soft);
    background: var(--surface-strong);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
}

.service-feature-list {
    list-style: none;
    margin: 18px 0 20px;
    display: grid;
    gap: 10px;
}

.service-feature-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: #555;
}

.service-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00a8e8;
}

.page-intro-panel {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.94));
    border-radius: 28px;
    padding: 32px 28px;
    box-shadow: 0 22px 48px rgba(0, 70, 110, 0.1);
    margin-bottom: 34px;
    border: 1px solid rgba(10, 88, 133, 0.08);
    overflow: hidden;
}

.page-intro-panel::after {
    content: '';
    position: absolute;
    inset: auto -40px -50px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 232, 0.12), rgba(0, 168, 232, 0));
    pointer-events: none;
}

.page-intro-panel p {
    color: #4c5b66;
    line-height: 1.9;
    max-width: 780px;
    position: relative;
    z-index: 1;
}

.info-note {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 119, 182, 0.1);
    color: #005f8a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.highlight-grid {
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.highlight-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98));
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.highlight-card:hover,
.fact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.highlight-card h3 {
    font-size: 18px;
    color: #0077b6;
    margin-bottom: 10px;
}

.highlight-card p,
.highlight-card li {
    font-size: 14px;
    color: #5d6770;
    line-height: 1.8;
}

.highlight-card ul {
    margin: 12px 0 0 20px;
}

.company-authority-panel {
    margin-top: 28px;
}

.company-authority-grid {
    margin-top: 24px;
    margin-bottom: 30px;
}

.modal-panel {
    padding: 24px 20px 28px;
}

.modal-panel h3 {
    font-size: 14px;
    color: #0077b6;
    margin: 18px 0 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.modal-panel p {
    font-size: 14px;
    color: #59656f;
    line-height: 1.9;
    margin-bottom: 14px;
}

.modal-list {
    padding-left: 20px;
    margin-bottom: 10px;
}

.modal-list li {
    font-size: 14px;
    color: #59656f;
    line-height: 1.8;
    margin-bottom: 8px;
}

.modal-detail-item {
    padding: 16px 0;
    border-top: 1px solid #eef3f7;
}

.modal-detail-item:first-child {
    border-top: 0;
}

.modal-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #00a8e8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.modal-detail-item h4 {
    font-size: 16px;
    color: #18384a;
    margin-bottom: 10px;
}

.modal-detail-item p {
    font-size: 14px;
    color: #5d6770;
    line-height: 1.8;
    margin-bottom: 10px;
}

.facts-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.fact-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98));
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.fact-card h3 {
    font-size: 12px;
    color: #0077b6;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fact-card p {
    color: #4c5b66;
    font-size: 15px;
    line-height: 1.8;
}

.cta-strip {
    margin-top: 28px;
    position: relative;
    padding: 28px 26px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(0, 95, 138, 0.96), rgba(0, 119, 182, 0.92) 56%, rgba(0, 168, 232, 0.88));
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.cta-strip::after {
    content: '';
    position: absolute;
    right: -54px;
    bottom: -68px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.cta-strip h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-strip p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.cta-strip .btn-detail {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    position: relative;
    z-index: 1;
}

.topic-cluster {
    margin-top: 32px;
}

.topic-cluster-head {
    margin-bottom: 18px;
}

.topic-cluster-head h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 8px;
}

.topic-cluster-head p {
    font-size: 0.96rem;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 860px;
}

.topic-grid {
    display: grid;
    gap: 20px;
}

.topic-card {
    position: relative;
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 255, 0.96));
    border: 1px solid rgba(159, 190, 214, 0.34);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.topic-card::after {
    content: '';
    position: absolute;
    right: -54px;
    top: -54px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 232, 0.14), rgba(0, 168, 232, 0));
    pointer-events: none;
}

.topic-card-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 119, 182, 0.09);
    color: #0077b6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.topic-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.28rem;
    color: var(--text);
    margin: 16px 0 12px;
    line-height: 1.35;
}

.topic-card p {
    position: relative;
    z-index: 1;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.topic-card ul {
    position: relative;
    z-index: 1;
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
    padding-left: 0;
}

.topic-card li {
    position: relative;
    padding-left: 18px;
    color: #51616c;
    font-size: 0.93rem;
    line-height: 1.7;
}

.topic-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb347, #f77f00);
}

.topic-card .btn-detail {
    position: relative;
    z-index: 1;
}

.detail-link-list li span {
    display: block;
    margin-top: 6px;
    color: #6a7985;
    font-size: 0.88rem;
    line-height: 1.75;
}

.detail-link-list li a {
    font-weight: 700;
}

.news-modal {
    background: rgba(7, 27, 45, 0.72);
    backdrop-filter: blur(10px);
}

.news-modal-content {
    position: relative;
    width: 100%;
    margin: 20px auto;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 255, 0.98));
    border-radius: 28px;
    max-width: 720px;
    box-shadow: 0 36px 70px rgba(6, 33, 55, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.news-modal-close {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    background: rgba(9, 37, 62, 0.68);
    backdrop-filter: blur(8px);
}

.news-modal-content img {
    height: 300px;
}

.news-modal-content h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    color: var(--text);
    padding: 24px 28px 12px;
    line-height: 1.3;
}

.news-modal-content .modal-date {
    font-size: 13px;
    color: var(--text-soft);
    padding: 0 28px 16px;
}

.news-modal-content .modal-body {
    padding: 0 28px 28px;
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.9;
}

.news-modal-content .modal-body p {
    margin-bottom: 16px;
}

.news-modal-content .btn-detail {
    margin: 0 28px 28px;
}

.contact-card.line {
    background: linear-gradient(135deg, #00b900 0%, #00c964 100%);
    color: #fff;
}

.legal-meta {
    margin-top: 26px;
    font-size: 13px;
    color: #6b7b87;
    line-height: 1.8;
}

@keyframes driftGlow {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(12px, -10px, 0) scale(1.06);
    }
}

@media screen and (min-width: 768px) {
    .facts-grid,
    .highlight-grid,
    .contact-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    }

    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-shell {
        grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
        align-items: start;
    }

    .detail-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .detail-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .archive-news-card:first-child {
        grid-column: span 2;
    }

    .page-header-content {
        padding-right: 80px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Responsive Adjustments */
@media screen and (min-width: 768px) {
    .services {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .news-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .contact-methods {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-method {
        flex: 1;
        min-width: 200px;
    }
}

@media screen and (min-width: 1024px) {
    .services {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .facts-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .topic-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .archive-news-card:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .header-container {
        padding: 10px 16px;
    }

    .page-header {
        min-height: 210px;
        padding: 82px 18px 26px;
    }

    .page-header-content {
        text-align: center;
        padding: 12px 0;
    }

    .page-header-content h1::after {
        left: 50%;
        transform: translateX(-50%);
        width: 92px;
    }

    .breadcrumb,
    .company-section,
    .service-section,
    .news-section,
    .contact-section,
    .detail-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .page-title {
        text-align: center;
    }

    .page-intro-panel {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .page-intro-panel p {
        font-size: 0.95rem;
    }

    .info-row {
        flex-direction: column;
    }

    .info-label {
        width: 100%;
        padding: 14px 16px 8px;
        background: transparent;
    }

    .info-value {
        padding: 0 16px 16px;
    }

    .cta-strip {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .cta-strip .btn-detail {
        width: 100%;
    }

    .detail-hero-body,
    .detail-section-card,
    .detail-sidebar-card {
        padding: 22px 20px;
    }

    .detail-cover {
        min-height: 220px;
    }

    .detail-hero-body h2 {
        font-size: 1.75rem;
    }

    .detail-metric {
        padding: 16px 18px;
    }

    .archive-media,
    .news-image,
    .news-modal-content img {
        height: 220px;
    }

    .news-modal-content {
        border-radius: 22px;
    }

    .news-modal-content h2,
    .news-modal-content .modal-date,
    .news-modal-content .modal-body,
    .news-modal-content .btn-detail {
        padding-left: 20px;
        padding-right: 20px;
    }

    .news-modal-content .btn-detail {
        margin-left: 20px;
        margin-right: 20px;
        width: calc(100% - 40px);
    }

    .contact-qr-dialog {
        padding: 24px 20px;
    }

    .contact-qr-image-shell {
        width: min(100%, 220px);
        height: min(100%, 220px);
    }

    .contact-qr-action {
        width: 100%;
    }
}

/* News Modal */
.news-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.news-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-modal-close {
    position: absolute;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.news-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.news-modal-content img {
    width: 100%;
    object-fit: cover;
}

.news-modal-content .btn-detail {
    display: block;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .contact-form .iti input.iti__tel-input {
        font-size: 16px;
    }
}
