/*
 * Twendy Hair Salon - main.css
 * Tổng hợp từ các file HTML: index.html, gioi-thieu.html, dich-vu.html, khach-hang.html, contact.html
 * Ghi chú: CSS trong các thẻ <style> đã được gom về đây và khử trùng lặp theo block CSS.
 */

/* =========================================
       1. BASE & VARIABLES
    ========================================= */
:root {
        --sticky_bar_background: rgba(15, 15, 15, 0.9); 
        --app_background_color: #e8ebf0; 
        --text_color: #FDFBF7;
        --gold_accent: #DCA965;
        --neon_gradient: linear-gradient(90deg, #FF007F, #7F00FF);
        
        --font_sans: 'Be Vietnam Pro', Roboto, Helvetica, Arial, sans-serif;
        --font_serif: 'Playfair Display', serif;
    }

@supports(padding:env(safe-area-inset-bottom)){
        :root{ --safe-top:env(safe-area-inset-top); --safe-right:env(safe-area-inset-right); --safe-bottom:env(safe-area-inset-bottom); --safe-left:env(safe-area-inset-left); }
    }

html { margin:0; padding:0; background: #000; font-family: var(--font_sans); color: var(--text_color); }

body { height: 100vh; height: 100dvh; display: flex; flex-direction: column; overflow: hidden; margin: 0; padding: 0; width: 100vw; overscroll-behavior: none; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

.wrapper { width: 1200px; max-width: 100%; margin: auto; padding: 0 20px; box-sizing: border-box; }

/* =========================================
       2. FATAL ERRORS & UTILS
    ========================================= */
.fatal_error_msg {
        position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
        background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
        z-index: 10000; display: flex; flex-direction: column; justify-content: center; align-items: center;
        text-align: center; padding: 25px; box-sizing: border-box; line-height: 1.6;
    }

.fatal_error_msg svg { margin-bottom: 25px; animation: fatalErrorPulse 2s infinite ease-in-out; }

.fatal_error_msg strong { font-size: 18px; font-family: var(--font_serif); letter-spacing: 1px; color: var(--gold_accent); }

@keyframes fatalErrorPulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.05); opacity: 1; } }

#screen_size_error { display: none; }

@media (max-width: 299.98px) { #screen_size_error { display: flex; } }

/* =========================================
       3. HEADER & NAV (GLASSMORPHISM)
    ========================================= */
#header { 
        flex-shrink: 0; position: absolute; top: 0; left: 0; width: 100%; z-index: 50; 
        background: var(--sticky_bar_background); 
        backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
        transform: translateZ(0); will-change: backdrop-filter;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        height: 80px; box-shadow: 0 4px 30px rgba(0,0,0,0.1); 
        user-select: none; -webkit-user-select: none; 
    }

#header > .wrapper { display: flex; align-items: stretch; height: 100%; }

#header .content_container { flex: 1; display: flex; align-items: center; justify-content: space-between; }

#header .logo_container .logo{ --height:75; }

#header nav { display: none; margin-left: auto; }

@media (min-width: 992px) { 
        #header nav { display: block; margin-right: 40px; } 
        .icon_list { display: none; } 
    }

#header nav > ul { display: flex; gap: 35px; height: 100%; align-items: center; }

#header nav > ul > li { position: relative; height: 100%; display: flex; align-items: center; }

#header nav > ul > li > a { 
        font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; 
        color: #fff; transition: color 0.3s ease; cursor: pointer; padding: 10px 0;
        display: flex; align-items: center; gap: 6px; position: relative;
    }

#header nav > ul > li > a::before {
        content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
        background: var(--gold_accent); box-shadow: 0 0 8px var(--gold_accent);
        transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

#header nav > ul > li:hover > a { color: var(--gold_accent); }

#header nav > ul > li:hover > a::before { width: 100%; }

#header nav > ul > li.has_sub > a::after {
        content: '+'; font-size: 16px; font-weight: 400; margin-left: 2px; transition: color 0.3s ease, transform 0.3s ease;
    }

#header nav > ul > li.has_sub:hover > a::after { color: var(--gold_accent); transform: rotate(90deg); }

#header nav ul li ul {
        position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px) scale(0.95);
        background: rgba(15, 15, 15, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px;
        min-width: 220px; padding: 12px 0;
        opacity: 0; visibility: hidden; pointer-events: none;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    }

#header nav ul li ul::before { content: ''; position: absolute; top: -20px; left: 0; width: 100%; height: 20px; }

#header nav ul li:hover ul { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0) scale(1); }

#header nav ul li ul li a {
        display: block; padding: 12px 24px; font-size: 14px; color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease; position: relative; overflow: hidden;
        width: 100%; box-sizing: border-box; white-space: nowrap; text-overflow: ellipsis;
    }

#header nav ul li ul li a:hover { color: var(--gold_accent); padding-left: 32px; background: rgba(255, 255, 255, 0.05); }

#header nav ul li ul li a::before {
        content: ''; position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
        width: 6px; height: 6px; border-radius: 50%; background: var(--gold_accent);
        opacity: 0; transition: opacity 0.3s ease, box-shadow 0.3s ease;
    }

#header nav ul li ul li a:hover::before { opacity: 1; box-shadow: 0 0 10px var(--gold_accent); }

.icon_list { cursor: pointer; color: var(--gold_accent); display: flex; align-items: center; }

/* =========================================
       4. LEFTSIDE MENU (MOBILE)
    ========================================= */
#leftside_menu {
        position: fixed; top: 0; left: 0; width: 300px; max-width: 85vw; height: 100%;
        background: #0f0f0f; z-index: 1000; 
        transform: translate3d(-100%, 0, 0); 
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        box-shadow: 10px 0 30px rgba(0,0,0,0.8); overflow-y: auto; overscroll-behavior: contain;
        display: flex; flex-direction: column;
    }

#leftside_menu.active { transform: translate3d(0, 0, 0); }

.menu_overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
        transform: translateZ(0); will-change: backdrop-filter;
        z-index: 999; opacity: 0; visibility: hidden; transition: all 0.4s ease;
    }

.menu_overlay.active { opacity: 1; visibility: visible; }

.menu_logo_container {display:block;text-align:center;padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

.menu_logo_container .logo{ --width:250; }

i.sprite {
        --sprite_sheet_width: 1000; --sprite_sheet_height: 1000; --x: 0; --y: 0; --sprite_width: 1; --sprite_height: 1; --width: 1; --height: 1;
        --scale_width: var(--width) / var(--sprite_width); --scale_height: var(--height) / var(--sprite_height);
        --new_sprite_sheet_width: calc(var(--sprite_sheet_width) * var(--scale_width) * 1px); --new_sprite_sheet_height: calc(var(--sprite_sheet_height) * var(--scale_height) * 1px);
        --sprite_x: calc(var(--x) * var(--scale_width) * -1px); --sprite_y: calc(var(--y) * var(--scale_height) * -1px);
        display: inline-block;
        -webkit-mask-image: url('/static/images/sprites.webp'); mask-image: url('/static/images/sprites.webp');
        -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
        -webkit-mask-size: var(--new_sprite_sheet_width) var(--new_sprite_sheet_height); mask-size: var(--new_sprite_sheet_width) var(--new_sprite_sheet_height);
        -webkit-mask-position: var(--sprite_x) var(--sprite_y); mask-position: var(--sprite_x) var(--sprite_y);
        background: var(--icon_fill, currentColor);
        width: calc(var(--width) * 1px); height: calc(var(--height) * 1px);
    }

i.sprite.auto_width { --width: calc(var(--height) * var(--sprite_width) / var(--sprite_height)); }

i.sprite.auto_height { --height: calc(var(--width) * var(--sprite_height) / var(--sprite_width)); }

i.sprite.logo {
        --sprite_width: 500; --sprite_height: 160; --x: 0; --y: 0;
        background: linear-gradient(110deg, var(--gold_accent) 0%, var(--gold_accent) 45%, #E8D8C8 50%, var(--gold_accent) 55%, var(--gold_accent) 100%);
        background-size: 400% 100%; background-position: 100% 0; animation: luxuryShimmer 8s infinite linear;
    }

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

#leftside_menu > ul { padding: 20px 0; flex: 1; }

#leftside_menu > ul > li > a {
        display: flex; justify-content: space-between; align-items: center;
        padding: 16px 25px; color: #fff; font-weight: 500; text-transform: uppercase; font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.02); transition: all 0.3s ease;
    }

#leftside_menu > ul > li > a:hover, #leftside_menu > ul > li > a:active {
        padding-left: 35px; color: var(--gold_accent); background: linear-gradient(90deg, rgba(220,169,101,0.1) 0%, transparent 100%);
    }

#leftside_menu > ul > li.has_sub > a::after { content: '+'; font-size: 20px; color: var(--gold_accent); transition: transform 0.3s; }

#leftside_menu > ul > li.has_sub.open > a::after { transform: rotate(45deg); }

#leftside_menu ul li ul { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; background: #050505; }

#leftside_menu ul li.open ul { max-height: 400px; }

#leftside_menu ul li ul li a {
        display: block; padding: 14px 25px 14px 40px; font-size: 14px; color: rgba(255,255,255,0.6);
        border-bottom: 1px solid rgba(255,255,255,0.02); transition: all 0.3s ease;
        width: 100%; box-sizing: border-box; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }

#leftside_menu ul li ul li a:hover { padding-left: 50px; color: var(--gold_accent); }

/* =========================================
       5. APP STRUCTURE & HERO BANNER
    ========================================= */
#app { flex: 1; position: relative; display: flex; flex-direction: column; overflow: hidden; width: 100%; background: var(--app_background_color); }

.app_scroller { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; overscroll-behavior-y: contain; }

.hero_banner { position: relative; height: 100vh; height: 100dvh; min-height: 500px; overflow: hidden; }

.hero_banner .wrapper { height: 100%; display: flex; align-items: center; justify-content: center; position: relative; z-index: 10; }

.hero_banner .background {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
        background: radial-gradient(circle at 70% 50%, #2a1635 0%, #050505 80%);
    }

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

.hair_strand { fill: none; stroke-linecap: round; stroke-dasharray: 1500; stroke-dashoffset: 1500; animation: drawStrand 16s linear infinite, waveStrand 8s ease-in-out infinite alternate; will-change: stroke-dashoffset, transform; }

.s1 { animation-delay: 0s, 0s; }

.s2 { animation-delay: -5s, -2s; stroke-width: 4; opacity: 0.6; }

.s3 { animation-delay: -10s, -4s; stroke-width: 2; opacity: 0.8; }

@keyframes drawStrand { 0% { stroke-dashoffset: 1500; } 50% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -1500; } }

@keyframes waveStrand { 0% { transform: translateY(-15px) scaleY(0.95); } 100% { transform: translateY(15px) scaleY(1.05); } }

.bubbles_svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }

