/* Custom Local Fonts */
@font-face {
    font-family: 'SVN-Mont';
    src: url('../fonts/SVN-MontBold.woff2') format('woff2'),
         url('../fonts/SVN-MontBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SVN-Mont';
    src: url('../fonts/SVN-Mont.woff2') format('woff2'),
         url('../fonts/SVN-Mont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue.woff2') format('woff2'),
         url('../fonts/HelveticaNeue.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   BẢO TÍN MEDIA - CRAFTED HUMAN AGENCY DESIGN SYSTEM
   ========================================================================== */

:root {
    --brand-blue: #0976f2;
    --brand-blue-dark: #075bbd;
    --brand-navy: #0c2340;
    --brand-gold: #d4af37;
    
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #475569;
    
    --font-heading: 'SVN-Mont', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'SVN-Mont', 'Helvetica Neue', sans-serif;
    
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* FontAwesome Protection */
.fa, .fas, .fa-solid, .far, .fa-regular, .fab, .fa-brands, [class^="fa-"], [class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1.25;
}

a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--brand-blue-dark);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   UNIVERSAL GLASS SHINE / MIRROR SHEEN SWEEP EFFECT ON HOVER
   ========================================================================== */
.img-shine-effect,
.service-card-img,
.project-thumb-clean,
.partner-logo-item,
.sec-about-img-wrap,
.entry-thumb-wrap,
.post-thumbnail,
.wp-post-image {
    position: relative;
    overflow: hidden;
}

.img-shine-effect::after,
.service-card-img::after,
.project-thumb-clean::after,
.partner-logo-item::after,
.sec-about-img-wrap::after,
.entry-thumb-wrap::after,
.post-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 6;
    transition: none;
}

.img-shine-effect:hover::after,
.service-card-img:hover::after,
.project-thumb-clean:hover::after,
.partner-logo-item:hover::after,
.sec-about-img-wrap:hover::after,
.entry-thumb-wrap:hover::after,
.post-thumbnail:hover::after {
    left: 160%;
    transition: left 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Buttons */
.btn-agency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-agency-primary {
    background: var(--brand-blue);
    color: #ffffff;
}

.btn-agency-primary:hover {
    background: var(--brand-blue-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(9, 118, 242, 0.3);
}

.btn-agency-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-agency-outline:hover {
    background: #ffffff;
    color: var(--brand-navy);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Clean Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999999 !important;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.main-navigation-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 82px;
}

.site-logo img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
}

.site-menu-nav {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.primary-menu > li {
    position: relative;
}

.primary-menu > li > a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--brand-navy);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 6px;
    transition: var(--transition);
}

.primary-menu > li:hover > a,
.primary-menu > li.current-menu-item > a {
    color: var(--brand-blue);
    background: rgba(9, 118, 242, 0.08);
}

/* Submenu Chevron Indicators */
.primary-menu > li.menu-item-has-children > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 0.7rem;
    margin-left: 7px;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.primary-menu > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

.primary-menu .sub-menu li.menu-item-has-children > a::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 0.7rem;
    margin-left: auto;
    opacity: 0.6;
}

/* LEVEL 2 SUBMENU DROPDOWN (Clean 1-Column List) */
.primary-menu > li > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 290px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e2e8f0;
    display: block;
    z-index: 1100;
}

.primary-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu li {
    position: relative;
    list-style: none;
}

.primary-menu .sub-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 0.88rem;
    text-transform: none;
    font-weight: 600;
    color: var(--brand-navy);
    transition: all 0.2s ease;
}

.primary-menu .sub-menu li:hover > a {
    color: var(--brand-blue);
    background: #f8fafc;
    padding-left: 24px;
}

/* LEVEL 3 FLYOUT SUBMENU (Opens to the Right) */
.primary-menu .sub-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 260px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e2e8f0;
    z-index: 1200;
    display: block;
}

.primary-menu .sub-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.primary-menu .sub-menu .sub-menu a {
    font-size: 0.84rem;
    font-weight: 500;
    color: #475569;
    padding: 8px 18px;
}

.primary-menu .sub-menu .sub-menu a:hover {
    color: var(--brand-blue);
    background: #f1f5f9;
}

/* Header Action & Animated Vibrating Hotline Button */
.header-action-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Header Search Icon Button */
.header-search-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(9, 118, 242, 0.08);
    border: 1px solid rgba(9, 118, 242, 0.2);
    color: var(--brand-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-search-btn:hover {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(9, 118, 242, 0.3);
}

/* Apple-style Frosted Glass Fullscreen Modal Search Overlay */
.search-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(7, 22, 43, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal-overlay.active-search {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    width: 100%;
    max-width: 680px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal-overlay.active-search .search-modal-content {
    transform: scale(1);
}

.search-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.search-modal-close:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: rotate(90deg);
}

.search-modal-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
}

.search-form-modal {
    display: flex;
    gap: 12px;
    position: relative;
}

.search-input-modal {
    flex: 1;
    height: 56px;
    padding: 0 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    font-size: 1rem;
    font-family: var(--font-body), 'Plus Jakarta Sans', system-ui, sans-serif !important;
    color: #0f172a;
    outline: none;
    transition: all 0.3s ease;
}

.search-input-modal:focus {
    border-color: #00d2ff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    background: #ffffff;
}

.search-submit-btn {
    height: 56px;
    padding: 0 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0976f2 0%, #00d2ff 100%);
    color: #ffffff;
    font-family: var(--font-body), 'Plus Jakarta Sans', system-ui, sans-serif !important;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(9, 118, 242, 0.4);
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
}

.search-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(9, 118, 242, 0.6);
}

