
:root {
    --background-light: #f5f8f8;
    --background-dark: #0f2320;
    --text-dark: #1A1A1A;
    --text-slate: #475569;
    --bg-white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-theme);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

h1, h2, h3, h4, h5, .font-display {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;    
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-gold {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-gold:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-white-outline {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-white-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

.pc-only {
    display: block;
}

@media (max-width: 768px) {
    .pc-only {
    display: none !important;
    }
}

.address-mobile {
    display: none;
}

@media (max-width: 991px) {
    .top-bar-left .address-pc {
        display: none !important;
    }
    .top-bar-left .address-mobile {
        display: -webkit-box !important;
    }
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 12px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 16px;
}

.hotline {
    font-weight: 600;
    color: var(--secondary-color);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.lang-switch a {
    opacity: 0.7;
   
}
.lang-switch a:not(:first-child) {
    padding-left:10px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.lang-switch a.active {
    opacity: 1;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 76, 64, 0.1);
    padding: 8px 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Fallback for browsers that don't support sticky */
@supports not (position: sticky) {
    header {
        position: fixed;
    }
}

header.is-sticky {
    padding: 5px 0;
    position: fixed;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    a{
        display: flex;
        align-items: center;
        gap: 15px;
    }
}

.logo-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-slogan {
    font-size: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 76, 64, 1);
    text-transform: uppercase;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 1001;
}

.menu-toggle .close-icon {
    display: none;
}

.menu-toggle.active .menu-icon {
    display: none;
}

.menu-toggle.active .close-icon {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-mobile {
    display: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 76, 64, 0.9) 0%, rgba(0, 76, 64, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title-box {
    border-left: 4px solid var(--secondary-color);
    padding-left: 30px;
}

.hero-title {
    color: white;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.8;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* About Us */
.about {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 80px;
    align-items: start;
}

.about-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid var(--secondary-color);
    border-right: 2px solid var(--secondary-color);
}

.about-img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    /*filter: grayscale(100%);*/
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-image-wrapper:hover .about-img {
    filter: grayscale(0);
}

.lawyer-tag {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: rgba(0, 76, 64, 0.95);
    padding: 20px 30px;
    color: white;
    border-left: 4px solid var(--secondary-color);
}

.lawyer-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.lawyer-title {
    color: var(--secondary-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-tag {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-text {
    color: var(--text-slate);
    font-size: 18px;
    line-height: 1.6;
}

.about-description {
    position: relative;
    margin-bottom: 20px;
}

.about-grid:not(.is-expanded) .about-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-toggle-about {
    border: none;
    background: none;
    color: var(--secondary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    margin-top: 10px;
    padding: 0;
    font-size: 16px;
    transition: var(--transition);
}

.btn-toggle-about:hover {
    color: var(--primary-color);
}

/* PC Wrap Layout when expanded */
@media (min-width: 992px) {
    .about-grid.is-expanded {
        display: block;
    }

    .about-grid.is-expanded .about-image-wrapper {
        float: left;
        width: 45%;
        margin-right: 50px;
        margin-bottom: 30px;
    }

    .about-grid.is-expanded .about-content {
        display: block;
    }

    .about-grid.is-expanded::after {
        content: "";
        display: table;
        clear: both;
    }
}

.about-stats {
    display: flex;
    gap: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 76, 64, 0.1);
    margin-bottom: 40px;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 600;
}

.stat-item p {
    color: #94a3b8;
    font-size: 14px;
}

.about-action {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
}

.about-action:hover span {
    transform: translateX(10px);
}

.about-action span {
    transition: var(--transition);
}

/* Practice Areas */
.practice {
    padding: 60px 0;
    background-color: var(--background-light);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.title-line {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 20px auto 0;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.practice-card {
    background-color: white;
    padding: 20px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.practice-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.card-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(0, 76, 64, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: var(--transition);
}

.practice-card:hover .card-icon {
    background-color: var(--primary-color);
    color: white;
}

.card-icon i {
    font-size: 32px;
}

.practice-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.practice-card p {
    color: var(--text-slate);
    font-size: 15px;
    margin-bottom: 25px;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
}

.card-link i {
    font-size: 16px;
    transition: var(--transition);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Workflow */
.workflow {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.workflow-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(197, 160, 89, 0.5), transparent);
    z-index: 0;
}

.workflow-item {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-icon {
    width: 100px;
    height: 100px;
    background-color: var(--background-dark);
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.workflow-item:hover .step-icon {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.step-icon i {
    font-size: 36px;
}

.workflow-item h4 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.workflow-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-action {
    display: inline-block;
    padding: 6px 15px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.step-action:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.step-note {
    font-size: 11px;
    font-style: italic;
    color: var(--secondary-color);
}

/* Team */
.team {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
}

.team-img-box {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 76, 64, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-overlay p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 20px;
}

.team-overlay span {
    color: var(--secondary-color);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
}

.team-card .role {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* News */
.news {
    padding: 40px 0;
    background-color: var(--background-light);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}
.news .section-title{
    margin-bottom: 0;
}
.news-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    margin:20px auto 0;
    padding: 12px 35px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    width: fit-content;
    transition: all 0.3s ease;
    background: white;
    text-transform: uppercase;
    font-size: 14px;
}

.news-action:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 76, 64, 0.2);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.news-img-box {
    height: 220px;
    overflow: hidden;
}

.news-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img-box img {
    transform: scale(1.1);
}

.news-content {
    padding: 30px;
}

.news-cat {
    color: var(--secondary-color);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.news-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card p {
    color: var(--text-slate);
    font-size: 14px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-next {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 12px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 25px 0 15px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.4fr;
    gap: 15px;
    margin-bottom: 15px;
}

.office-item {
    margin-bottom: 20px;
}

.office-item:last-child {
    margin-bottom: 0;
}

.office-item h4 {
    margin-bottom: 20px !important;
    color: white !important;
    font-size: 20px !important;
}

.footer-logo-area {
    margin-bottom: 25px;
}

.footer-slogan {
    font-size: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
    display: block;
}

.social-links-v2 {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-btn img {
    width: 32px;
    height: 32px;
}

.social-item i {
    font-size: 16px;
}

.footer-col h4 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
    align-items: flex-start;
}
.contact-list li:last-child{
    margin-bottom: 0;
}
.contact-list i {
    font-size: 20px;
    color: var(--secondary-color);
}

.footer-map-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-bottom: 15px;
}

.map-item {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.map-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.map-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    pointer-events: none;
}

@media (max-width: 480px) {
    .footer-map-grid {
        gap: 8px;
    }
    .map-item {
        height: 110px;
        border-radius: 8px;
    }
    .map-label {
        font-size: 10px;
        padding: 5px 0;
    }
    .office-item h4{font-size: 16px !important;}
}

.footer-bottom {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    p{
    color: rgba(255, 255, 255, 0.4);
    }
}

.bottom-links {
    display: flex;
    gap: 30px;
}

.bottom-links a:hover {
    color: var(--secondary-color);
}

/* Material Symbols Outlined Fallback */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined', 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Responsive */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 20px; }
    .practice-grid { grid-template-columns: repeat(2, 1fr); }
    .workflow-grid { grid-template-columns: repeat(2, 1fr); }
    .workflow-line { display: none; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .social-links-v2 { justify-content: flex-start; }
    .contact-list li { text-align: left; }
}

@media (max-width: 991px) {
    .top-bar { display: block !important; padding: 6px 0; background: var(--primary-color); }
    .top-bar-left { width: 100%; gap: 8px; }
    .top-bar-left span { color: white; opacity: 0.9; display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.logo-icon {
    width: 60px;
    height: 60px;
}
.about, .practice, .news, .workflow, .team{
    padding: 30px 0;
}
.lang-switch { border-left:0}
    .top-bar .info-item i { color: var(--secondary-color);}
    .top-bar .top-bar-right .info-item { display: none;}
    header { 
        padding: 8px 0; 
        top: 0 !important; 
        background: #fff; 
        z-index: 1001; 
        box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
        width: 100%; 
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        transform: translateX(100%);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .nav-menu a {
        font-size: 24px;
    }

    .menu-toggle {
        display: block;
    }

    header .btn-gold {
        display: none; /* Hide button to fit logo and toggle */
    }
}

.about-header-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-title, .section-title { font-size: 28px; }
    .practice-grid { grid-template-columns: 1fr; }
    .workflow-grid { grid-template-columns: 1fr; }
    .team-grid, .news-grid { 
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-behavior: smooth;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        -webkit-scroll-snap-type: x mandatory;
        -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        gap: 20px;
        padding-bottom: 25px; /* Added more space for shadows */
    }
    .team-grid::-webkit-scrollbar, .news-grid::-webkit-scrollbar {
        display: none;
    }
    .team-card, .news-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
   .section-header-center, .news-header{
    margin-bottom: 20px;
    flex-wrap: wrap;
   }
   .section-tag{
    margin-bottom: 10px;
   }
   .news-header .section-title{
    font-size: 22px;
   }
   .news-card h3{
    font-size: 19px;
   }
   .news-content {
    padding: 15px;
}
    /* .top-bar { display: none; } */ /* Removed to show top bar */
    .top-bar span { font-size: 10px; line-height: 1.2; }
    
    .footer-bottom p{ text-align: center; }
    .footer-bottom .container { flex-direction: column; gap: 10px; padding:0 }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Hero Mobile */
    .hero { height: auto; aspect-ratio: 1 / 1; }
    .hero-pc { display: none; }
    .hero-mobile { display: block; object-fit: cover; }
    .hero-title { font-size: 28px; line-height: 1.3; }
    .hero-subtitle { font-size: 14px; margin-bottom: 25px; }

    /* About Mobile */
    .about-header-mobile {
        display: block;
        margin-bottom: 20px;
    }
    .about-img {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .about-grid {
        gap: 20px;
    }
    .about-content{
        margin-bottom: 20px;
    }
    .about-content p{
        line-height: 1.3;
    }
    .about-content .section-tag, .about-content .section-title{
        display: none;
    }
    .about-image-wrapper {
        transform: scale(0.9);
    }
}

/* Sticky Hotline Mobile */
.sticky-hotline {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 10px 20px 10px 10px;
    border-radius: 50px;
    z-index: 1000;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.2);
    text-decoration: none;
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--secondary-rgb), 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(var(--secondary-rgb), 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--secondary-rgb), 0); }
}

@media (max-width: 768px) {
    .sticky-hotline { display: flex; }
}

.hotline-icon {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotline-text {
    display: flex;
    flex-direction: column;
}

.hotline-text span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 2px;
}

.hotline-text strong {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}