.bubble { opacity: 0; transform-origin: center; animation: floatUp ease-in-out infinite; will-change: transform, opacity; }

.b1 { animation-duration: 16s; animation-delay: 0s; }

.b2 { animation-duration: 24s; animation-delay: 4s; }

.b3 { animation-duration: 12s; animation-delay: 8s; }

.b4 { animation-duration: 28s; animation-delay: 2s; }

.b5 { animation-duration: 20s; animation-delay: 6s; }

.b6 { animation-duration: 18s; animation-delay: 10s; }

@keyframes floatUp { 0% { transform: translate3d(0, 10vh, 0) scale(0.8); opacity: 0; } 20% { opacity: 0.5; } 50% { transform: translate3d(30px, -40vh, 0) scale(1.1); } 80% { opacity: 0.3; } 100% { transform: translate3d(-20px, -110vh, 0) scale(1); opacity: 0; } }

.hero_model {
        position: absolute; right: 0; bottom: 0;
        height: 100vh; height: 100dvh;
        object-fit: cover; object-position: right bottom; 
        z-index: 5; pointer-events: none;
        animation: floatModel 12s ease-in-out infinite alternate;
        filter: drop-shadow(-10px 0px 30px rgba(0,0,0,0.5));
        will-change: transform; transform: translateZ(0);
    }

@keyframes floatModel { 0% { transform: translate3d(0, 15px, 0); } 100% { transform: translate3d(0, -15px, 0); } }

.hero_banner .content_container { flex: 1; display: flex; justify-content: flex-start; }

.hero_banner .text_box { 
        max-width: 600px; position: relative; z-index: 10; 
        padding: 40px; border-radius: 24px;
        background: rgba(10, 10, 10, 0.45);
        backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
        transform: translateZ(0); will-change: backdrop-filter;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    }