.search-hint {
    margin-top: 18px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.header-hotline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 24px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.35);
    transition: var(--transition);
    animation: phoneVibrate 2.6s ease-in-out infinite;
    text-decoration: none !important;
}

.header-hotline-btn i {
    font-size: 1.1rem;
}

.header-hotline-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.55);
    color: #ffffff !important;
}

@keyframes phoneVibrate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    4%, 12%, 20% { transform: rotate(-8deg) scale(1.05); }
    8%, 16%, 24% { transform: rotate(8deg) scale(1.05); }
    28% { transform: rotate(0deg) scale(1); }
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--brand-navy);
    cursor: pointer;
    padding: 8px;
}

/* ==========================================================================
   SECTION 1: HERO SECTION (AUTHENTIC CRAFTED MEDIA AGENCY HERO)
   ========================================================================== */
.agency-hero {
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 130px 0 140px;
    text-align: left;
    overflow: hidden;
}

/* Semi-transparent Overlay to ensure 100% Text Readability */
.agency-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 24, 48, 0.88) 0%, rgba(8, 24, 48, 0.72) 55%, rgba(8, 24, 48, 0.35) 100%);
    z-index: 1;
}

/* Glass Shine / Mirror Sheen Sweep Effect on Hero Hover */
.agency-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 65%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 3;
    transition: none;
}

.agency-hero:hover::after {
    left: 160%;
    transition: left 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.agency-hero .container {
    position: relative;
    z-index: 5;
}

.agency-hero-subtitle {
    font-size: 0.92rem;
    font-weight: 700;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    display: inline-block;
    padding: 5px 16px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 4px;
    border: 1px solid rgba(245, 158, 11, 0.4);
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.agency-hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    margin-bottom: 24px;
    max-width: 100%;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.agency-hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 900px;
    line-height: 1.75;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.agency-hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* SECTION HEADERS */
.agency-section-header {
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 55px;
}

.agency-section-subtitle {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.agency-section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--brand-navy);
}

/* SECTION 2: SERVICES GRID */
.sec-services {
    padding: 95px 0;
    background: var(--bg-light);
    border-bottom: 1px solid #e2e8f0;
}

.services-grid-impressive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card-impressive {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-impressive:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(9, 118, 242, 0.16);
    border-color: var(--brand-blue);
}

.service-card-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-impressive:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(12, 35, 64, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #f59e0b;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 4px;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.service-card-icon {
    position: absolute;
    bottom: -22px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: var(--brand-blue);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(9, 118, 242, 0.4);
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
}

.service-card-impressive:hover .service-card-icon {
    background: #dc2626;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.5);
    transform: rotate(6deg) scale(1.08);
}

.service-card-body {
    padding: 32px 26px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body h3 {
    font-size: 1.35rem;
    color: var(--brand-navy);
    margin-bottom: 12px;
    font-weight: 800;
}

.service-card-body p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card-link {
    font-weight: 700;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-blue);
    margin-top: auto;
    transition: all 0.25s ease;
}

.service-card-link i {
    transition: transform 0.25s ease;
}

.service-card-impressive:hover .service-card-link {
    color: var(--brand-blue-dark);
}

.service-card-impressive:hover .service-card-link i {
    transform: translateX(6px);
}

/* SECTION 3: ABOUT (COSMIC RISING STARDUST GALAXY THEME) */
.sec-about {
    padding: 110px 0;
    background: linear-gradient(135deg, #07162b 0%, #0c2340 50%, #051120 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border-top: 3px solid rgba(9, 118, 242, 0.4);
    border-bottom: 3px solid rgba(9, 118, 242, 0.4);
}

.sec-about .agency-section-title {
    color: #ffffff !important;
}

.sec-about .agency-section-subtitle {
    color: #f59e0b !important;
}

.sec-about p {
    color: rgba(255, 255, 255, 0.88) !important;
}

/* Floating Rising Stars Container */
.stars-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.star-particle {
    position: absolute;
    bottom: -20px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: riseAndTwinkle linear infinite;
}

.star-particle.cyan {
    background: #00d2ff;
    box-shadow: 0 0 10px #00d2ff, 0 0 20px #00d2ff;
}

.star-particle.gold {
    background: #f59e0b;
    box-shadow: 0 0 10px #f59e0b, 0 0 20px #f59e0b;
}

.star-particle.white {
    background: #ffffff;
    box-shadow: 0 0 8px #ffffff, 0 0 16px #ffffff;
}

@keyframes riseAndTwinkle {
    0% {
        transform: translateY(0) scale(0.3) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.95;
    }
    80% {
        opacity: 0.95;
    }
    100% {
        transform: translateY(-700px) scale(1.4) rotate(180deg);
        opacity: 0;
    }
}

.sec-about-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
}

.about-glow-orb-1 {
    position: absolute;
    top: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(9, 118, 242, 0.25) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    animation: orbFloat 10s ease-in-out infinite alternate;
}

.about-glow-orb-2 {
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    animation: orbFloat 12s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

.about-watermark-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    z-index: 1;
    animation: artisticFloat 12s ease-in-out infinite alternate;
}

.sec-about-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.sec-about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sec-about-img-wrap:hover img {
    transform: scale(1.06);
}

.about-experience-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(12, 35, 64, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
}

.about-experience-badge i {
    font-size: 2.2rem;
    color: #f59e0b;
}

.about-experience-badge div h4 {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
}

.about-experience-badge div span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-weight: 700;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0 32px;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 6px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(9, 118, 242, 0.6);
    background: rgba(9, 118, 242, 0.18);
    box-shadow: 0 15px 35px rgba(9, 118, 242, 0.25);
}

