/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Poppins:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* --- Global Styles & Variables --- */
:root {
    --primary-color: #0a4d8c; /* A professional blue */
    --secondary-color: #f97316; /* A vibrant, solid orange for accents */
    --dark-color: #264653; /* Dark teal/blue for backgrounds */
    --dark-color-alt: #1e3a4c; /* Slightly different dark for variation */
    --light-color: #ffffff;
    --text-color: #333;
    --text-color-light: #f1f5f9; /* Off-white for body text on dark bg */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* ADD THESE NEW VARIABLES */
    --dark-color-about: #264653; /* Original Dark Teal */
    --dark-color-products: #2a586b; /* Slightly lighter/bluer */
    --dark-color-services: #1e3a4c; /* Darker Navy */
    --dark-color-clients: #1a303d; /* Even darker for footer contrast */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}


/* =================================================================== */
/*  DESKTOP NAVIGATION BAR (FINAL CORRECTED VERSION)
/* =================================================================== */

/* --- A. Floating Navbar Container --- */
.navbar {
    position: fixed; 
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 900;
    border-radius: 10px;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.navbar--hidden {
    opacity: 0;
    transform: translateY(-150%);
    pointer-events: none;
}

/* --- B. Main Layout & Glass Effect --- */
.navbar .container {
    /* Glass Effect Styles */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 10px;

    /* THIS IS THE CORRECTED LAYOUT */
    display: flex;
    align-items: center;
    width: 100%;
}

/* --- C. Balancing the Three Main Sections --- */
.navbar .nav-menu,
.navbar .nav-logo-center {
    flex: 1; /* Each section (left, center, right) takes up equal space */
}

/* --- D. Aligning Links and Logo --- */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar .nav-menu:first-of-type {
    justify-content: flex-end; /* Pushes left links towards the logo */
}

.navbar .nav-menu:last-of-type {
    justify-content: flex-start; /* Pushes right links away from the logo */
}

.nav-logo-center {
    text-align: center;
    margin: 0 30px;
    flex-shrink: 0;
}
.nav-logo-center img {
    height: 50px;
    width: auto;
    vertical-align: middle;
}
.nav-logo-center:hover { text-decoration: none; }
.nav-logo { display: none; } /* Mobile logo, hidden on desktop */

/* --- E. Navigation Links & Items --- */
.nav-item {
    margin: 0 15px;
    position: relative;
}
.nav-link {
    color: var(--light-color);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    text-decoration: none;
}
.nav-item.active .nav-link {
    background-color: var(--secondary-color);
    color: var(--light-color) !important;
}
.dropdown-arrow {
    font-size: 0.7em;
    margin-left: 4px;
}

/* --- F. Language Switcher (The Main Fix) --- */
.navbar .lang-switcher {
    /* This pushes the switcher to the far right */
    margin-left: auto;
    /* Adds breathing room between "Contact" and the switcher */
    padding-left: 30px;
    display: flex;
    align-items: center;
    gap: 15px; /* Space between EN and 中文 */
}

/* Style the switcher links to match other nav links */
.navbar .lang-switcher a {
    color: var(--light-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease;
}
.navbar .lang-switcher a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}
.navbar .lang-switcher a.active {
    color: var(--secondary-color); /* Highlight active language */
}


/* --- Dropdown Menu (No changes needed) --- */
.navbar .nav-dropdown .dropdown-menu {
    display: block; opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; position: absolute;
    top: calc(100% + 15px); left: 50%; transform-origin: top center; background-color: var(--dark-color);
    list-style: none; min-width: 220px; border-radius: 6px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 8px 0; border: 1px solid #4a6a78;
}
.navbar .nav-dropdown .dropdown-menu::before {
    content: ''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
    border: 8px solid transparent; border-bottom-color: var(--dark-color);
}
.navbar .nav-dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0) translateX(-50%);
}
.navbar .dropdown-menu li a {
    color: var(--light-color); display: block; padding: 10px 20px; transition: background-color 0.2s ease;
}
.navbar .dropdown-menu li a:hover {
    background-color: var(--primary-color); color: var(--light-color); text-decoration: none;
}