.small_title { font-family: var(--font_sans); font-size: 1.1rem; font-weight: 600; letter-spacing: 3px; color: #fff; margin-bottom: 15px; text-transform: uppercase; }

.big_title { 
        font-family: var(--font_serif); font-size: 4.5rem; line-height: 1.1; margin-bottom:25px; 
        text-transform: uppercase; 
        background: linear-gradient(to right, var(--gold_accent) 20%, #FFFDE4 40%, #FFFDE4 60%, var(--gold_accent) 80%);
        background-size: 200% auto; color: #000; 
        background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        animation: textShimmer 6s linear infinite;
    }

@keyframes textShimmer { to { background-position: 200% center; } }

.description { font-family: var(--font_sans); font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 40px; }

.btn_primary {
        display: inline-flex; align-items: center; justify-content: center;
        padding: 16px 45px; border-radius: 30px; background: var(--neon_gradient);
        color: #fff; font-weight: bold; letter-spacing: 1.5px; box-shadow: 0 10px 25px rgba(255, 0, 127, 0.4);
        position: relative; overflow: hidden; 
        transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.6s;
    }

.btn_primary span { position: relative; z-index: 2; }

.btn_primary::before {
        content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
        transform: skewX(-25deg); transition: left 1.2s ease; z-index: 1;
    }

.btn_primary::after{
        content:attr(data-text);text-transform:uppercase;
    }

.btn_primary>span{display:none;}

.btn_primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 15px 35px rgba(255, 0, 127, 0.6); }

.btn_primary:hover::before { left: 200%; }

.hero_banner .overlay { position: absolute; bottom: -5px; left: 0; width: 100%; z-index: 15; line-height: 0; }

.hero_banner .overlay svg { width: 100%; height: auto; }

@media (max-width: 768px) {
        .hero_model { opacity: 0.6; right: -20%; }
        .hero_banner .content_container { justify-content: center; text-align: center; }
        .big_title { font-size: 3rem; }
    }

@media (max-width: 480px) {
        .hero_banner .text_box { padding: 25px 20px; }
        .big_title { font-size: 2.5rem; }
        .small_title { font-size: 0.95rem; }
        .description { font-size: 1rem; }
    }

@media (max-width: 340px) {
        .hero_banner .text_box { padding: 20px 15px; border-radius: 16px; }
        .big_title { font-size: 2rem; margin-bottom: 15px; }
        .small_title { font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 10px; }
        .description { font-size: 0.9rem; margin-bottom: 25px; line-height: 1.6; }
        .btn_primary { padding: 12px 30px; font-size: 0.9rem; }
    }

/* =========================================
       6. LAZY IMAGE BASE
    ========================================= */
.lazy_image_container { display: block; position: relative; z-index: 1; width: 100%; height: 100%; pointer-events: none; user-select: none; }

.lazy_image_container > img { position: relative; z-index: 2; display: block; width: 100%; height: 100%; object-fit: cover; }

.lazy_image_container.fade_in > img { opacity: 0; transition: opacity 0.8s ease; }

.lazy_image_container.fade_in.loaded > img { opacity: 1; }

/* =========================================
       7. SECTION INTRO (VỀ CHÚNG TÔI)
    ========================================= */
.intro { position: relative; padding: 100px 0; background: linear-gradient(180deg, var(--app_background_color) 0%, #FFFFFF 100%); overflow: hidden; }

.intro .background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

.intro_svg_bg { width: 100%; height: 100%; }

.intro_wave { fill: none; stroke: var(--gold_accent); stroke-width: 2; opacity: 0.15; }

.iw1 { animation: floatIntroWave 20s ease-in-out infinite alternate; }

.iw2 { animation: floatIntroWave 25s ease-in-out infinite alternate-reverse; }

@keyframes floatIntroWave { 0% { transform: translate3d(0, 0, 0) scale(1); } 100% { transform: translate3d(0, 40px, 0) scale(1.05); } }

.intro .content_container { position: relative; z-index: 10; display: flex; flex-wrap: wrap; align-items: center; gap: 60px; }

.intro_col_left { flex: 1; min-width: 300px; }

.intro_col_right { flex: 1; min-width: 300px; }

.intro .small_title { color: var(--gold_accent); }

.intro .big_title { color: #111; background: none; -webkit-text-fill-color: #111; animation: none; margin-bottom: 25px; }

.intro .description { color: #444; margin-bottom: 20px; }

/* --- ĐÃ SỬA: Cấu hình Mask Shape vuông hơn, không giống quả trứng --- */
.ceo_img_mask {
        width: 100%; max-width: 450px; margin: 0 auto;
        aspect-ratio: 3/4; 
        /* Chỉnh % thấp xuống để dáng khung hình giữ độ vuông vắn, không bị bo tròn xoe */
        border-radius: 12% 18% 15% 12% / 15% 12% 18% 15%;
        overflow: hidden; 
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        /* Thêm animation dao động mượt mà và rõ ràng hơn */
        animation: morphShape 8s ease-in-out infinite;
        transform: translateZ(0); 
    }

@keyframes morphShape {
        0% { border-radius: 12% 18% 15% 12% / 15% 12% 18% 15%; }
        50% { border-radius: 20% 12% 18% 22% / 12% 20% 15% 18%; }
        100% { border-radius: 12% 18% 15% 12% / 15% 12% 18% 15%; }
    }

@media (max-width: 768px) {
        .intro .content_container { flex-direction: column; text-align: center; gap: 40px; }
        .intro .small_title { margin-bottom: 10px; }
    }

/* =========================================
       8. SECTION SERVICES (CAROUSEL DỊCH VỤ)
    ========================================= */
.services { position: relative; padding: 100px 0; overflow: hidden; }

.services .background {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
        background: radial-gradient(circle at 50% 0%, #2a1635 0%, #050505 80%);
    }

.services .section_header { text-align: center; position: relative; z-index: 10; margin-bottom: 50px; }

.services .small_title { color: var(--gold_accent); }

.services .big_title { color: #fff; background: none; -webkit-text-fill-color: #fff; animation: none; margin-bottom: 20px; }

.services .description { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; line-height: 1.6; }

.carousel_wrapper { position: relative; z-index: 10; }

.carousel_nav {
        position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
        background: rgba(10,10,10,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(220,169,101,0.5); color: var(--gold_accent);
        width: 48px; height: 48px; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }

.carousel_nav:hover { background: var(--gold_accent); color: #000; transform: translateY(-50%) scale(1.1); box-shadow: 0 5px 25px rgba(220,169,101,0.5); }

.carousel_nav.prev { left: -24px; }

.carousel_nav.next { right: -24px; }

@media (max-width: 1248px) {
        .carousel_nav.prev { left: 10px; }
        .carousel_nav.next { right: 10px; }
    }

.carousel_track_container { overflow: hidden; padding: 20px 0; touch-action: pan-y; }

.carousel_track {
        display: flex; gap: 24px; will-change: transform; cursor: grab;
        user-select: none; -webkit-user-select: none;
        touch-action: pan-y;
    }

.carousel_track.is_dragging { cursor: grabbing; }

.carousel_track.is_dragging .service_card { pointer-events: none; }

.carousel_item { flex: 0 0 calc(25% - 18px); user-select: none; }

.service_card {
        background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
        border-radius: 20px; overflow: hidden; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        height: 100%; display: flex; flex-direction: column;
    }

.service_card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(220,169,101,0.15); }

.service_img_wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05); }

.service_img_wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; pointer-events: none; }

.service_card:hover .service_img_wrap img { transform: scale(1.08); }

.service_price {
        position: absolute; bottom: 12px; right: 12px;
        background: rgba(10,10,10,0.75); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
        color: var(--gold_accent); font-weight: 700; font-size: 13px;
        padding: 6px 14px; border-radius: 30px;
        border: 1px solid rgba(220,169,101,0.3); z-index: 5;
    }

.service_info { padding: 25px 20px; flex: 1; display: flex; flex-direction: column; }

.service_title { font-family: var(--font_serif); font-size: 1.3rem; margin: 0 0 10px 0; color: #fff; }

.service_desc { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; flex: 1; }

.btn_explore {
        display: inline-block; padding: 10px 25px; border-radius: 20px;
        background: transparent; border: 1px solid var(--gold_accent);
        color: var(--gold_accent); font-weight: 600; font-size: 13px; text-transform: uppercase;
        align-self: flex-start; transition: all 0.3s ease; text-decoration: none;
    }

.btn_explore::after{content:attr(data-text);text-transform:uppercase;}

.btn_explore>span{position:absolute;opacity:0;}

.service_card:hover .btn_explore { background: var(--gold_accent); color: #000; }

@media (max-width: 991px) { .carousel_item { flex: 0 0 calc(33.333% - 16px); } }

@media (max-width: 768px) { .carousel_item { flex: 0 0 calc(50% - 12px); } }

@media (max-width: 480px) { .carousel_item { flex: 0 0 100%; } }

/* =========================================
       9. SECTION SIGNATURE STYLISTS
    ========================================= */
.signature_stylists {
        position: relative;
        padding: 110px 0 120px;
        overflow: hidden;
        background: linear-gradient(180deg, #ffffff 0%, #f5f0fb 48%, #fff7fb 100%);
        color: #151018;
    }

.signature_stylists .background {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
    }

.stylist_svg_bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

.stylist_neon_line {
        fill: none;
        stroke-linecap: round;
        stroke-dasharray: 1200;
        stroke-dashoffset: 1200;
        animation: stylistLineFlow 18s linear infinite;
        filter: drop-shadow(0 0 10px rgba(255, 0, 127, 0.22));
    }

.snl_2 { animation-delay: -6s; opacity: 0.45; }

.snl_3 { animation-delay: -12s; opacity: 0.35; }

.stylist_orb {
        transform-origin: center;
        animation: stylistOrbFloat 12s ease-in-out infinite alternate;
    }

.so_2 { animation-delay: -4s; }

.so_3 { animation-delay: -8s; }

@keyframes stylistLineFlow {
        0% { stroke-dashoffset: 1200; opacity: 0; }
        15% { opacity: 0.7; }
        50% { stroke-dashoffset: 0; opacity: 0.9; }
        85% { opacity: 0.45; }
        100% { stroke-dashoffset: -1200; opacity: 0; }
    }

@keyframes stylistOrbFloat {
        0% { transform: translate3d(-18px, 22px, 0) scale(0.95); opacity: 0.45; }
        100% { transform: translate3d(24px, -28px, 0) scale(1.08); opacity: 0.85; }
    }

.signature_stylists .wrapper { position: relative; z-index: 10; }

.signature_stylists .content_container { position: relative; }

.stylists_header {
        max-width: 760px;
        margin: 0 auto 64px;
        text-align: center;
    }

.signature_stylists .small_title { color: var(--gold_accent); }

.signature_stylists .big_title {
        color: #171019;
        background: none;
        -webkit-text-fill-color: #171019;
        animation: none;
        margin-bottom: 22px;
    }

.signature_stylists .description {
        color: #5f5363;
        max-width: 680px;
        margin: 0 auto;
        line-height: 1.8;
    }

.stylists_showcase {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px;
        align-items: stretch;
    }

.stylist_card {
        position: relative;
        min-height: 620px;
        border-radius: 34px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(255, 255, 255, 0.8);
        box-shadow: 0 30px 70px rgba(44, 20, 58, 0.16);
        isolation: isolate;
        transform: translateZ(0);
    }

.stylist_card::before {
        content: '';
        position: absolute;
        inset: 18px;
        border-radius: 28px;
        border: 1px solid rgba(220, 169, 101, 0.34);
        z-index: 4;
        pointer-events: none;
    }

.stylist_card::after {
        content: '';
        position: absolute;
        inset: auto -20% -24% -20%;
        height: 48%;
        z-index: 3;
        background: linear-gradient(0deg, rgba(13, 8, 18, 0.92) 0%, rgba(13, 8, 18, 0.68) 45%, rgba(13, 8, 18, 0) 100%);
        pointer-events: none;
    }

.stylist_card.offset { margin-top: 58px; }

.stylist_image_stage {
        position: absolute;
        inset: 0;
        z-index: 1;
        overflow: hidden;
    }

.stylist_image_stage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.05);
        transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s ease;
        filter: saturate(1.08) contrast(1.03);
    }

.stylist_card:hover .stylist_image_stage img {
        transform: scale(1.12) rotate(0.6deg);
        filter: saturate(1.18) contrast(1.08);
    }

.stylist_image_stage::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 2;
        background:
            radial-gradient(circle at 25% 18%, rgba(255, 0, 127, 0.22), transparent 34%),
            radial-gradient(circle at 88% 8%, rgba(127, 0, 255, 0.2), transparent 30%),
            linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 36%);
        mix-blend-mode: screen;
        pointer-events: none;
    }

.stylist_badge {
        position: absolute;
        top: 34px;
        left: 34px;
        z-index: 5;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.72);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        color: #171019;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }

.stylist_badge::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--neon_gradient);
        box-shadow: 0 0 14px rgba(255, 0, 127, 0.65);
    }

.stylist_info_panel {
        position: absolute;
        left: 34px;
        right: 34px;
        bottom: 34px;
        z-index: 5;
        padding: 26px;
        border-radius: 24px;
        background: rgba(15, 12, 18, 0.62);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border: 1px solid rgba(255,255,255,0.16);
        box-shadow: 0 18px 46px rgba(0,0,0,0.28);
    }

.stylist_name {
        margin: 0 0 8px;
        font-family: var(--font_serif);
        font-size: 2rem;
        line-height: 1.1;
        color: #fff;
    }

.stylist_role {
        display: block;
        margin-bottom: 16px;
        color: var(--gold_accent);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

.stylist_quote {
        margin: 0 0 20px;
        color: rgba(255,255,255,0.78);
        line-height: 1.75;
        font-size: 0.98rem;
    }

.stylist_meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

.stylist_meta span {
        display: inline-flex;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.86);
        font-size: 12px;
        font-weight: 600;
        border: 1px solid rgba(255,255,255,0.1);
    }

.stylist_art_mark {
        position: absolute;
        right: -22px;
        top: 42%;
        z-index: 5;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-family: var(--font_serif);
        font-size: 4.8rem;
        line-height: 1;
        color: rgba(255, 255, 255, 0.14);
        letter-spacing: 6px;
        pointer-events: none;
    }

.stylists_footer_note {
        max-width: 840px;
        margin: 54px auto 0;
        text-align: center;
        color: #675a6d;
        font-size: 0.98rem;
        line-height: 1.8;
    }

.stylists_footer_note strong { color: #171019; }

@media (max-width: 991px) {
        .stylists_showcase { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
        .stylist_card.offset { margin-top: 0; }
        .stylist_card { min-height: 600px; }
    }

@media (max-width: 600px) {
        .signature_stylists { padding: 82px 0 90px; }
        .stylists_header { margin-bottom: 42px; }
        .stylist_card { min-height: 560px; border-radius: 26px; }
        .stylist_card::before { inset: 12px; border-radius: 22px; }
        .stylist_badge { top: 24px; left: 24px; }
        .stylist_info_panel { left: 22px; right: 22px; bottom: 22px; padding: 22px; }
        .stylist_name { font-size: 1.65rem; }
        .stylist_art_mark { display: none; }
    }

/* =========================================
       ABOUT PAGE - EDITORIAL SECTIONS
    ========================================= */
.about_editorial {
        position: relative;
        padding: 118px 0;
        overflow: hidden;
        isolation: isolate;
    }

.about_editorial.light {
        background: linear-gradient(180deg, var(--app_background_color) 0%, #ffffff 48%, #fff7fb 100%);
        color: #171019;
    }

.about_editorial.dark {
        background:
            radial-gradient(circle at 16% 18%, rgba(255, 0, 127, 0.36), transparent 34%),
            radial-gradient(circle at 84% 16%, rgba(127, 0, 255, 0.34), transparent 38%),
            linear-gradient(135deg, #050505 0%, #15091f 48%, #050505 100%);
        color: var(--text_color);
    }

.about_editorial .background {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
    }

.about_editorial .wrapper { position: relative; z-index: 5; }

.about_editorial_grid {
        display: grid;
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 76px;
        align-items: center;
    }

.about_editorial.reverse .about_visual { order: 2; }

.about_editorial.reverse .about_copy { order: 1; }

.about_copy .small_title { color: var(--gold_accent); }

.about_copy .big_title {
        background: none;
        -webkit-text-fill-color: currentColor;
        animation: none;
        color: inherit;
        margin-bottom: 26px;
    }

.about_copy .description {
        color: rgba(23, 16, 25, 0.72);
        margin-bottom: 20px;
    }

.about_editorial.dark .about_copy .description { color: rgba(255, 255, 255, 0.76); }

.about_highlights {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 30px;
    }

.about_highlight {
        padding: 17px 16px;
        border-radius: 20px;
        background: rgba(255,255,255,0.68);
        border: 1px solid rgba(255,255,255,0.9);
        box-shadow: 0 18px 42px rgba(44,20,58,0.08);
    }

.about_editorial.dark .about_highlight {
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.13);
        box-shadow: 0 18px 48px rgba(0,0,0,0.24);
    }

.about_highlight strong {
        display: block;
        font-family: var(--font_serif);
        font-size: 1.45rem;
        line-height: 1.1;
        color: var(--gold_accent);
        margin-bottom: 6px;
    }

.about_highlight span {
        display: block;
        color: rgba(23, 16, 25, 0.68);
        font-size: 0.82rem;
        line-height: 1.45;
        font-weight: 600;
    }

.about_editorial.dark .about_highlight span { color: rgba(255,255,255,0.7); }

.about_visual {
        position: relative;
        min-height: 560px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.about_image_art {
        position: relative;
        width: min(440px, 88vw);
        aspect-ratio: 3 / 4;
        border-radius: 34px;
        isolation: isolate;
        transform: rotate(-2deg);
    }

.about_editorial.reverse .about_image_art { transform: rotate(2deg); }

.about_image_art::before {
        content: '';
        position: absolute;
        inset: -28px 30px 34px -28px;
        z-index: -2;
        border-radius: 42px;
        background: var(--neon_gradient);
        opacity: 0.82;
        filter: blur(0.2px);
        animation: aboutPlateDrift 8s ease-in-out infinite alternate;
    }

.about_image_art::after {
        content: '';
        position: absolute;
        inset: 26px -28px -26px 38px;
        z-index: -3;
        border: 1px solid rgba(220,169,101,0.65);
        border-radius: 48px;
        animation: aboutFrameSpin 10s ease-in-out infinite alternate;
    }

.about_image_art .lazy_image_container {
        overflow: hidden;
        border-radius: 32px 88px 38px 64px / 54px 34px 78px 44px;
        box-shadow: 0 34px 84px rgba(44,20,58,0.22);
        border: 1px solid rgba(255,255,255,0.72);
        animation: aboutMorph 9s ease-in-out infinite;
        pointer-events: none;
    }

.about_image_art img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.06);
        filter: saturate(1.08) contrast(1.04);
    }

.about_editorial.dark .about_image_art .lazy_image_container {
        border-color: rgba(255,255,255,0.14);
        box-shadow: 0 36px 92px rgba(0,0,0,0.58), 0 0 40px rgba(255,0,127,0.16);
    }

.about_orbit {
        position: absolute;
        inset: -36px;
        border-radius: 50%;
        border: 1px dashed rgba(220,169,101,0.46);
        animation: aboutOrbitRotate 22s linear infinite;
        z-index: 4;
        pointer-events: none;
    }

.about_orbit::before,
    .about_orbit::after {
        content: '';
        position: absolute;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: var(--gold_accent);
        box-shadow: 0 0 20px rgba(220,169,101,0.86);
    }

.about_orbit::before { top: 10%; left: 18%; }

.about_orbit::after { right: 8%; bottom: 24%; background: #FF007F; box-shadow: 0 0 22px rgba(255,0,127,0.78); }

.about_caption_chip {
        position: absolute;
        left: -26px;
        bottom: 42px;
        z-index: 6;
        padding: 14px 18px;
        border-radius: 999px;
        background: rgba(255,255,255,0.78);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        color: #171019;
        font-size: 0.8rem;
        font-weight: 800;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        box-shadow: 0 16px 38px rgba(0,0,0,0.14);
    }

.about_editorial.dark .about_caption_chip {
        background: rgba(15,12,18,0.68);
        border: 1px solid rgba(255,255,255,0.13);
        color: #fff;
    }

.about_svg_bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

.about_line {
        fill: none;
        stroke-linecap: round;
        stroke-dasharray: 1200;
        stroke-dashoffset: 1200;
        animation: aboutLineDraw 18s linear infinite;
        filter: drop-shadow(0 0 10px rgba(255,0,127,0.16));
    }

.about_line.l2 { animation-delay: -6s; opacity: 0.48; }

.about_line.l3 { animation-delay: -12s; opacity: 0.38; }

.about_blob {
        transform-origin: center;
        animation: aboutBlobFloat 13s ease-in-out infinite alternate;
    }

.about_blob.b2 { animation-delay: -4s; }

.about_blob.b3 { animation-delay: -8s; }

@keyframes aboutLineDraw {
        0% { stroke-dashoffset: 1200; opacity: 0; }
        18% { opacity: 0.72; }
        52% { stroke-dashoffset: 0; opacity: 0.88; }
        86% { opacity: 0.35; }
        100% { stroke-dashoffset: -1200; opacity: 0; }
    }

@keyframes aboutBlobFloat {
        0% { transform: translate3d(-20px, 22px, 0) scale(0.94); opacity: 0.42; }
        100% { transform: translate3d(24px, -28px, 0) scale(1.08); opacity: 0.86; }
    }

@keyframes aboutMorph {
        0%, 100% { border-radius: 32px 88px 38px 64px / 54px 34px 78px 44px; }
        50% { border-radius: 82px 36px 74px 42px / 36px 76px 42px 84px; }
    }

@keyframes aboutPlateDrift {
        0% { transform: translate3d(-8px, 12px, 0) rotate(-3deg); }
        100% { transform: translate3d(12px, -10px, 0) rotate(4deg); }
    }

@keyframes aboutFrameSpin {
        0% { transform: translate3d(0, 0, 0) rotate(2deg); }
        100% { transform: translate3d(-10px, 14px, 0) rotate(-4deg); }
    }

@keyframes aboutOrbitRotate { to { transform: rotate(360deg); } }

@media (max-width: 991px) {
        .about_editorial { padding: 88px 0; }
        .about_editorial_grid { grid-template-columns: 1fr; gap: 44px; }
        .about_editorial.reverse .about_visual,
        .about_editorial.reverse .about_copy { order: initial; }
        .about_copy { text-align: center; }
        .about_visual { min-height: auto; }
        .about_highlights { max-width: 640px; margin-left: auto; margin-right: auto; }
    }

@media (max-width: 640px) {
        .about_highlights { grid-template-columns: 1fr; }
        .about_image_art { width: min(360px, 82vw); }
        .about_orbit { inset: -22px; }
        .about_caption_chip { left: 50%; transform: translateX(-50%); bottom: 24px; white-space: nowrap; }
    }

/* =========================================
       10. SECTION FEEDBACK (FULL WIDTH CAROUSEL)
    ========================================= */
.feedback {
        position: relative;
        padding: 110px 0 120px;
        overflow: hidden;
        background: #050505;
        color: var(--text_color);
        isolation: isolate;
    }

.feedback .background {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background:
            radial-gradient(circle at 18% 22%, rgba(255, 0, 127, 0.62) 0%, rgba(255, 0, 127, 0.12) 28%, transparent 55%),
            radial-gradient(circle at 82% 18%, rgba(127, 0, 255, 0.72) 0%, rgba(127, 0, 255, 0.14) 30%, transparent 58%),
            radial-gradient(circle at 50% 100%, rgba(220, 169, 101, 0.28) 0%, rgba(220, 169, 101, 0.06) 32%, transparent 66%),
            linear-gradient(135deg, #050505 0%, #16091f 42%, #29074d 70%, #050505 100%);
    }

.feedback_svg_bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0.9;
    }

.feedback_grid_line {
        fill: none;
        stroke-linecap: round;
        stroke-dasharray: 900;
        stroke-dashoffset: 900;
        animation: feedbackLineTravel 16s linear infinite;
        filter: drop-shadow(0 0 12px rgba(255, 0, 127, 0.35));
    }

.fgl_2 { animation-delay: -5s; opacity: 0.62; }

.fgl_3 { animation-delay: -10s; opacity: 0.46; }

.feedback_spark {
        transform-origin: center;
        opacity: 0;
        animation: feedbackSparkFloat ease-in-out infinite;
        will-change: transform, opacity;
    }

.fsp_1 { animation-duration: 14s; animation-delay: 0s; }

.fsp_2 { animation-duration: 19s; animation-delay: 4s; }

.fsp_3 { animation-duration: 16s; animation-delay: 8s; }

.fsp_4 { animation-duration: 22s; animation-delay: 2s; }

@keyframes feedbackLineTravel {
        0% { stroke-dashoffset: 900; opacity: 0; }
        18% { opacity: 0.82; }
        52% { stroke-dashoffset: 0; opacity: 0.95; }
        86% { opacity: 0.45; }
        100% { stroke-dashoffset: -900; opacity: 0; }
    }

@keyframes feedbackSparkFloat {
        0% { transform: translate3d(0, 40px, 0) scale(0.65); opacity: 0; }
        24% { opacity: 0.58; }
        70% { opacity: 0.28; }
        100% { transform: translate3d(36px, -180px, 0) scale(1.15); opacity: 0; }
    }

.feedback::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
            linear-gradient(180deg, rgba(5,5,5,0.12) 0%, rgba(5,5,5,0.32) 46%, rgba(5,5,5,0.68) 100%),
            radial-gradient(circle at 50% 50%, transparent 0%, rgba(5,5,5,0.46) 72%);
        pointer-events: none;
    }

.feedback .wrapper { position: relative; z-index: 5; }

.feedback_header {
        max-width: 760px;
        margin: 0 auto 56px;
        text-align: center;
    }

.feedback .small_title { color: var(--gold_accent); }

.feedback .big_title {
        color: #fff;
        background: none;
        -webkit-text-fill-color: #fff;
        animation: none;
        margin-bottom: 22px;
    }

.feedback .description {
        max-width: 690px;
        margin: 0 auto;
        color: rgba(255,255,255,0.72);
        line-height: 1.8;
    }

.feedback_carousel_wrapper {
        position: relative;
        max-width: 980px;
        margin: 0 auto;
        z-index: 10;
    }

.feedback_track_container {
        overflow: hidden;
        border-radius: 34px;
        touch-action: pan-y;
    }

.feedback_track {
        display: flex;
        gap: 0;
        will-change: transform;
        cursor: grab;
        user-select: none; -webkit-user-select: none;
        touch-action: pan-y;
    }

.feedback_track.is_dragging { cursor: grabbing; }

.feedback_item {
        flex: 0 0 100%;
        min-width: 0;
        user-select: none;
    }

.feedback_card {
        min-height: 360px;
        padding: 48px;
        box-sizing: border-box;
        border-radius: 34px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.14);
        box-shadow: 0 28px 80px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.08);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        position: relative;
        overflow: hidden;
    }

.feedback_card::before {
        content: '“';
        position: absolute;
        right: 38px;
        top: -18px;
        font-family: var(--font_serif);
        font-size: 12rem;
        line-height: 1;
        color: rgba(220,169,101,0.13);
        pointer-events: none;
    }

.feedback_card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(255,0,127,0.16), transparent 38%, rgba(127,0,255,0.18) 100%);
        pointer-events: none;
    }