.about-stat-card h4 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.about-stat-card span {
    font-size: 0.74rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
    white-space: nowrap;
    display: block;
}

/* SECTION: VIDEO EMBED SHOWCASE */
.sec-video {
    padding: 105px 0;
    background: linear-gradient(135deg, #071629 0%, #030a14 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border-top: 4px solid var(--brand-blue);
    border-bottom: 1px solid #0f2847;
}

.sec-video .agency-section-title {
    color: #ffffff !important;
}

.sec-video .agency-section-subtitle {
    color: #f59e0b !important;
}

.video-showcase-grid {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 32px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .video-showcase-grid {
        grid-template-columns: 1fr;
    }
}

.video-main-player {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(9, 118, 242, 0.4);
    background: #000000;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.video-main-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-playlist-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-height: 415px;
}

.video-playlist-scroll {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 8px;
    overflow-y: auto;
    max-height: 345px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 210, 255, 0.6) rgba(255, 255, 255, 0.05);
}

/* Apple VisionOS / macOS Frosted Glass Glowing Scrollbar */
.video-playlist-scroll::-webkit-scrollbar {
    width: 6px;
}

.video-playlist-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.video-playlist-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0976f2 0%, #00d2ff 100%);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.video-playlist-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00d2ff 0%, #0976f2 100%);
    box-shadow: 0 0 16px rgba(0, 210, 255, 0.9);
}

.video-playlist-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 16px;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.video-playlist-card:hover {
    background: rgba(9, 118, 242, 0.18);
    border-color: rgba(9, 118, 242, 0.5);
    transform: translateX(6px);
}

/* Active Playing Video Card Running LED Border Effect */
.video-playlist-card.active-video {
    position: relative;
    background: rgba(9, 118, 242, 0.22) !important;
    border-color: transparent !important;
    box-shadow: 0 10px 30px rgba(9, 118, 242, 0.4);
    transform: translateX(4px);
}

.video-playlist-card.active-video::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0976f2 0%, #00d2ff 25%, #ef4444 50%, #00d2ff 75%, #0976f2 100%);
    background-size: 300% 300%;
    animation: activeLedRun 3.5s linear infinite;
    z-index: -1;
}