/* ==========================================================================
   MOBILE NAVIGATION & SIDEBAR SYSTEM
   ========================================================================== */
.mobile-header { display: none; }
.sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 999; opacity: 0; visibility: hidden; transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out; }
.sidebar-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav-container { position: fixed; top: 0; left: -100%; width: 300px; max-width: 80%; height: 100%; z-index: 1000; background-color: var(--light-color); box-shadow: 2px 0 10px rgba(0,0,0,0.1); transition: left 0.35s ease-in-out; display: flex; flex-direction: column; }
.mobile-nav-container.active { left: 0; }
.sidebar-header { padding: 20px; border-bottom: 1px solid #e0e0e0; flex-shrink: 0; }
.sidebar-logo-link img { height: 40px; width: auto; }
.mobile-nav-container .nav-menu-wrapper { overflow-y: auto; flex-grow: 1; }
.mobile-nav-container .nav-menu { display: flex; flex-direction: column; align-items: flex-start; padding: 10px 0; }
.mobile-nav-container .nav-item { width: 100%; margin: 0; border-bottom: 1px solid #f0f0f0; }
.mobile-nav-container .nav-item:last-child { border-bottom: none; }
.mobile-nav-container .nav-link { color: var(--dark-color); padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; width: 100%; font-weight: 500; }
.mobile-nav-container .nav-dropdown > .nav-link::after { content: '+'; font-size: 1.5rem; font-weight: 300; transition: transform 0.3s ease; }
.mobile-nav-container .nav-item.open > .nav-link::after { content: '−'; transform: rotate(180deg); }
.mobile-nav-container .dropdown-menu { display: none; position: static; background: #f8f8f8; box-shadow: none; padding-left: 20px; border: none; border-top: 1px solid #f0f0f0; opacity: 1; visibility: visible; transform: none; max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out; }
.mobile-nav-container .nav-item.open .dropdown-menu { display: block; max-height: 500px; }
.mobile-nav-container .dropdown-menu li a { color: #555; padding: 12px 20px; font-size: 0.95em; }
.mobile-nav-container .dropdown-arrow { display: none; }
.hamburger { display: none; cursor: pointer; padding: 10px; z-index: 1001; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--light-color); transition: all 0.3s ease-in-out; }
.side-hamburger { position: fixed; top: 25px; right: 25px; z-index: 1001; background-color: var(--dark-color); border: none; padding: 15px; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,0.2); cursor: pointer; opacity: 0; transform: scale(0.5); visibility: hidden; transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; }
.side-hamburger--visible { opacity: 1; transform: scale(1); visibility: visible; }
.side-hamburger .bar { background-color: var(--light-color); }
.hamburger.active .bar:nth-child(2), .side-hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(1), .side-hamburger.active .bar:n-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(3), .side-hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Hero Section --- */
.hero { background-image: url('/assets/images/home-background-v2.png'); background-repeat: no-repeat; background-position: center center; background-size: cover; height: 100vh; color: var(--light-color); display: flex; justify-content: center; align-items: center; text-align: center; padding: 0 20px; }
.hero-content { max-width: 800px; }
.hero-content h1, .hero-content p { color: var(--light-color); }
.hero h1 { font-size: 3.5rem; font-weight: 700; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn { display: inline-block; padding: 12px 28px; border-radius: 50px; text-align: center; transition: all 0.3s ease; font-weight: bold; border: none; cursor: pointer; font-family: var(--font-body); }
.btn:hover { text-decoration: none; transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-primary { background-color: var(--secondary-color); color: var(--dark-color); }
.btn-primary:hover { background-color: #ea580c; color: var(--dark-color); }
.btn-secondary { background-color: var(--primary-color); color: var(--light-color); }
.btn-secondary:hover { background-color: #083b6d; color: var(--light-color); }

/* --- Page Sections --- */
.page-section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.8rem; margin-bottom: 40px; color: var(--dark-color); }
.section-title--left { text-align: left; font-size: 2.5rem; color: var(--dark-color); margin-bottom: 1.5rem; }

/* --- Hero Animation --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.anim-delay-1 { animation-delay: 0.2s; }
.anim-delay-2 { animation-delay: 0.4s; }

/* --- Reusable Scrollytelling Section Styles (Two-Column) --- */
.scrolly-section-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding-top: 2rem; }
.scrolly-sticky-visuals { position: sticky; top: 15vh; height: 70vh; border-radius: 15px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.visual-panel { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transform: scale(1.05); transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out; z-index: 1; background-color: var(--light-color); }
.visual-panel.is-active { opacity: 1; transform: scale(1); z-index: 2; }
.visual-panel img { width: 100%; height: 100%; object-fit: cover; }
.scrolly-scroll-content .scrolly-step { min-height: 60vh; display: flex; flex-direction: column; justify-content: center; padding: 5vh 0; }
.scrolly-scroll-content .scrolly-step:last-child { padding-bottom: 20vh; }
.mobile-visual { display: none; }

/* ==========================================================================
   NEW: STICKY COLLAPSE EFFECT
   ========================================================================== */
.sticky-wrapper {
    position: relative;
    height: 300vh;
}
.sticky-wrapper > .page-section.scrolly-section {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
#about-us-refined { z-index: 1; }
#top-stories { z-index: 2; }
#services-scrolly { z-index: 3; }

/* ==========================================================================
   NEW: INVERTED SCROLLY LAYOUT FOR SERVICES SECTION
   ========================================================================== */
@media (min-width: 992px) {
    .scrolly-section-container--inverted .scrolly-sticky-visuals { grid-column: 1 / 2; }
    .scrolly-section-container--inverted .scrolly-scroll-content { grid-column: 2 / 3; }
}

/* ==========================================================================
   START: MODIFIED About Us Section (Full-bleed, Right-Image)
   ========================================================================== */
#about-us-refined { background-color: var(--dark-color-about); padding: 0; }
#about-us-refined .scrolly-title { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 5rem); font-weight: 700; color: var(--secondary-color); line-height: 1.1; margin-bottom: 2rem; }
#about-us-refined .scrolly-title span { font-style: italic; font-weight: 400; }
#about-us-refined .scrolly-content-item p { color: var(--text-color-light); font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; }
@media (min-width: 992px) {
    .scrolly-container--bleed-right { display: grid; grid-template-columns: 1fr 1fr; max-width: 100%; padding: 0; align-items: start; }
    .scrolly-container--bleed-right .scrolly-scroll-content { grid-column: 1 / 2; display: flex; justify-content: flex-end; align-items: center; min-height: 100vh; }
    .scrolly-container--bleed-right .scrolly-content-wrapper { max-width: 540px; width: 100%; padding: 0 4rem; }
    .scrolly-container--bleed-right .scrolly-sticky-visuals { grid-column: 2 / 3; position: sticky; top: 0; height: 100vh; border-radius: 0; box-shadow: none; }
    .scrolly-container--bleed-right .scrolly-sticky-visuals img { width: 100%; height: 100%; object-fit: cover; }
}

/* ==========================================================================
   THEMED: Products & Services Scrolly Sections
   ========================================================================== */
#top-stories { background-color: var(--dark-color-products); }
#services-scrolly { background-color: var(--dark-color-services); }
@media (min-width: 992px) {
    #top-stories .scrolly-sticky-visuals, #services-scrolly .scrolly-sticky-visuals { background-color: #111; }
}
#top-stories .scrolly-scroll-content, #services-scrolly .scrolly-scroll-content { display: flex; flex-direction: column; justify-content: center; padding-top: 5rem; padding-bottom: 5rem; }
#top-stories .stories-header, #services-scrolly .stories-header { padding: 0 1rem; position: relative; }
#top-stories .stories-title, #services-scrolly .stories-title { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 5rem); font-weight: 700; color: var(--secondary-color); line-height: 1.1; }
#top-stories .stories-title span, #services-scrolly .stories-title span { font-style: italic; font-weight: 400; }
#top-stories .stories-counter, #services-scrolly .stories-counter { position: absolute; top: 0; right: 1rem; color: var(--text-color-light); opacity: 0.8; font-size: 1rem; }
#top-stories .btn-stories, #services-scrolly .btn-stories { display: none; }
#top-stories .scrolly-step, #services-scrolly .scrolly-step { min-height: 70vh; display: flex; align-items: center; padding: 2rem 1rem; }
#top-stories .story-item, #services-scrolly .story-item { max-width: 450px; }
#top-stories .story-source, #services-scrolly .story-source { font-size: 0.9rem; color: var(--text-color-light); opacity: 0.8; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
#top-stories .story-title, #services-scrolly .story-title { font-family: var(--font-heading); font-size: 1.75rem; color: var(--light-color); line-height: 1.4; margin-bottom: 1rem; font-weight: 500; }
#top-stories .story-date, #services-scrolly .story-date { font-size: 0.9rem; color: var(--text-color-light); opacity: 0.6; }
@media (min-width: 992px) {
    #top-stories .stories-header, #services-scrolly .stories-header { position: -webkit-sticky; position: sticky; top: 0; z-index: 10; background: transparent; -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); padding-top: 5rem; padding-bottom: 2rem; }
    #top-stories .scrolly-scroll-content, #services-scrolly .scrolly-scroll-content { padding-top: 0; }
}

/* ==========================================================================
   NEW: Contact Us CTA Section & All Other Sections Below
   (No changes were needed in the sections below this point)
   ========================================================================== */
#contact-us-cta { position: relative; padding: 100px 0; background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed; color: #fff; text-align: center; }
#contact-us-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); z-index: 1; }
#contact-us-cta .container { position: relative; z-index: 2; }
.contact-cta-box { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); padding: 40px; border-radius: 12px; max-width: 700px; margin: 0 auto; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.contact-cta-box .section-title { margin-bottom: 15px; color: #fff; }
.contact-cta-box p { font-size: 1.1rem; margin-bottom: 30px; line-height: 1.6; max-width: 550px; margin-left: auto; margin-right: auto; }
.contact-cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-whatsapp { background-color: #25D366; color: #fff; border: 2px solid #25D366; padding: 12px 30px; text-decoration: none; border-radius: 50px; font-weight: bold; display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.btn-whatsapp:hover { background-color: #1EBE57; border-color: #1EBE57; transform: translateY(-2px); text-decoration: none; color: #fff; }
.btn-whatsapp i { margin-right: 8px; font-size: 1.2rem; }
#contact-us-cta .btn-secondary { background-color: transparent; color: #fff; border: 2px solid #fff; }
#contact-us-cta .btn-secondary:hover { background-color: #fff; color: #333; }
.cta-dark-theme { background-color: var(--dark-color-services); padding: 100px 0; text-align: center; }
.cta-dark-theme .cta-content { max-width: 700px; margin: 0 auto; }
.cta-dark-theme h2 { color: var(--secondary-color); font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 3rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.cta-dark-theme p { color: var(--text-color-light); font-size: 1.1rem; margin-bottom: 2.5rem; opacity: 0.9; }
.page-header { background-color: var(--dark-color); color: var(--light-color); padding: 40px 0; text-align: center; }
.page-header h1 { font-size: 2.8rem; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.product-card { background: var(--light-color); border: 1px solid #ddd; border-radius: 5px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.product-card img { width: 100%; height: 200px; object-fit: cover; }
.product-card-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.product-card-content h3 { color: var(--primary-color); }
.product-card-content p { flex-grow: 1; margin-bottom: 20px; }
.product-detail-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.product-detail-image img { width: 100%; border-radius: 5px; }
.product-detail-content h1 { color: var(--primary-color); margin-top: 0; }
.product-description { font-size: 1.1em; margin-bottom: 20px; }
.product-detail-content ul { list-style-position: inside; margin-bottom: 30px; }
.product-detail-content ul li { margin-bottom: 8px; }
.not-found { text-align: center; padding: 50px 0; }
.company-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: center; margin-bottom: 60px; }
.company-intro__image img { width: 100%; border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.company-intro__text h2 { color: var(--primary-color); }
.company-intro__text p { margin-bottom: 1em; color: #555; }
.section-divider { border: 0; height: 1px; background: #e0e0e0; margin: 60px 0; }
.capabilities h2 { text-align: center; margin-bottom: 30px; }
.capabilities-list { color: #555; column-count: 2; column-gap: 40px; text-align: justify; }
.cta-section { background-color: #f8f9fa; text-align: center; padding: 40px; border-radius: 8px; margin-top: 60px; }
.cta-section h3 { color: var(--primary-color); }
.cta-section p { margin-bottom: 20px; }
.site-footer { background-color: #f8f9fa; color: var(--text-color); padding: 80px 0 30px; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { display: inline-block; margin-bottom: 25px; }
.footer-logo img { max-width: 150px; height: auto; }
.footer-contact-details p { margin-bottom: 20px; line-height: 1.7; }
.footer-contact-details a { color: var(--primary-color); text-decoration: none; transition: color 0.3s ease; }
.footer-contact-details a:hover { color: var(--secondary-color); text-decoration: none; }
.footer-social-icons { display: flex; gap: 15px; margin-top: 10px; }
.footer-social-icons a { color: var(--dark-color); background-color: #e9ecef; width: 40px; height: 40px; border-radius: 50%; display: flex; justify-content: center; align-items: center; text-decoration: none; transition: background-color 0.3s ease, color 0.3s ease; }
.footer-social-icons a:hover { background-color: var(--primary-color); color: var(--light-color); }
.footer-social-icons i { font-size: 1.1rem; }
.footer-column h4 { margin-bottom: 20px; color: var(--dark-color); font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column a { color: var(--text-color); text-decoration: none; transition: color 0.3s ease; }
.footer-column a:hover { color: var(--secondary-color); text-decoration: none; }
.footer-bottom { text-align: center; border-top: 1px solid #dee2e6; padding-top: 30px; font-size: 0.9em; opacity: 0.7; }
@media (max-width: 991px) {
    .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-identity { text-align: center; }
    .footer-social-icons { justify-content: center; }
}
@media (max-width: 991px) {
    .navbar { display: none; }
    .side-hamburger { display: none !important; }
    .mobile-header { display: flex; justify-content: space-between; align-items: center; background: var(--dark-color); padding: 15px 20px; position: sticky; top: 0; z-index: 950; }
    .mobile-header .nav-logo { display: block; color: var(--light-color); font-size: 1.5rem; font-weight: bold; }
    .mobile-header .hamburger { display: block; }
    .section-title--left { text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .scrolly-section-container { grid-template-columns: 1fr; padding: 0 20px; }
    .scrolly-sticky-visuals { display: none; }
    .scrolly-scroll-content .scrolly-step { min-height: auto; padding: 40px 0; text-align: center; align-items: center; }
    .mobile-visual { display: block; width: 100%; height: auto; max-height: 350px; object-fit: cover; border-radius: 10px; margin-bottom: 1.5rem; }
    .scrolly-scroll-content .scrolly-step h2, .scrolly-scroll-content .scrolly-step h3 { text-align: center; }
    #about-us-refined .scrolly-header, #about-us-refined .scrolly-step { text-align: left; }
    #about-us-refined .scrolly-section-container { padding: 0 20px; }
    #about-us-refined { padding: 80px 0; }
    #top-stories .stories-header, #services-scrolly .stories-header { text-align: left; margin-bottom: 2rem; }
    #top-stories .scrolly-step, #services-scrolly .scrolly-step { text-align: left; align-items: flex-start; padding: 0 1rem 3rem 1rem; }
    #top-stories .stories-counter, #services-scrolly .stories-counter { right: 1.5rem; }
    .product-detail-layout { grid-template-columns: 1fr; }
    .company-intro { grid-template-columns: 1fr; gap: 30px; }
    .capabilities-list { column-count: 1; }
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: 50px; }
.service-item { text-align: center; padding: 20px; }
.service-icon { margin-bottom: 20px; }
.service-icon i { font-size: 3.5rem; color: var(--primary-color); transition: transform 0.3s ease; }
.service-item:hover .service-icon i { transform: scale(1.1) translateY(-5px); }
.service-description { font-size: 1rem; line-height: 1.7; color: #555; }
.content-layout--sticky-left { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.sticky-image-pane { position: -webkit-sticky; position: sticky; top: 120px; max-height: calc(100vh - 140px); }
.sticky-image-pane img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; box-shadow: 0 15px 30px rgba(40, 40, 60, 0.1); }
.scrolling-content-pane { padding-top: 2rem; padding-bottom: 2rem; }
.scrolling-content-pane .content-block { margin-bottom: 4rem; }
@media (max-width: 991px) {
    .content-layout--sticky-left { grid-template-columns: 1fr; }
    .sticky-image-pane { position: static; height: auto; max-height: 400px; margin-bottom: 2rem; }
}
.team-intro-text { text-align: center; max-width: 800px; margin: 0 auto 60px auto; }
.team-intro-text p { font-size: 1.1rem; color: #555; line-height: 1.7; }
.management-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 60px; }
.team-member-card { background-color: var(--light-color); border: 1px solid #e0e0e0; border-radius: 8px; padding: 30px 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; align-items: center; }
.team-member-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.member-name { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 0.5rem; }
.member-title { font-size: 0.95rem; color: #666; line-height: 1.5; }
.team-conclusion-text { text-align: center; max-width: 750px; margin: 0 auto; font-size: 1.1rem; font-style: italic; color: #444; border-top: 1px solid #eee; padding-top: 40px; }
.section-header-centered { text-align: center; max-width: 850px; margin: 0 auto 60px auto; }
.section-header-centered p { font-size: 1.1rem; color: #555; line-height: 1.7; }
.associates-list { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.associate-card { background-color: #ffffff; border-radius: 12px; padding: 35px 40px; border: 1px solid #e7eaf3; box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.associate-card:hover { transform: translateY(-5px); box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08); }
.associate-card h3 { color: var(--primary-color); font-size: 1.5rem; margin-bottom: 1rem; }
.associate-card p { color: #444; line-height: 1.8; margin-bottom: 1.5rem; }
.btn-visit-site { display: inline-block; color: var(--primary-color); border: 1px solid var(--primary-color); padding: 8px 20px; border-radius: 50px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; }
.btn-visit-site:hover { background-color: var(--primary-color); color: var(--light-color); text-decoration: none; }
.btn-visit-site i { margin-left: 8px; font-size: 0.8em; }
#products-showcase { background-color: #f8f9fa; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.product-card { background-color: var(--light-color); border-radius: 15px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); }
.product-image-container { height: 250px; width: 100%; overflow: hidden; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease-out; }
.product-card:hover img { transform: scale(1.05); }
.product-card-content { padding: 25px 30px 30px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.product-card-content h3 { color: var(--primary-color); font-size: 1.5rem; margin-bottom: 1rem; }
.product-card-content p { color: #555; line-height: 1.7; margin-bottom: 1.5rem; flex-grow: 1; }
.product-card-content .btn { margin-top: auto; width: fit-content; }
header .navbar { opacity: 1; transform: translate(-50%, 0); transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: auto; }
.side-hamburger { opacity: 0; transform: scale(0.8); transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none; }
header .navbar.navbar--hidden { opacity: 0; transform: translate(-50%, -150%); pointer-events: none; }
.side-hamburger.side-hamburger--visible { opacity: 1; transform: scale(1); pointer-events: auto; }
@media (max-width: 991px) {
    header .navbar, .side-hamburger { display: none !important; }
}
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid #4a5568; }
.visitor-count { color: #0A4D8C; font-size: 14px; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 8px; }
.visitor-count i.fa-eye { color: #F4A261; font-size: 16px; }
@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; gap: 10px; }
}