.feedback_customer {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 30px;
    }

.feedback_avatar {
        width: 76px;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        display: block;
        flex: 0 0 76px;
        position: relative;
        overflow: hidden;
        background: var(--neon_gradient);
        box-shadow: 0 12px 32px rgba(255,0,127,0.32), 0 0 0 5px rgba(255,255,255,0.08);
    }

.feedback_avatar img {
        display: block;
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        object-position: center;
        border-radius: inherit;
        pointer-events: none;
        user-select: none;
        -webkit-user-drag: none;
    }

.feedback_avatar_initials {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-family: var(--font_serif);
        font-size: 1.7rem;
        font-weight: 700;
        letter-spacing: 0.02em;
    }

.feedback_avatar img + .feedback_avatar_initials { display: none; }

.feedback_avatar img[src=""],
    .feedback_avatar img:not([src]) { display: none; }

.feedback_avatar img[src=""] + .feedback_avatar_initials,
    .feedback_avatar img:not([src]) + .feedback_avatar_initials { display: flex; }

.feedback_name {
        margin: 0 0 6px;
        font-family: var(--font_serif);
        color: #fff;
        font-size: 1.7rem;
        line-height: 1.15;
    }

.feedback_position {
        display: block;
        color: var(--gold_accent);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

.feedback_content {
        position: relative;
        z-index: 2;
        margin: 0;
        max-width: 810px;
        color: rgba(255,255,255,0.84);
        font-size: 1.08rem;
        line-height: 1.85;
    }

.feedback_nav.prev { left: -24px; }

.feedback_nav.next { right: -24px; }

.carousel_nav.is_disabled {
        opacity: 0.42;
        cursor: not-allowed;
        pointer-events: none;
    }

@media (max-width: 1040px) {
        .feedback_nav.prev { left: 14px; }
        .feedback_nav.next { right: 14px; }
    }

@media (max-width: 640px) {
        .feedback { padding: 82px 0 92px; }
        .feedback_header { margin-bottom: 38px; }
        .feedback_card { padding: 34px 24px; min-height: 420px; border-radius: 26px; }
        .feedback_track_container { border-radius: 26px; }
        .feedback_customer { align-items: flex-start; gap: 14px; margin-bottom: 24px; }
        .feedback_avatar { width: 62px; flex-basis: 62px; }
        .feedback_avatar_initials { font-size: 1.35rem; }
        .feedback_name { font-size: 1.35rem; }
        .feedback_content { font-size: 1rem; line-height: 1.75; }
    }

/* =========================================
       11. SECTION CTA
    ========================================= */
.booking_cta {
        position: relative;
        padding: 105px 0;
        overflow: hidden;
        background: linear-gradient(180deg, #ffffff 0%, #f6f0fb 52%, #fff7fb 100%);
        color: #171019;
        isolation: isolate;
    }

.booking_cta .background {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
    }

.cta_svg_bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

.cta_ribbon {
        fill: none;
        stroke-linecap: round;
        stroke-dasharray: 1100;
        stroke-dashoffset: 1100;
        animation: ctaRibbonDraw 17s linear infinite;
        filter: drop-shadow(0 0 10px rgba(127,0,255,0.18));
    }

.cr_2 { animation-delay: -6s; opacity: 0.5; }

.cr_3 { animation-delay: -11s; opacity: 0.42; }

.cta_orb {
        transform-origin: center;
        animation: ctaOrbDrift 13s ease-in-out infinite alternate;
    }

.co_2 { animation-delay: -4s; }

.co_3 { animation-delay: -8s; }

@keyframes ctaRibbonDraw {
        0% { stroke-dashoffset: 1100; opacity: 0; }
        18% { opacity: 0.72; }
        52% { stroke-dashoffset: 0; opacity: 0.9; }
        84% { opacity: 0.36; }
        100% { stroke-dashoffset: -1100; opacity: 0; }
    }

@keyframes ctaOrbDrift {
        0% { transform: translate3d(-18px, 20px, 0) scale(0.94); opacity: 0.45; }
        100% { transform: translate3d(24px, -26px, 0) scale(1.08); opacity: 0.86; }
    }

.booking_cta .wrapper { position: relative; z-index: 5; }

.cta_panel {
        max-width: 980px;
        margin: 0 auto;
        padding: 56px 48px;
        border-radius: 36px;
        text-align: center;
        background: rgba(255,255,255,0.72);
        border: 1px solid rgba(255,255,255,0.88);
        box-shadow: 0 32px 80px rgba(44,20,58,0.15), inset 0 1px 0 rgba(255,255,255,0.88);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

.booking_cta .small_title { color: var(--gold_accent); }

.booking_cta .big_title {
        color: #171019;
        background: none;
        -webkit-text-fill-color: #171019;
        animation: none;
        margin-bottom: 22px;
    }

.booking_cta .description {
        max-width: 720px;
        margin: 0 auto 34px;
        color: #5f5363;
        line-height: 1.85;
    }

@media (max-width: 640px) {
        .booking_cta { padding: 82px 0; }
        .cta_panel { padding: 40px 24px; border-radius: 28px; }
    }

/* =========================================
       12. TWENDY FOOTER SECTION
    ========================================= */
.twendy_footer {
        position: relative; padding: 90px 0 70px; overflow: hidden;
        background: #050505; color: var(--text_color);
    }

.twendy_footer .background {
        position: absolute; inset: 0; z-index: 0;
        background:
            radial-gradient(circle at 15% 20%, rgba(255, 0, 127, 0.65) 0%, rgba(255, 0, 127, 0.08) 28%, transparent 52%),
            radial-gradient(circle at 82% 28%, rgba(127, 0, 255, 0.72) 0%, rgba(127, 0, 255, 0.12) 30%, transparent 58%),
            linear-gradient(135deg, #050505 0%, #1b071f 38%, #2b064d 66%, #050505 100%);
    }

.footer_svg_bg {
        position: absolute; inset: 0; width: 100%; height: 100%;
        object-fit: cover; opacity: 0.85; pointer-events: none;
    }

.footer_light_strand {
        fill: none; stroke-linecap: round; stroke-dasharray: 1200; stroke-dashoffset: 1200;
        animation: footerDraw 14s linear infinite, footerWave 7s ease-in-out infinite alternate;
        will-change: stroke-dashoffset, transform;
    }

.fls1 { animation-delay: 0s, 0s; }

.fls2 { animation-delay: -4s, -2s; opacity: 0.65; }

.fls3 { animation-delay: -8s, -4s; opacity: 0.5; }

@keyframes footerDraw {
        0% { stroke-dashoffset: 1200; }
        50% { stroke-dashoffset: 0; }
        100% { stroke-dashoffset: -1200; }
    }

@keyframes footerWave {
        0% { transform: translate3d(-10px, -12px, 0) scaleY(0.98); }
        100% { transform: translate3d(10px, 12px, 0) scaleY(1.04); }
    }

.footer_orb {
        opacity: 0; transform-origin: center; animation: footerOrbFloat ease-in-out infinite;
        will-change: transform, opacity;
    }

.fo1 { animation-duration: 15s; animation-delay: 0s; }

.fo2 { animation-duration: 21s; animation-delay: 4s; }

.fo3 { animation-duration: 18s; animation-delay: 8s; }

.fo4 { animation-duration: 24s; animation-delay: 2s; }

@keyframes footerOrbFloat {
        0% { transform: translate3d(0, 60px, 0) scale(0.7); opacity: 0; }
        22% { opacity: 0.45; }
        70% { opacity: 0.25; }
        100% { transform: translate3d(30px, -220px, 0) scale(1.15); opacity: 0; }
    }

.twendy_footer::before {
        content: ''; position: absolute; inset: 0; z-index: 1;
        background: linear-gradient(180deg, rgba(5,5,5,0.12) 0%, rgba(5,5,5,0.78) 100%);
        pointer-events: none;
    }

.twendy_footer .wrapper { position: relative; z-index: 5; }

.twendy_footer .content_container {
        display: grid; grid-template-columns: 1.2fr 1.6fr 1fr 1fr; gap: 42px; align-items: flex-start;
        padding: 38px; border-radius: 28px;
        background: rgba(10, 10, 10, 0.42);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
        backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    }

.footer_brand .logo { --height: 84; margin-bottom: 22px; }

.footer_tagline {
        margin: 0; color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.8; max-width: 280px;
    }

.footer_col_title {
        margin: 0 0 18px; font-family: var(--font_serif); font-size: 1.35rem; line-height: 1.2;
        color: #fff; position: relative; padding-bottom: 12px;
    }

.footer_col_title::after {
        content: ''; position: absolute; left: 0; bottom: 0; width: 46px; height: 2px;
        background: var(--gold_accent); box-shadow: 0 0 14px rgba(220,169,101,0.7); border-radius: 2px;
    }

.footer_info_list, .footer_links { display: flex; flex-direction: column; gap: 12px; }

.footer_info_item { color: rgba(255,255,255,0.78); line-height: 1.6; font-size: 0.95rem; }

.footer_info_item strong { color: var(--gold_accent); font-weight: 700; margin-right: 6px; }

.footer_links a {
        color: rgba(255,255,255,0.76); font-size: 0.95rem; transition: color 0.3s ease, transform 0.3s ease;
    }

.footer_links a:hover { color: var(--gold_accent); transform: translateX(6px); }

.footer_social_list { display: flex; flex-wrap: wrap; gap: 14px; }

.footer_social_link {
        width: 46px; height: 46px; border-radius: 50%;
        display: inline-flex; align-items: center; justify-content: center;
        color: #fff; background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.14);
        box-shadow: 0 10px 24px rgba(0,0,0,0.22);
        transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }

.footer_social_link:hover {
        transform: translateY(-5px) scale(1.04);
        background: var(--neon_gradient); border-color: rgba(255,255,255,0.32);
        box-shadow: 0 14px 32px rgba(255,0,127,0.28);
    }

.footer_social_link svg { width: 22px; height: 22px; }

@media (max-width: 991px) {
        .twendy_footer .content_container { grid-template-columns: repeat(2, 1fr); }
    }

@media (max-width: 600px) {
        .twendy_footer { padding: 70px 0 55px; }
        .twendy_footer .content_container { grid-template-columns: 1fr; gap: 30px; padding: 28px 22px; text-align: left; }
        .footer_brand .logo { --height: 68; }
    }

/* =========================================
       10. FOOTER TỐI GIẢN
    ========================================= */
#footer { flex-shrink: 0; position: relative; z-index: 40; touch-action: none; background: #111; height: 60px; border-top: 1px solid rgba(255,255,255,0.05); }

#footer .wrapper { display: flex; justify-content: space-between; align-items: center; height: 100%; font-family: var(--font_sans); font-size: 13px; color: rgba(255, 255, 255, 0.5); }

#footer .footer_bottom_right { display: flex; gap: 20px; }

#footer .footer_bottom_right a { color: rgba(255, 255, 255, 0.5); transition: color 0.3s ease; }

#footer .footer_bottom_right a:hover { color: var(--gold_accent); }

@media (max-width: 600px) { #footer { height: auto; padding: 15px 0; } #footer .wrapper { flex-direction: column; justify-content: center; gap: 10px; text-align: center; } }

.sx-layer { animation-name: wgMove; animation-timing-function: linear; animation-iteration-count: infinite; }

@keyframes wgMove { from { transform: translate3d(-1440px,0,0); } to { transform: translate3d(0,0,0); } }

.sx-l0 { animation-duration: 11.23s; }

/* =========================================
       SERVICES PAGE - UNIQUE STYLES
       Các CSS mới riêng cho trang Dịch vụ
    ========================================= */
.services_overview,
    .service_editorial {
        position: relative;
        padding: 118px 0;
        overflow: hidden;
        isolation: isolate;
    }

.services_overview.light,
    .service_editorial.light {
        background: linear-gradient(180deg, var(--app_background_color) 0%, #ffffff 48%, #fff7fb 100%);
        color: #171019;
    }

.service_editorial.dark {
        background:
            radial-gradient(circle at 12% 18%, rgba(255, 0, 127, 0.36), transparent 34%),
            radial-gradient(circle at 88% 20%, rgba(127, 0, 255, 0.34), transparent 38%),
            radial-gradient(circle at 50% 100%, rgba(220, 169, 101, 0.16), transparent 48%),
            linear-gradient(135deg, #050505 0%, #15091f 48%, #050505 100%);
        color: var(--text_color);
    }

.services_overview .background,
    .service_editorial .background {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
    }

.services_overview .wrapper,
    .service_editorial .wrapper {
        position: relative;
        z-index: 5;
    }

.service_svg_bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0.92;
    }

.service_light_line {
        fill: none;
        stroke-linecap: round;
        stroke-width: 2.4;
        stroke: url(#service_neon_gradient);
        stroke-dasharray: 1250;
        stroke-dashoffset: 1250;
        animation: serviceLineTrace 19s linear infinite;
        filter: drop-shadow(0 0 12px rgba(255,0,127,0.22));
    }

.service_light_line.sl_1 { stroke: #FF007F; }

.service_light_line.sl_2 { stroke: #7F00FF; animation-delay: -6s; opacity: 0.52; }

.service_light_line.sl_3 { stroke: #DCA965; animation-delay: -12s; opacity: 0.42; }

.service_orb {
        fill: #FF007F;
        opacity: 0.08;
        transform-origin: center;
        animation: serviceOrbDrift 14s ease-in-out infinite alternate;
    }

.service_orb.so_b { fill: #7F00FF; animation-delay: -4s; }

.service_orb.so_c { fill: #DCA965; animation-delay: -8s; }

@keyframes serviceLineTrace {
        0% { stroke-dashoffset: 1250; opacity: 0; }
        18% { opacity: 0.74; }
        52% { stroke-dashoffset: 0; opacity: 0.92; }
        86% { opacity: 0.34; }
        100% { stroke-dashoffset: -1250; opacity: 0; }
    }

@keyframes serviceOrbDrift {
        0% { transform: translate3d(-22px, 24px, 0) scale(0.92); }
        100% { transform: translate3d(28px, -30px, 0) scale(1.08); }
    }

.service_editorial_grid {
        display: grid;
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 76px;
        align-items: center;
    }

.service_editorial.reverse .service_visual { order: 2; }

.service_editorial.reverse .service_copy { order: 1; }

.service_copy .small_title { color: var(--gold_accent); }

.service_copy .big_title {
        background: none;
        -webkit-text-fill-color: currentColor;
        animation: none;
        color: inherit;
        margin-bottom: 24px;
    }

.service_copy .description {
        color: rgba(23, 16, 25, 0.72);
        margin-bottom: 26px;
    }

.service_editorial.dark .service_copy .description { color: rgba(255,255,255,0.75); }

.service_visual {
        min-height: 560px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

.service_visual_art {
        position: relative;
        width: min(450px, 88vw);
        aspect-ratio: 3 / 4;
        isolation: isolate;
        transform: rotate(-2.5deg);
    }

.service_editorial.reverse .service_visual_art { transform: rotate(2.5deg); }

.service_image_plate {
        position: absolute;
        inset: -30px 34px 36px -30px;
        z-index: -2;
        border-radius: 42px;
        background: var(--neon_gradient);
        opacity: 0.82;
        animation: servicePlateFloat 8s ease-in-out infinite alternate;
    }

.service_image_frame {
        overflow: hidden;
        border-radius: 38px 96px 42px 72px / 62px 38px 86px 48px;
        border: 1px solid rgba(255,255,255,0.72);
        box-shadow: 0 34px 84px rgba(44,20,58,0.22);
        animation: serviceImageMorph 9s ease-in-out infinite;
    }

.service_editorial.dark .service_image_frame {
        border-color: rgba(255,255,255,0.14);
        box-shadow: 0 36px 92px rgba(0,0,0,0.58), 0 0 44px rgba(255,0,127,0.18);
    }

.service_image_frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.06);
        filter: saturate(1.08) contrast(1.04);
    }

.service_orbit {
        position: absolute;
        inset: -38px;
        z-index: 4;
        border: 1px dashed rgba(220,169,101,0.48);
        border-radius: 50%;
        animation: serviceOrbitSpin 24s linear infinite;
        pointer-events: none;
    }

.service_orbit::before,
    .service_orbit::after {
        content: '';
        position: absolute;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: var(--gold_accent);
        box-shadow: 0 0 20px rgba(220,169,101,0.86);
    }

.service_orbit::before { top: 12%; left: 18%; }

.service_orbit::after { right: 9%; bottom: 23%; background: #FF007F; box-shadow: 0 0 22px rgba(255,0,127,0.78); }

.service_visual_chip {
        position: absolute;
        left: -28px;
        bottom: 42px;
        z-index: 6;
        padding: 14px 18px;
        border-radius: 999px;
        background: rgba(255,255,255,0.78);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        color: #171019;
        font-size: 0.8rem;
        font-weight: 800;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        box-shadow: 0 16px 38px rgba(0,0,0,0.14);
    }

.service_editorial.dark .service_visual_chip {
        background: rgba(15,12,18,0.68);
        border: 1px solid rgba(255,255,255,0.13);
        color: #fff;
    }

@keyframes serviceImageMorph {
        0%, 100% { border-radius: 38px 96px 42px 72px / 62px 38px 86px 48px; }
        50% { border-radius: 92px 40px 82px 46px / 40px 86px 46px 92px; }
    }

@keyframes servicePlateFloat {
        0% { transform: translate3d(-8px, 12px, 0) rotate(-3deg); }
        100% { transform: translate3d(12px, -10px, 0) rotate(4deg); }
    }

@keyframes serviceOrbitSpin { to { transform: rotate(360deg); } }

.overview_badges {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 30px;
    }

.overview_badges span {
        display: inline-flex;
        padding: 11px 15px;
        border-radius: 999px;
        background: rgba(255,255,255,0.72);
        border: 1px solid rgba(255,255,255,0.9);
        color: #5f5363;
        font-size: 0.86rem;
        font-weight: 700;
        box-shadow: 0 12px 28px rgba(44,20,58,0.08);
    }

.price_grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

.price_item {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
        gap: 18px;
        align-items: center;
        padding: 16px 18px;
        border-radius: 20px;
        background: rgba(255,255,255,0.72);
        border: 1px solid rgba(255,255,255,0.86);
        box-shadow: 0 16px 36px rgba(44,20,58,0.08);
    }

.service_editorial.dark .price_item {
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.13);
        box-shadow: 0 18px 48px rgba(0,0,0,0.22);
    }

.price_item strong {
        display: block;
        color: inherit;
        font-size: 0.98rem;
        line-height: 1.35;
    }

.price_item em {
        display: block;
        margin-top: 5px;
        color: rgba(23,16,25,0.58);
        font-size: 0.78rem;
        font-style: normal;
        line-height: 1.45;
    }

.service_editorial.dark .price_item em { color: rgba(255,255,255,0.58); }

.price_value {
        justify-self: end;
        color: var(--gold_accent);
        font-weight: 800;
        white-space: nowrap;
    }

.price_sizes {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

.price_sizes span {
        display: flex;
        flex-direction: column;
        gap: 3px;
        min-width: 0;
        padding: 9px 8px;
        border-radius: 14px;
        background: rgba(220,169,101,0.11);
        color: #171019;
        text-align: center;
        font-size: 0.82rem;
        font-weight: 800;
    }

.service_editorial.dark .price_sizes span {
        background: rgba(220,169,101,0.12);
        color: #fff;
    }

.price_sizes b {
        color: var(--gold_accent);
        font-size: 0.68rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

.service_note {
        margin: 18px 0 0;
        padding: 16px 18px;
        border-left: 3px solid var(--gold_accent);
        border-radius: 18px;
        background: rgba(220,169,101,0.1);
        color: rgba(23,16,25,0.68);
        line-height: 1.7;
        font-size: 0.92rem;
    }

.service_editorial.dark .service_note { color: rgba(255,255,255,0.72); }

.service_editorial.is_revealed .service_visual_art,
    .services_overview.is_revealed .service_visual_art {
        animation: serviceVisualReveal 0.9s cubic-bezier(0.25, 1, 0.5, 1) both;
    }

@keyframes serviceVisualReveal {
        from { opacity: 0; transform: translate3d(0, 34px, 0) rotate(0deg) scale(0.96); }
        to { opacity: 1; }
    }

@media (max-width: 991px) {
        .services_overview,
        .service_editorial { padding: 88px 0; }
        .service_editorial_grid { grid-template-columns: 1fr; gap: 44px; }
        .service_editorial.reverse .service_visual,
        .service_editorial.reverse .service_copy { order: initial; }
        .service_copy { text-align: center; }
        .service_visual { min-height: auto; }
        .overview_badges { justify-content: center; }
        .price_item { grid-template-columns: 1fr; text-align: left; }
        .price_value { justify-self: start; }
    }

@media (max-width: 640px) {
        .service_visual_art { width: min(360px, 82vw); }
        .service_orbit { inset: -22px; }
        .service_visual_chip { left: 50%; transform: translateX(-50%); bottom: 24px; white-space: nowrap; }
        .price_sizes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .price_item { padding: 15px; border-radius: 18px; }
    }

/* =========================================
       CUSTOMER PAGE - UNIQUE STYLES
    ========================================= */
.customer_intro,
    .customer_gallery_section {
        position: relative;
        overflow: hidden;
        isolation: isolate;
    }

.customer_intro {
        padding: 118px 0;
        background: linear-gradient(180deg, var(--app_background_color) 0%, #ffffff 48%, #fff7fb 100%);
        color: #171019;
    }

.customer_intro .background,
    .customer_gallery_section .background {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
    }

.customer_intro .wrapper,
    .customer_gallery_section .wrapper {
        position: relative;
        z-index: 5;
    }

.customer_intro_grid {
        display: grid;
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 76px;
        align-items: center;
    }

.customer_intro_svg,
    .customer_gallery_svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

.customer_thread {
        fill: none;
        stroke: url(#customer_intro_grad);
        stroke-width: 2.6;
        stroke-linecap: round;
        stroke-dasharray: 1180;
        stroke-dashoffset: 1180;
        opacity: 0.42;
        animation: customerThreadDraw 18s linear infinite;
        filter: drop-shadow(0 0 12px rgba(255,0,127,0.14));
    }

.ct_2 { animation-delay: -6s; opacity: 0.34; }

.ct_3 { animation-delay: -12s; opacity: 0.28; }

.customer_intro_orb {
        transform-origin: center;
        animation: customerOrbFloat 13s ease-in-out infinite alternate;
        opacity: 0.38;
    }

.cio_2 { animation-delay: -4s; }

.cio_3 { animation-delay: -8s; }

@keyframes customerThreadDraw {
        0% { stroke-dashoffset: 1180; opacity: 0; }
        18% { opacity: 0.55; }
        52% { stroke-dashoffset: 0; opacity: 0.72; }
        84% { opacity: 0.32; }
        100% { stroke-dashoffset: -1180; opacity: 0; }
    }

@keyframes customerOrbFloat {
        0% { transform: translate3d(-18px, 20px, 0) scale(0.94); opacity: 0.26; }
        100% { transform: translate3d(24px, -26px, 0) scale(1.08); opacity: 0.52; }
    }

.customer_intro_visual {
        position: relative;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.customer_photo_stack {
        position: relative;
        width: min(460px, 88vw);
        min-height: 560px;
        isolation: isolate;
    }

.photo_card {
        position: absolute;
        overflow: hidden;
        border-radius: 32px 88px 38px 64px / 54px 34px 78px 44px;
        border: 1px solid rgba(255,255,255,0.72);
        background: rgba(255,255,255,0.56);
        box-shadow: 0 34px 84px rgba(44,20,58,0.18);
        transform: translateZ(0);
    }

.photo_card .lazy_image_container {
        overflow: hidden;
        border-radius: inherit;
        animation: customerPhotoMorph 9s ease-in-out infinite;
    }

.photo_card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.06);
        filter: saturate(1.08) contrast(1.04);
    }

.photo_card_main {
        inset: 24px 42px 32px 20px;
        z-index: 3;
        transform: rotate(-2.5deg);
    }

.photo_card_main::before {
        content: '';
        position: absolute;
        inset: -26px 34px 38px -24px;
        z-index: -1;
        border-radius: 44px;
        background: var(--neon_gradient);
        opacity: 0.78;
        animation: customerPlateDrift 8s ease-in-out infinite alternate;
    }

.photo_card_float {
        width: 190px;
        aspect-ratio: 3 / 4;
        z-index: 5;
        border-radius: 24px 54px 28px 42px / 36px 24px 54px 30px;
    }

.photo_card_one {
        right: -28px;
        top: 44px;
        transform: rotate(9deg);
        animation: customerFloatCard 8s ease-in-out infinite alternate;
    }

.photo_card_two {
        left: -30px;
        bottom: 34px;
        transform: rotate(-8deg);
        animation: customerFloatCard 9s ease-in-out infinite alternate-reverse;
    }

.customer_orbit {
        position: absolute;
        inset: -16px 14px 18px -18px;
        border-radius: 50%;
        border: 1px dashed rgba(220,169,101,0.48);
        animation: customerOrbitRotate 24s linear infinite;
        z-index: 6;
        pointer-events: none;
    }

.customer_orbit::before,
    .customer_orbit::after {
        content: '';
        position: absolute;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: var(--gold_accent);
        box-shadow: 0 0 20px rgba(220,169,101,0.86);
    }

.customer_orbit::before { top: 10%; left: 18%; }

.customer_orbit::after { right: 8%; bottom: 24%; background: #FF007F; box-shadow: 0 0 22px rgba(255,0,127,0.78); }

.customer_visual_badge {
        position: absolute;
        left: 50%;
        bottom: 5px;
        transform: translateX(-50%);
        z-index: 8;
        padding: 14px 20px;
        border-radius: 999px;
        background: rgba(255,255,255,0.78);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        color: #171019;
        font-size: 0.8rem;
        font-weight: 800;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        white-space: nowrap;
        box-shadow: 0 16px 38px rgba(0,0,0,0.14);
    }

@keyframes customerPhotoMorph {
        0%, 100% { border-radius: 32px 88px 38px 64px / 54px 34px 78px 44px; }
        50% { border-radius: 82px 36px 74px 42px / 36px 76px 42px 84px; }
    }

@keyframes customerPlateDrift {
        0% { transform: translate3d(-8px, 12px, 0) rotate(-3deg); }
        100% { transform: translate3d(12px, -10px, 0) rotate(4deg); }
    }

@keyframes customerFloatCard {
        0% { translate: 0 0; }
        100% { translate: 0 -18px; }
    }

@keyframes customerOrbitRotate { to { transform: rotate(360deg); } }

.customer_intro_copy .small_title { color: var(--gold_accent); }

.customer_intro_copy .big_title {
        background: none;
        -webkit-text-fill-color: #171019;
        animation: none;
        color: #171019;
        margin-bottom: 26px;
    }

.customer_intro_copy .description {
        color: rgba(23,16,25,0.72);
        margin-bottom: 26px;
    }

.customer_intro_points {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

.customer_intro_points span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255,255,255,0.72);
        border: 1px solid rgba(255,255,255,0.86);
        color: #4f4355;
        font-size: 0.84rem;
        font-weight: 700;
        box-shadow: 0 14px 34px rgba(44,20,58,0.08);
    }

.customer_intro_points span::before {
        content: '';
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--gold_accent);
        box-shadow: 0 0 12px rgba(220,169,101,0.7);
    }

.customer_gallery_section {
        padding: 112px 0 126px;
        background:
            radial-gradient(circle at 18% 22%, rgba(255, 0, 127, 0.52) 0%, rgba(255, 0, 127, 0.1) 30%, transparent 56%),
            radial-gradient(circle at 82% 18%, rgba(127, 0, 255, 0.66) 0%, rgba(127, 0, 255, 0.12) 32%, transparent 60%),
            linear-gradient(135deg, #050505 0%, #16091f 44%, #050505 100%);
        color: var(--text_color);
    }

.customer_gallery_section::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
            linear-gradient(180deg, rgba(5,5,5,0.18) 0%, rgba(5,5,5,0.46) 100%),
            radial-gradient(circle at 50% 50%, transparent 0%, rgba(5,5,5,0.42) 74%);
        pointer-events: none;
    }

.gallery_light_path {
        fill: none;
        stroke: url(#gallery_line_grad);
        stroke-width: 2.8;
        stroke-linecap: round;
        stroke-dasharray: 1150;
        stroke-dashoffset: 1150;
        opacity: 0.62;
        animation: galleryLineTravel 17s linear infinite;
        filter: drop-shadow(0 0 14px rgba(255,0,127,0.32));
    }

.glp_2 { animation-delay: -6s; opacity: 0.48; }

.glp_3 { animation-delay: -12s; opacity: 0.38; }

.gallery_spark {
        fill: var(--gold_accent);
        transform-origin: center;
        opacity: 0;
        animation: gallerySparkFloat ease-in-out infinite;
    }

.gs_1 { animation-duration: 13s; animation-delay: 0s; }

.gs_2 { animation-duration: 18s; animation-delay: 4s; fill: #FF007F; }

.gs_3 { animation-duration: 15s; animation-delay: 8s; fill: #7F00FF; }

.gs_4 { animation-duration: 21s; animation-delay: 2s; }

@keyframes galleryLineTravel {
        0% { stroke-dashoffset: 1150; opacity: 0; }
        18% { opacity: 0.74; }
        52% { stroke-dashoffset: 0; opacity: 0.9; }
        84% { opacity: 0.38; }
        100% { stroke-dashoffset: -1150; opacity: 0; }
    }

@keyframes gallerySparkFloat {
        0% { transform: translate3d(0, 46px, 0) scale(0.65); opacity: 0; }
        24% { opacity: 0.62; }
        70% { opacity: 0.28; }
        100% { transform: translate3d(34px, -210px, 0) scale(1.18); opacity: 0; }
    }

.gallery_header {
        position: relative;
        z-index: 5;
        max-width: 820px;
        margin: 0 auto 58px;
        text-align: center;
    }

.gallery_header .small_title { color: var(--gold_accent); }

.gallery_header .big_title {
        background: none;
        -webkit-text-fill-color: #fff;
        animation: none;
        color: #fff;
        margin-bottom: 22px;
    }

.gallery_header .description {
        max-width: 720px;
        margin: 0 auto;
        color: rgba(255,255,255,0.72);
        line-height: 1.82;
    }

.customer_masonry_gallery {
        position: relative;
        z-index: 5;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-rows: 12px;
        grid-auto-flow: dense;
        gap: 22px;
    }

.gallery_tile {
        position: relative;
        display: block;
        width: 100%;
        min-height: 220px;
        padding: 0;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 26px;
        background: rgba(255,255,255,0.06);
        box-shadow: 0 24px 64px rgba(0,0,0,0.32);
        cursor: zoom-in;
        isolation: isolate;
        transform: translateZ(0);
        transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.45s ease, border-color 0.45s ease;
    }

.gallery_tile::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 2;
        background:
            linear-gradient(180deg, transparent 0%, rgba(5,5,5,0.1) 42%, rgba(5,5,5,0.78) 100%),
            radial-gradient(circle at 18% 16%, rgba(255,0,127,0.18), transparent 34%);
        opacity: 0;
        transition: opacity 0.35s ease;
        pointer-events: none;
    }

.gallery_tile::after {
        content: attr(data-service);
        position: absolute;
        left: 18px;
        right: 18px;
        bottom: 18px;
        z-index: 4;
        color: #fff;
        font-size: 0.84rem;
        font-weight: 800;
        letter-spacing: 1.3px;
        text-transform: uppercase;
        transform: translateY(12px);
        opacity: 0;
        transition: all 0.35s ease;
    }

.gallery_tile:hover {
        transform: translateY(-8px) scale(1.012);
        border-color: rgba(220,169,101,0.46);
        box-shadow: 0 32px 82px rgba(0,0,0,0.44), 0 0 28px rgba(255,0,127,0.12);
    }

.gallery_tile:hover::before { opacity: 1; }

.gallery_tile:hover::after { transform: translateY(0); opacity: 1; }

.gallery_tile img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.04);
        filter: saturate(1.06) contrast(1.04);
        transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), filter 0.7s ease;
        pointer-events: none;
        user-select: none;
    }

.gallery_tile:hover img {
        transform: scale(1.12) rotate(0.5deg);
        filter: saturate(1.16) contrast(1.08);
    }

.gallery_modal {
        position: fixed;
        inset: 0;
        z-index: 3000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

.gallery_modal.is_open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.gallery_modal_backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.84);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

.gallery_modal_shell {
        position: relative;
        z-index: 2;
        width: min(1120px, calc(100vw - 34px));
        height: min(780px, calc(100dvh - 34px));
        display: grid;
        grid-template-rows: 1fr auto auto;
        gap: 14px;
        padding: 18px;
        border-radius: 30px;
        background: rgba(12,10,16,0.72);
        border: 1px solid rgba(255,255,255,0.13);
        box-shadow: 0 40px 110px rgba(0,0,0,0.62), inset 0 1px 0 rgba(255,255,255,0.08);
    }

.gallery_modal_stage {
        position: relative;
        overflow: hidden;
        border-radius: 22px;
        background: #050505;
        border: 1px solid rgba(255,255,255,0.08);
        cursor: grab;
        touch-action: none;
    }

.gallery_modal_stage.is_dragging { cursor: grabbing; }

.gallery_modal_stage img {
        position: absolute;
        top: 50%;
        left: 50%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transform: translate3d(-50%, -50%, 0) scale(1);
        transform-origin: center;
        will-change: transform;
        user-select: none;
        -webkit-user-drag: none;
        pointer-events: none;
    }

.gallery_modal_btn {
        position: absolute;
        z-index: 8;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 1px solid rgba(220,169,101,0.48);
        background: rgba(10,10,10,0.62);
        color: var(--gold_accent);
        font-size: 32px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    }

.gallery_modal_btn:hover {
        transform: scale(1.08);
        background: var(--gold_accent);
        color: #050505;
    }

.gallery_modal_close { top: 28px; right: 28px; }

.gallery_modal_prev { left: 28px; top: 50%; transform: translateY(-50%); }

.gallery_modal_next { right: 28px; top: 50%; transform: translateY(-50%); }

.gallery_modal_prev:hover,
    .gallery_modal_next:hover { transform: translateY(-50%) scale(1.08); }

.gallery_modal_toolbar {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

.gallery_modal_toolbar button,
    .gallery_modal_toolbar span {
        min-width: 44px;
        height: 38px;
        padding: 0 14px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.14);
        background: rgba(255,255,255,0.08);
        color: #fff;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

.gallery_modal_toolbar button {
        cursor: pointer;
        transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }

.gallery_modal_toolbar button:hover {
        background: var(--gold_accent);
        color: #050505;
        border-color: var(--gold_accent);
    }

.gallery_modal_caption {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        text-align: center;
        color: rgba(255,255,255,0.72);
        line-height: 1.55;
        padding-bottom: 2px;
    }

.gallery_modal_caption strong {
        color: var(--gold_accent);
        letter-spacing: 1.2px;
        text-transform: uppercase;
        font-size: 0.82rem;
    }

body.gallery_modal_locked { overflow: hidden; }

@media (max-width: 991px) {
        .customer_intro { padding: 88px 0; }
        .customer_intro_grid { grid-template-columns: 1fr; gap: 42px; }
        .customer_intro_copy { text-align: center; }
        .customer_intro_points { justify-content: center; }
        .customer_intro_visual { min-height: 560px; }
        .customer_masonry_gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    }

@media (max-width: 700px) {
        .customer_gallery_section { padding: 86px 0 96px; }
        .customer_masonry_gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; grid-auto-rows: 10px; }
        .gallery_tile { border-radius: 20px; min-height: 160px; }
        .customer_photo_stack { width: min(380px, 86vw); min-height: 500px; }
        .photo_card_float { width: 150px; }
        .photo_card_one { right: -8px; }
        .photo_card_two { left: -8px; }
        .gallery_modal_shell { width: calc(100vw - 18px); height: calc(100dvh - 18px); border-radius: 22px; padding: 12px; }
        .gallery_modal_stage { border-radius: 18px; }
        .gallery_modal_btn { width: 42px; height: 42px; font-size: 28px; }
        .gallery_modal_close { top: 18px; right: 18px; }
        .gallery_modal_prev { left: 18px; }
        .gallery_modal_next { right: 18px; }
    }

@media (max-width: 420px) {
        .customer_masonry_gallery { grid-template-columns: 1fr; }
        .customer_intro_visual { min-height: 460px; }
        .customer_photo_stack { min-height: 440px; }
        .photo_card_float { display: none; }
        .photo_card_main { inset: 18px 22px 28px 18px; }
        .customer_visual_badge { font-size: 0.72rem; }
    }

/* =========================================
       CONTACT PAGE - HERO & INFORMATION
    ========================================= */
.contact_hero .background {
        background:
            radial-gradient(circle at 76% 42%, rgba(255, 0, 127, 0.26) 0%, transparent 34%),
            radial-gradient(circle at 88% 18%, rgba(127, 0, 255, 0.28) 0%, transparent 30%),
            radial-gradient(circle at 22% 62%, rgba(220, 169, 101, 0.18) 0%, transparent 36%),
            linear-gradient(135deg, #050505 0%, #17091f 48%, #050505 100%);
    }

.contact_hero .text_box { max-width: 650px; }

.contact_hero .description { max-width: 560px; }

.contact_info {
        position: relative;
        padding: 118px 0 128px;
        overflow: hidden;
        isolation: isolate;
        background: linear-gradient(180deg, var(--app_background_color) 0%, #ffffff 50%, #fff7fb 100%);
        color: #171019;
    }

.contact_info .background {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
    }

.contact_svg_bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

.contact_line {
        fill: none;
        stroke-linecap: round;
        stroke-dasharray: 1200;
        stroke-dashoffset: 1200;
        animation: contactLineFlow 18s linear infinite;
        filter: drop-shadow(0 0 10px rgba(255, 0, 127, 0.16));
    }

.contact_line.cl_2 { animation-delay: -6s; opacity: 0.5; }

.contact_line.cl_3 { animation-delay: -12s; opacity: 0.38; }

.contact_blob {
        transform-origin: center;
        animation: contactBlobFloat 13s ease-in-out infinite alternate;
    }

.contact_blob.cb_2 { animation-delay: -4s; }

.contact_blob.cb_3 { animation-delay: -8s; }

@keyframes contactLineFlow {
        0% { stroke-dashoffset: 1200; opacity: 0; }
        18% { opacity: 0.7; }
        52% { stroke-dashoffset: 0; opacity: 0.88; }
        86% { opacity: 0.34; }
        100% { stroke-dashoffset: -1200; opacity: 0; }
    }

@keyframes contactBlobFloat {
        0% { transform: translate3d(-18px, 20px, 0) scale(0.94); opacity: 0.42; }
        100% { transform: translate3d(24px, -26px, 0) scale(1.08); opacity: 0.86; }
    }

.contact_info .wrapper { position: relative; z-index: 5; }

.contact_info_header {
        max-width: 780px;
        margin: 0 auto 62px;
        text-align: center;
    }

.contact_info .small_title { color: var(--gold_accent); }

.contact_info .big_title {
        color: #171019;
        background: none;
        -webkit-text-fill-color: #171019;
        animation: none;
        margin-bottom: 22px;
    }

.contact_info .description {
        max-width: 700px;
        margin: 0 auto;
        color: #5f5363;
        line-height: 1.85;
    }

.contact_grid {
        display: grid;
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 42px;
        align-items: stretch;
    }

.contact_visual_card,
    .contact_detail_card,
    .contact_map_card {
        border-radius: 34px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.9);
        box-shadow: 0 30px 76px rgba(44, 20, 58, 0.14), inset 0 1px 0 rgba(255,255,255,0.88);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

.contact_visual_card {
        position: relative;
        min-height: 720px;
        overflow: hidden;
        isolation: isolate;
    }

.contact_visual_card::before {
        content: '';
        position: absolute;
        inset: 24px;
        z-index: 4;
        border: 1px solid rgba(220, 169, 101, 0.38);
        border-radius: 28px;
        pointer-events: none;
    }

.contact_visual_card::after {
        content: '';
        position: absolute;
        inset: auto -18% -18% -18%;
        height: 48%;
        z-index: 3;
        background: linear-gradient(0deg, rgba(13, 8, 18, 0.88) 0%, rgba(13, 8, 18, 0.54) 48%, transparent 100%);
        pointer-events: none;
    }

.contact_visual_card img {
        width: 100%;
        height: 100%;
        min-height: 720px;
        object-fit: cover;
        object-position: right center;
        transform: scale(1.05);
        filter: saturate(1.08) contrast(1.04);
    }

.contact_visual_badge {
        position: absolute;
        top: 38px;
        left: 38px;
        z-index: 5;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 11px 17px;
        border-radius: 999px;
        background: rgba(255,255,255,0.74);
        color: #171019;
        box-shadow: 0 14px 32px rgba(0,0,0,0.12);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

.contact_visual_badge::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--neon_gradient);
        box-shadow: 0 0 14px rgba(255,0,127,0.7);
    }

.contact_visual_caption {
        position: absolute;
        left: 38px;
        right: 38px;
        bottom: 38px;
        z-index: 5;
        padding: 26px;
        border-radius: 26px;
        background: rgba(15, 12, 18, 0.62);
        border: 1px solid rgba(255,255,255,0.16);
        color: #fff;
        box-shadow: 0 18px 46px rgba(0,0,0,0.28);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

.contact_visual_caption strong {
        display: block;
        margin-bottom: 10px;
        font-family: var(--font_serif);
        font-size: 1.7rem;
        line-height: 1.15;
    }

.contact_visual_caption span {
        color: rgba(255,255,255,0.78);
        line-height: 1.75;
        font-size: 0.96rem;
    }

.contact_right_stack {
        display: grid;
        gap: 24px;
    }

.contact_detail_card { padding: 34px; }

.contact_card_title {
        margin: 0 0 24px;
        font-family: var(--font_serif);
        font-size: 2rem;
        line-height: 1.16;
        color: #171019;
    }

.contact_list {
        display: grid;
        gap: 14px;
    }

.contact_item {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
        padding: 16px;
        border-radius: 20px;
        background: rgba(255,255,255,0.7);
        border: 1px solid rgba(220,169,101,0.18);
        box-shadow: 0 14px 34px rgba(44,20,58,0.06);
    }

.contact_icon {
        width: 46px;
        aspect-ratio: 1 / 1;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: var(--neon_gradient);
        box-shadow: 0 12px 28px rgba(255,0,127,0.22);
    }

.contact_icon svg { width: 22px; height: 22px; }

.contact_label {
        display: block;
        margin-bottom: 5px;
        color: var(--gold_accent);
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 1.2px;
        text-transform: uppercase;
    }

.contact_value {
        color: #271d2b;
        font-size: 0.98rem;
        line-height: 1.6;
        font-weight: 600;
    }

.contact_value a {
        color: inherit;
        transition: color 0.3s ease;
    }

.contact_value a:hover { color: #FF007F; }

.contact_actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 26px;
    }

.contact_actions .btn_primary { padding: 14px 30px; }

.btn_outline_gold {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 13px 28px;
        border-radius: 999px;
        border: 1px solid var(--gold_accent);
        color: #171019;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 0.86rem;
        background: rgba(255,255,255,0.54);
        transition: all 0.3s ease;
    }

.btn_outline_gold:hover {
        background: var(--gold_accent);
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(220,169,101,0.28);
    }

.contact_map_card {
        overflow: hidden;
        min-height: 340px;
        position: relative;
    }

.contact_map_card iframe {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 340px;
        border: 0;
        filter: saturate(0.9) contrast(1.02);
    }

.contact_map_note {
        position: absolute;
        left: 18px;
        right: 18px;
        bottom: 18px;
        z-index: 2;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(15,12,18,0.68);
        color: rgba(255,255,255,0.84);
        font-size: 0.86rem;
        line-height: 1.55;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255,255,255,0.12);
    }

@media (max-width: 991px) {
        .contact_info { padding: 88px 0 96px; }
        .contact_grid { grid-template-columns: 1fr; }
        .contact_visual_card { min-height: 560px; }
        .contact_visual_card img { min-height: 560px; }
    }

@media (max-width: 640px) {
        .contact_info_header { margin-bottom: 42px; }
        .contact_visual_card,
        .contact_detail_card,
        .contact_map_card { border-radius: 26px; }
        .contact_visual_card { min-height: 500px; }
        .contact_visual_card img { min-height: 500px; object-position: 70% center; }
        .contact_visual_badge { top: 24px; left: 24px; }
        .contact_visual_caption { left: 22px; right: 22px; bottom: 22px; padding: 22px; }
        .contact_detail_card { padding: 24px; }
        .contact_card_title { font-size: 1.65rem; }
        .contact_item { grid-template-columns: 40px minmax(0, 1fr); padding: 14px; }
        .contact_icon { width: 40px; border-radius: 14px; }
        .contact_actions { flex-direction: column; }
        .contact_actions .btn_primary,
        .btn_outline_gold { width: 100%; box-sizing: border-box; }
    }

.cx-layer { animation-name: cWgMove; animation-timing-function: linear; animation-iteration-count: infinite; }

@keyframes cWgMove { from { transform: translate3d(-1440px,0,0); } to { transform: translate3d(0,0,0); } }

.cx-l0 { animation-duration: 11.23s; }

/* Inline style fallback đã gặp trong các file HTML */
.fatal_error_msg span {
    font-size: 13px;
    opacity: 0.8;
    color: #fff;
}