@keyframes activeLedRun {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.video-playlist-card.active-video .video-play-icon {
    background: #dc2626 !important;
    color: #ffffff !important;
    transform: scale(1.12);
    box-shadow: 0 0 16px rgba(220, 38, 38, 0.9);
}

.video-playlist-card.active-video .video-playlist-info span {
    color: #00d2ff !important;
    font-weight: 800;
}

.video-thumb-box {
    width: 120px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.video-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.25s ease;
}

.video-playlist-card:hover .video-play-icon {
    background: rgba(220, 38, 38, 0.8);
    color: #ffffff;
    transform: scale(1.1);
}

.video-playlist-info h4 {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 6px;
}

.video-playlist-info span {
    font-size: 0.82rem;
    color: #f59e0b;
    font-weight: 700;
    text-transform: uppercase;
}

/* SECTION 4: PROJECTS (LUXURY EVENT STAGE LIGHTING SHOWCASE) */
.sec-projects {
    padding: 105px 0;
    background: linear-gradient(135deg, #091a30 0%, #061122 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border-top: 4px solid var(--brand-blue);
    border-bottom: 1px solid #0f2847;
}

.sec-projects::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(9, 118, 242, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.sec-projects .agency-section-title {
    color: #ffffff !important;
}

.sec-projects .agency-section-subtitle {
    color: #f59e0b !important;
}

.projects-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.project-card-clean {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.project-card-clean:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(9, 118, 242, 0.25);
    border-color: rgba(9, 118, 242, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.project-thumb-clean {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.project-thumb-clean img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card-clean:hover .project-thumb-clean img {
    transform: scale(1.08);
}

.project-body-clean {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-body-clean h3 {
    font-size: 1.2rem;
    line-height: 1.45;
    font-weight: 700;
    margin-top: 4px;
}

.sec-projects .project-body-clean h3 a {
    color: #ffffff !important;
    transition: all 0.25s ease;
}

.sec-projects .project-card-clean:hover .project-body-clean h3 a {
    color: #38bdf8 !important;
}

/* SECTION: THI CÔNG QUẢNG CÁO */
.sec-advertising {
    padding: 95px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.sec-advertising .project-body-clean h3 a {
    color: #0c2340 !important;
    transition: all 0.25s ease;
}

.sec-advertising .adv-card-item:hover .project-body-clean h3 a {
    color: #0976f2 !important;
}

.adv-features-wrap {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.adv-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-navy);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.adv-feature-pill i {
    color: var(--brand-blue);
    font-size: 1.1rem;
}

.adv-feature-pill:hover {
    border-color: var(--brand-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(9, 118, 242, 0.12);
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.adv-card-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.adv-card-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(9, 118, 242, 0.14);
    border-color: var(--brand-blue);
}

/* SECTION 5: PARTNERS (INFINITE LOGO MARQUEE SHOWCASE) */
.sec-partners {
    padding: 85px 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 10;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-track {
    display: flex;
    gap: 22px;
    width: max-content;
    will-change: transform;
}

.marquee-track-left {
    animation: marqueeLeft 38s linear infinite;
}

.marquee-track-right {
    animation: marqueeRight 42s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.partner-logo-item {
    background: transparent;
    border-radius: 0;
    height: 90px;
    width: auto;
    min-width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: none;
    box-shadow: none;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.partner-logo-item:hover {
    transform: scale(1.12);
    box-shadow: none;
    border-color: transparent;
}

.partner-logo-item img {
    height: 75px;
    max-height: 80px;
    max-width: 220px;
    object-fit: contain;
    filter: none;
    opacity: 0.95;
    transition: all 0.35s ease;
    border-radius: 8px;
}

.partner-logo-item:hover img {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 8px 20px rgba(9, 118, 242, 0.25));
}

/* HIGH IMPACT VIBRANT CTA BANNER */
.cta-banner-vibrant {
    background: linear-gradient(135deg, #0976f2 0%, #0c2340 100%);
    color: #ffffff;
    padding: 95px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.2);
}

.cta-banner-vibrant::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-badge {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 800;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 6px 20px;
    background: rgba(12, 35, 64, 0.6);
    border-radius: 999px;
    border: 1px solid rgba(245, 158, 11, 0.4);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.cta-desc {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: 999px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: phoneVibrate 2.6s ease-in-out infinite;
}

.cta-btn:hover {
    transform: scale(1.06) translateY(-3px);
    box-shadow: 0 14px 35px rgba(220, 38, 38, 0.65);
}

/* SECTION 6: CONTACT (ARTISTIC FLOATING ICONS & RICH ICE-SLATE GRADIENT) */
.sec-contact {
    padding: 105px 0;
    background: linear-gradient(135deg, #e6effd 0%, #f1f5f9 50%, #e0e9f8 100%);
    border-top: 2px solid #cbd5e1;
    border-bottom: 2px solid #cbd5e1;
    position: relative;
    overflow: hidden;
}

.sec-contact .container {
    position: relative;
    z-index: 2;
}

.sec-contact .agency-section-title {
    color: var(--brand-navy) !important;
}

.sec-contact .agency-section-subtitle {
    color: var(--brand-blue) !important;
}

/* Artistic Random Floating Background Icons */
.contact-bg-icon {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    will-change: transform;
    animation: artisticFloat 7s ease-in-out infinite alternate;
}

.icon-pos-1 { top: 8%; left: 3%; font-size: 5.5rem; color: #0976f2; opacity: 0.12; transform: rotate(-15deg); animation-delay: 0s; }
.icon-pos-2 { top: 62%; left: 6%; font-size: 3.8rem; color: #f59e0b; opacity: 0.16; transform: rotate(20deg); animation-delay: 1.2s; }
.icon-pos-3 { top: 12%; left: 45%; font-size: 4.8rem; color: #0976f2; opacity: 0.10; transform: rotate(12deg); animation-delay: 2.5s; }
.icon-pos-4 { bottom: 8%; left: 40%; font-size: 6.2rem; color: #dc2626; opacity: 0.12; transform: rotate(-18deg); animation-delay: 0.8s; }
.icon-pos-5 { top: 10%; right: 4%; font-size: 7.2rem; color: #0976f2; opacity: 0.14; transform: rotate(15deg); animation-delay: 3s; }
.icon-pos-6 { bottom: 12%; right: 6%; font-size: 4.2rem; color: #f59e0b; opacity: 0.15; transform: rotate(-10deg); animation-delay: 1.8s; }
.icon-pos-7 { top: 48%; right: 2%; font-size: 3.5rem; color: #0976f2; opacity: 0.11; transform: rotate(28deg); animation-delay: 2.1s; }
.icon-pos-8 { top: 40%; left: 2%; font-size: 2.8rem; color: #0c2340; opacity: 0.13; transform: rotate(-8deg); animation-delay: 3.5s; }

@keyframes artisticFloat {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    50% { transform: translateY(-14px) scale(1.05) rotate(4deg); }
    100% { transform: translateY(8px) scale(0.98) rotate(-3deg); }
}

.contact-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 36px;
    align-items: stretch;
}

.contact-card-modern {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--text-dark);
    padding: 44px 36px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(12, 35, 64, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card-header {
    margin-bottom: 24px;
}

.contact-badge {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    padding: 5px 14px;
    background: rgba(9, 118, 242, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(9, 118, 242, 0.25);
}

.contact-card-header h3 {
    font-size: 2.1rem;
    color: var(--brand-navy);
    font-weight: 800;
    margin-top: 4px;
}

.contact-info-list {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(248, 250, 252, 0.9);
    padding: 15px 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

.contact-info-item:hover {
    background: #ffffff;
    border-color: var(--brand-blue);
    box-shadow: 0 6px 20px rgba(9, 118, 242, 0.12);
    transform: translateX(4px);
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0976f2 0%, #075bbd 100%);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 6px 15px rgba(9, 118, 242, 0.3);
    flex-shrink: 0;
}

.contact-info-text {
    font-size: 0.96rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-info-text strong {
    color: var(--brand-navy);
}

.contact-map-card {
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    box-shadow: 0 20px 45px rgba(12, 35, 64, 0.1);
    border: 3px solid #ffffff;
    position: relative;
    background: #ffffff;
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FOOTER */
.site-footer {
    background: var(--brand-navy);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
    font-size: 0.92rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 360px;
    gap: 45px;
    padding-bottom: 40px;
    border-bottom: none !important;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.18rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul a:hover {
    color: var(--brand-gold);
}

/* Animated Glowing Blue Light Border for Fanpage Box */
.fanpage-glowing-box {
    position: relative;
    border-radius: 14px;
    padding: 3px;
    background: linear-gradient(135deg, #0976f2 0%, #00d2ff 25%, #075bbd 50%, #00d2ff 75%, #0976f2 100%);
    background-size: 300% 300%;
    animation: blueGlowBorder 4s linear infinite;
    box-shadow: 0 10px 30px rgba(9, 118, 242, 0.4);
    width: 360px;
    max-width: 100%;
    margin: 0;
}

@keyframes blueGlowBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.fanpage-glowing-box-inner {
    border-radius: 11px;
    overflow: hidden;
    background: #ffffff;
    height: 220px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fanpage-glowing-box-inner iframe {
    width: 354px !important;
    max-width: 100% !important;
    height: 220px !important;
    border: none !important;
    display: block;
    margin: 0 auto;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* DYNAMIC FLOATING CONTACT BOX (LEFT SIDE) & RIPPLE WAVE EFFECT */
.floating-contact-box-left {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-box-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 1.3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
}

.contact-box-btn:hover {
    transform: scale(1.15) rotate(6deg);
    color: #ffffff !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.contact-box-btn::before,
.contact-box-btn .wave-ring {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--wave-color, inherit);
    opacity: 0.6;
    z-index: -1;
    animation: contactWavePulse 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    pointer-events: none;
}

.contact-box-btn .wave-ring {
    animation-delay: 1.2s;
}

@keyframes contactWavePulse {
    0% {
        transform: scale(0.88);
        opacity: 0.85;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/* APPLE FROSTED GLASS BACK TO TOP BUTTON (PURE & ELEGANT) */
.back-to-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.65) !important;
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
    font-size: 1.25rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(18px) !important;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
    pointer-events: none !important;
}

.back-to-top-btn.visible,
#backToTopBtn.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.back-to-top-btn:hover {
    background: rgba(9, 118, 242, 0.88) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    transform: translateY(-4px) scale(1.08) !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 14px 38px rgba(9, 118, 242, 0.55);
}

@media (max-width: 992px) {
    /* Mobile: Centered on the exact vertical center axis (Y=56px) of the contact buttons */
    .back-to-top-btn {
        bottom: 32px !important;
        right: 16px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 1.15rem !important;
        margin: 0 !important;
    }
}

@media (min-width: 993px) {
    .contact-box-btn.hide-on-pc,
    .back-to-top-btn.hide-on-pc,
    .submenu-toggle-btn,
    .mobile-menu-backdrop {
        display: none !important;
    }
}

/* MOBILE MENU BACKDROP OVERLAY (PURE TRANS-BLACK TINT, NO BLUR LEAK) */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.75);
    z-index: 999990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

body.mobile-menu-open {
    overflow: hidden !important;
}

@media (max-width: 992px) {
    .agency-hero-title { font-size: 2.2rem; }
    .primary-menu { display: none; }
    .mobile-toggle { display: block; }

    /* ULTRA-CRISP HIGH-CONTRAST MOBILE MENU DRAWER */
    .primary-menu.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        max-height: 75vh !important;
        overflow-y: auto !important;
        background: #0f172a !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 16px;
        padding: 14px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8) !important;
        z-index: 999999 !important;
        animation: appleMenuSlideDown 0.3s ease-out forwards;
    }

    @keyframes appleMenuSlideDown {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .primary-menu.active li {
        margin-bottom: 6px;
        width: 100%;
        list-style: none;
        position: relative;
    }

    .primary-menu.active li a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 14px 18px !important;
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        border-radius: 10px !important;
        transition: all 0.2s ease !important;
        background: #1e293b !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        text-decoration: none !important;
    }

    .primary-menu.active li a::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.8rem;
        color: #60a5fa !important;
        transition: transform 0.2s ease;
    }

    .primary-menu.active li a:hover,
    .primary-menu.active li.current-menu-item a,
    .primary-menu.active li.current_page_item a {
        background: #0976f2 !important;
        border-color: #60a5fa !important;
        color: #ffffff !important;
    }

    .primary-menu.active li a:hover::after,
    .primary-menu.active li.current-menu-item a::after {
        color: #ffffff !important;
        transform: translateX(4px);
    }

    /* Mobile Submenu: Clean Minimal Typography Tree (No Box-in-Box Clutter) */
    .primary-menu.active .sub-menu,
    .primary-menu.active .children {
        display: block !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: auto !important;
        list-style: none !important;
        margin: 4px 0 10px 14px !important;
        padding: 4px 0 4px 12px !important;
        background: transparent !important;
        border: none !important;
        border-left: 2px solid rgba(9, 118, 242, 0.45) !important;
        box-shadow: none !important;
    }

    .primary-menu.active .sub-menu li,
    .primary-menu.active .children li {
        margin-bottom: 2px !important;
        width: 100% !important;
        list-style: none !important;
        border: none !important;
        background: transparent !important;
    }

    .primary-menu.active .sub-menu li a,
    .primary-menu.active .children li a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 8px 12px !important;
        font-size: 0.94rem !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.82) !important;
        background: transparent !important;
        border: none !important;
        border-radius: 6px !important;
        box-shadow: none !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
    }

    .primary-menu.active .sub-menu li a::after,
    .primary-menu.active .children li a::after {
        display: none !important;
    }

    .primary-menu.active .sub-menu li a:hover {
        background: rgba(255, 255, 255, 0.06) !important;
        color: #60a5fa !important;
        padding-left: 16px !important;
    }

    /* Submenu Level 3 further indented with cyan accent line */
    .primary-menu.active .sub-menu .sub-menu,
    .primary-menu.active .children .children {
        margin-left: 10px !important;
        border-left: 2px solid rgba(0, 210, 255, 0.45) !important;
    }

    .primary-menu.active .sub-menu .sub-menu li a,
    .primary-menu.active .children .children li a {
        font-size: 0.9rem !important;
        color: rgba(255, 255, 255, 0.72) !important;
    }

    .contact-box-btn.hide-on-mobile {
        display: none !important;
    }

    /* Extra padding bottom for footer so floating buttons never cover content */
    .site-footer {
        padding-bottom: 100px !important;
    }
}

/* PAGE HEADER BANNER & BREADCRUMBS (CENTERED & CLEAN TEXT) */
.page-header-banner {
    background: linear-gradient(135deg, #0b1329 0%, #1e293b 50%, #075bbd 100%);
    position: relative;
    padding: 50px 0 45px 0;
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(9, 118, 242, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.page-breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.page-breadcrumb-nav a.breadcrumb-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.page-breadcrumb-nav a.breadcrumb-link:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 400;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.page-header-title {
    color: #ffffff;
    font-size: 2.3rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.25;
    letter-spacing: -0.3px;
    text-align: center;
}

.page-header-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0 auto;
    line-height: 1.6;
    max-width: 750px;
    text-align: center;
}

/* SINGLE POST META */
.single-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 12px;
    flex-wrap: wrap;
}

.single-post-meta a {
    color: #60a5fa;
    text-decoration: none;
}

.single-post-meta a:hover {
    text-decoration: underline;
}

/* 404 & SEARCH LAYOUTS */
.error-404-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.error-404-badge {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0976f2 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    /* Mobile Horizontal Clean Floating Row (No outer border/box) & Center Focal Button */
    .floating-contact-box-left {
        left: 50% !important;
        right: auto !important;
        bottom: 22px !important;
        transform: translateX(-50%);
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        gap: 18px;
        width: max-content;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 0 !important;
    }

    .contact-box-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        order: var(--mobile-order, 1) !important;
    }

    /* Mobile Focal Center Button (Larger & Prominent) */
    .contact-box-btn.is-mobile-focal {
        width: 68px !important;
        height: 68px !important;
        font-size: 1.75rem !important;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55) !important;
        margin: 0 2px;
        z-index: 2;
        order: var(--mobile-order, 2) !important;
    }
}

/* Extra Mobile Fine-Tuning for Small Screens (<= 576px) */
@media (max-width: 576px) {
    .site-logo img {
        max-height: 38px !important;
    }

    .header-hotline-btn span {
        display: none !important;
    }

    .header-hotline-btn {
        padding: 8px 12px !important;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-hotline-btn i {
        margin: 0 !important;
    }

    .floating-contact-box-left {
        bottom: 20px !important;
        gap: 12px !important;
    }

    .back-to-top-btn {
        bottom: 28px !important;
        right: 12px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1.05rem !important;
    }

    .contact-box-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
    }

    .contact-box-btn.is-mobile-focal {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
}

.footer-bottom a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}
.footer-bottom a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

/* SITE FOOTER & 3-COLUMN SYSTEM */
.site-footer {
    background: #0b1329;
    color: rgba(255, 255, 255, 0.85);
    padding-top: 55px;
    padding-bottom: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1.15fr;
    gap: 40px;
    margin-bottom: 35px;
    align-items: start;
    border-bottom: none !important;
}

.footer-col h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 3px;
    background: var(--brand-blue, #0976f2);
    border-radius: 2px;
}

.footer-col-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-services ul li {
    margin-bottom: 10px;
}

.footer-col-services ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-col-services ul li a:hover {
    color: #60a5fa;
    transform: translateX(4px);
}

.fanpage-glowing-box {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(9, 118, 242, 0.4);
    box-shadow: 0 8px 25px rgba(9, 118, 242, 0.2);
    background: #0f172a;
}

.fanpage-glowing-box-inner iframe {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* MOBILE 3-COLUMN FOOTER STACKING (<= 992px) */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .footer-col {
        width: 100% !important;
    }

    .footer-col h4::after {
        width: 50px;
    }

    .fanpage-glowing-box-inner iframe {
        height: 210px !important;
    }

    .footer-bottom {
        font-size: 0.88rem;
        line-height: 1.6;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ENTRY CONTENT IMAGES & TYPOGRAPHY (HIGH-READABILITY EDITORIAL STYLING) */
.entry-content {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #334155;
    word-break: break-word;
    letter-spacing: 0.1px;
}

.entry-content p {
    margin-top: 0;
    margin-bottom: 22px;
    font-size: 1.08rem;
    line-height: 1.85;
    color: #334155;
}

.entry-content strong,
.entry-content b {
    color: #0f172a;
    font-weight: 700;
}

.entry-content h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 18px;
    line-height: 1.35;
    padding-left: 14px;
    border-left: 4px solid #0976f2;
}

.entry-content h3 {
    font-size: 1.38rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 32px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.entry-content h4 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #334155;
    margin-top: 26px;
    margin-bottom: 12px;
    line-height: 1.45;
}

.entry-content h5,
.entry-content h6 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #475569;
    margin-top: 22px;
    margin-bottom: 10px;
}

.entry-content ul,
.entry-content ol {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
    color: #334155;
}

.entry-content ul li,
.entry-content ol li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.entry-content blockquote {
    margin: 30px 0;
    padding: 22px 28px;
    background: #f1f5f9;
    border-left: 4px solid #0976f2;
    border-radius: 0 14px 14px 0;
    font-size: 1.08rem;
    font-style: italic;
    color: #1e293b;
    line-height: 1.8;
}

.entry-content blockquote p {
    margin-bottom: 0;
}

.entry-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.entry-content table th {
    background: #0f172a;
    color: #ffffff;
    padding: 14px 18px;
    font-weight: 700;
    text-align: left;
}

.entry-content table td {
    padding: 12px 18px;
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
    color: #334155;
}

.entry-content table tr:nth-child(even) td {
    background: #f8fafc;
}

.entry-content img,
.entry-content figure,
.entry-content .wp-block-image {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.entry-content img {
    width: 100% !important;
    height: auto !important;
    display: block;
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

/* EXCEPTION: EXPLICITLY ALIGNED SMALL IMAGES (alignleft, alignright) */
.entry-content img.alignleft,
.entry-content figure.alignleft,
.entry-content figure.alignleft img {
    width: auto !important;
    max-width: 50% !important;
    float: left !important;
    margin-right: 20px !important;
    margin-bottom: 15px !important;
}

.entry-content img.alignright,
.entry-content figure.alignright,
.entry-content figure.alignright img {
    width: auto !important;
    max-width: 50% !important;
    float: right !important;
    margin-left: 20px !important;
    margin-bottom: 15px !important;
}

.entry-content img.aligncenter,
.entry-content figure.aligncenter {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* SINGLE ARTICLE FEATURED THUMBNAIL (FULL-WIDTH CRISP DISPLAY) */
.single-featured-thumb {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 35px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1) !important;
    background: #f1f5f9;
}

.single-featured-thumb img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 540px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 16px !important;
}

/* INTERNAL LINKS VS EXTERNAL LINKS IN CONTENT */
/* 1. Internal Links (Royal Blue with subtle underline) */
.entry-content a {
    color: #0976f2 !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
    text-decoration-color: rgba(9, 118, 242, 0.4) !important;
    text-underline-offset: 3px !important;
    transition: all 0.2s ease !important;
}

.entry-content a:hover {
    color: #0284c7 !important;
    text-decoration-color: #0284c7 !important;
}

/* 2. External Links (Emerald Green with Icon Suffix) */
.entry-content a[href^="http://"]:not([href*="localhost"]):not([href*="baotinmedia"]),
.entry-content a[href^="https://"]:not([href*="localhost"]):not([href*="baotinmedia"]),
.entry-content a[target="_blank"] {
    color: #059669 !important;
    text-decoration: underline !important;
    text-decoration-color: rgba(5, 150, 105, 0.45) !important;
    text-underline-offset: 3px !important;
}

.entry-content a[href^="http://"]:not([href*="localhost"]):not([href*="baotinmedia"])::after,
.entry-content a[href^="https://"]:not([href*="localhost"]):not([href*="baotinmedia"])::after,
.entry-content a[target="_blank"]::after {
    content: ' \f08e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.72rem;
    color: #059669;
    display: inline-block;
    margin-left: 3px;
    vertical-align: baseline;
}

.entry-content a[href^="http://"]:not([href*="localhost"]):not([href*="baotinmedia"]):hover,
.entry-content a[href^="https://"]:not([href*="localhost"]):not([href*="baotinmedia"]):hover,
.entry-content a[target="_blank"]:hover {
    color: #10b981 !important;
    text-decoration-color: #10b981 !important;
}

/* RELATED POSTS GRID (3 COLS ON PC, 2 COLS ON MOBILE) */
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .related-posts-grid .project-thumb-clean {
        height: 140px !important;
    }

    .related-posts-grid .project-card-clean div[style*="padding"] {
        padding: 14px !important;
    }

    .related-posts-grid h4 {
        font-size: 0.9rem !important;
        line-height: 1.35 !important;
        margin-bottom: 6px !important;
    }

    .related-posts-grid span {
        font-size: 0.78rem !important;
    }
}

@media (max-width: 480px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .related-posts-grid .project-thumb-clean {
        height: 120px !important;
    }

    .related-posts-grid .project-card-clean div[style*="padding"] {
        padding: 10px 12px !important;
    }

    .related-posts-grid h4 {
        font-size: 0.85rem !important;
    }
}

/* APPLE-STYLE PREMIUM SEGMENTED CAPSULE PAGINATION */
.navigation.pagination {
    margin-top: 50px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.navigation.pagination .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.navigation.pagination .nav-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    justify-content: center;
}

/* Individual Page Number Pills */
.navigation.pagination .nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #475569;
    background: transparent;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

/* Hover Effect for Inactive Pages & Prev/Next */
.navigation.pagination .nav-links a.page-numbers:hover {
    color: #0976f2;
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Active Current Page (Apple Glowing Pill) */
.navigation.pagination .nav-links .page-numbers.current {
    background: linear-gradient(135deg, #0976f2 0%, #0284c7 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(9, 118, 242, 0.4) !important;
    transform: scale(1.04);
}

/* Dots (...) */
.navigation.pagination .nav-links .page-numbers.dots {
    min-width: 28px;
    padding: 0 6px;
    color: #94a3b8;
    background: transparent !important;
    box-shadow: none !important;
}

/* Prev & Next Buttons */
.navigation.pagination .nav-links a.prev.page-numbers,
.navigation.pagination .nav-links a.next.page-numbers {
    padding: 0 18px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0976f2;
    background: rgba(9, 118, 242, 0.06);
    border-radius: 12px;
}

.navigation.pagination .nav-links a.prev.page-numbers:hover,
.navigation.pagination .nav-links a.next.page-numbers:hover {
    background: #0976f2;
    color: #ffffff;
}

@media (max-width: 576px) {
    .navigation.pagination .nav-links {
        padding: 4px;
        gap: 4px;
    }

    .navigation.pagination .nav-links .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
        padding: 0 10px;
    }

    .navigation.pagination .nav-links a.prev.page-numbers,
    .navigation.pagination .nav-links a.next.page-numbers {
        padding: 0 12px;
        font-size: 0.8rem;
    }
}

/* ARCHIVE & CATEGORY POSTS GRID (3 COLS ON PC, 2 COLS ON MOBILE) */
.archive-posts-grid,
.grid-3-cols,
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 992px) {
    .archive-posts-grid,
    .grid-3-cols,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .archive-posts-grid .project-thumb-clean,
    .grid-3-cols .project-thumb-clean,
    .projects-grid .project-thumb {
        height: 145px !important;
    }

    .archive-posts-grid .project-card-clean div[style*="padding"],
    .grid-3-cols .project-card-clean div[style*="padding"] {
        padding: 14px !important;
    }

    .archive-posts-grid h3,
    .grid-3-cols h3 {
        font-size: 0.95rem !important;
        line-height: 1.38 !important;
        margin-bottom: 8px !important;
    }

    .archive-posts-grid p,
    .grid-3-cols p {
        font-size: 0.82rem !important;
        line-height: 1.45 !important;
        margin-bottom: 10px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .archive-posts-grid span,
    .grid-3-cols span {
        font-size: 0.78rem !important;
    }

    .archive-posts-grid a[style*="inline-flex"],
    .grid-3-cols a[style*="inline-flex"] {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .archive-posts-grid,
    .grid-3-cols,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .archive-posts-grid .project-thumb-clean,
    .grid-3-cols .project-thumb-clean,
    .projects-grid .project-thumb {
        height: 125px !important;
    }

    .archive-posts-grid .project-card-clean div[style*="padding"],
    .grid-3-cols .project-card-clean div[style*="padding"] {
        padding: 10px 12px !important;
    }

    .archive-posts-grid h3,
    .grid-3-cols h3 {
        font-size: 0.88rem !important;
    }
}

/* SEARCH PAGE SLEEK CAPSULE SEARCH HUB */
.search-page-bar-wrapper {
    max-width: 720px;
    margin: 0 auto 45px auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.search-page-form {
    width: 100%;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-icon-prefix {
    position: absolute;
    left: 20px;
    color: #94a3b8;
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.2s ease;
}

.search-page-input {
    width: 100%;
    height: 54px;
    padding: 0 140px 0 52px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    outline: none;
    transition: all 0.25s ease;
}

.search-page-input:focus {
    background: #ffffff;
    border-color: #0976f2;
    box-shadow: 0 0 0 4px rgba(9, 118, 242, 0.15);
}

.search-input-group:focus-within .search-icon-prefix {
    color: #0976f2;
}

.search-page-submit-btn {
    position: absolute;
    right: 6px;
    height: 44px;
    padding: 0 26px;
    background: linear-gradient(135deg, #0976f2 0%, #0284c7 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(9, 118, 242, 0.35);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-page-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(9, 118, 242, 0.45);
}

@media (max-width: 576px) {
    .search-page-bar-wrapper {
        padding: 8px;
    }

    .search-page-input {
        height: 48px;
        font-size: 0.95rem;
        padding: 0 110px 0 44px;
    }

    .search-icon-prefix {
        left: 16px;
        font-size: 0.95rem;
    }

    .search-page-submit-btn {
        right: 4px;
        height: 40px;
        padding: 0 16px;
        font-size: 0.88rem;
    }
}

/* ABOUT US PAGE MOBILE RESPONSIVE OPTIMIZATION */
@media (max-width: 992px) {
    .about-page-main {
        padding: 35px 0 !important;
    }

    .about-card-box {
        padding: 24px 18px !important;
        border-radius: 18px !important;
        margin-bottom: 30px !important;
    }

    .grid-2-cols-resp {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .about-title-main {
        font-size: 1.45rem !important;
        line-height: 1.35 !important;
        margin-bottom: 14px !important;
    }

    .about-title-section {
        font-size: 1.35rem !important;
    }

    .about-services-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .about-service-card {
        padding: 24px 18px !important;
        border-radius: 16px !important;
    }

    .about-projects-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .about-projects-grid div {
        padding: 12px 14px !important;
    }

    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .about-gallery-item {
        height: 135px !important;
        border-radius: 12px !important;
    }
}

@media (max-width: 480px) {
    .about-card-box {
        padding: 20px 14px !important;
    }

    .about-title-main {
        font-size: 1.3rem !important;
    }

    .about-title-section {
        font-size: 1.2rem !important;
    }

    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .about-gallery-item {
        height: 115px !important;
    }
}
