/* ============================================================
   INTERIOR DESIGN — Cream & Beige Elegant Theme
   ============================================================ */

/* --- Google Fonts --- */

/* --- Design Tokens --- */
:root {
  --bg: #FFFFFF;
  --gold-on-light: #8B650A;
  --bg-secondary: #F8F6F2;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FDF8EE;
  --gold: #E8A811;
  --gold-light: #F2BE3A;
  --gold-dark: #C48E0E;
  --green: #1a4b30;
  --green-light: #245e3d;
  --green-dark: #123822;
  --text: #2D2A26;
  --text-muted: #6B6560;
  --text-dark: #1a1a1a;
  --border: rgba(232,168,17,0.2);
  --border-strong: rgba(232,168,17,0.35);
  --success: #2e7d32;
  --danger: #d32f2f;
  --overlay: rgba(26,75,48,0.7);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1280px;
  --header-h: 72px;
  --topbar-h: 0px;
}

/* --- Reset & Base --- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased}
body{font-family:var(--font-body);background:var(--bg);color:var(--text);line-height:1.7;font-size:15px;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:var(--gold);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--gold-light)}
::selection{background:var(--green);color:#fff}

/* --- Typography --- */
h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);font-weight:700;line-height:1.2;color:var(--text)}
h1{font-size:clamp(2.2rem,5vw,3.8rem);letter-spacing:-0.02em}
h2{font-size:clamp(1.2rem,3.5vw,1.4rem)}
h3{font-size:clamp(1.3rem,2.5vw,1.8rem)}
.section-label{font-family:var(--font-body);font-size:0.75rem;font-weight:600;text-transform:uppercase;letter-spacing:3px;color:var(--gold, #E8A811);margin-bottom:12px;display:flex;align-items:center;gap:12px}
.section-label::before{content:'';width:40px;height:1px;background:var(--gold, #E8A811)}
.section-title{margin-bottom:32px}
.section-subtitle{color:var(--text-muted);font-size:1.05rem;max-width:600px;line-height:1.8}

/* --- Container --- */
.container{width:100%;max-width:var(--max-width);margin:0 auto;padding:0 24px}
.section{padding:50px 0}
.section-dark{background:var(--bg-secondary)}

/* --- Buttons --- */
.btn{display:inline-flex;align-items:center;gap:8px;padding:14px 32px;border:none;border-radius:var(--radius);font-family:var(--font-body);font-size:0.9rem;font-weight:600;cursor:pointer;transition:all var(--transition);text-decoration:none;letter-spacing:0.5px}
.btn-gold{background:linear-gradient(135deg,var(--green),var(--green-dark));color:#fff}
.btn-gold:hover{transform:translateY(-2px);box-shadow:0 8px 30px rgba(26,75,48,0.35);color:#fff}
.btn-outline{background:transparent;border:1px solid var(--green);color:var(--green)}
.btn-outline:hover{background:var(--green);color:#fff}
.btn-sm{padding:10px 20px;font-size:0.8rem}
.btn-lg{padding:18px 42px;font-size:1rem}

/* --- Top Bar (hidden in cream theme) --- */
.top-bar{display:none}

/* --- Header / Nav (single row, matching PDF) --- */
.site-header{position:fixed;top:0;left:0;right:0;height:var(--header-h);z-index:1000;transition:all 0.4s cubic-bezier(0.4,0,0.2,1);background:rgba(253,248,240,0.97);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);border-bottom:1px solid var(--border)}
body.has-transparent-header .site-header{background:rgba(253,248,240,0.95) !important}
.site-header.scrolled{background:rgba(253,248,240,0.98) !important;box-shadow:0 2px 20px rgba(232,168,17,0.08)}
.header-inner{max-width:var(--max-width);margin:0 auto;padding:0 clamp(16px,3vw,32px);display:flex;align-items:center;justify-content:space-between;height:100%;gap:16px}

.site-logo{display:flex;align-items:center;gap:12px;text-decoration:none;flex-shrink:0}
.site-logo img{height:48px;width:auto}
.logo-text{display:flex;flex-direction:column}
.logo-name{font-family:var(--font-heading);font-size:1.5rem;font-weight:700;color:var(--text);letter-spacing:1px;line-height:1.1}
.logo-tagline{font-size:0.65rem;color:var(--text-muted);letter-spacing:2px;text-transform:uppercase}

/* Desktop Nav */
.main-nav{display:flex;flex:1;justify-content:center}
.nav-menu{display:flex;gap:0;list-style:none;align-items:center}
.nav-menu>li{position:relative}
.nav-menu>li>a{color:var(--text);font-size:0.78rem;font-weight:600;letter-spacing:0.8px;text-transform:uppercase;padding:22px 14px;display:flex;align-items:center;gap:6px;position:relative;transition:color 0.2s;white-space:nowrap}
.nav-menu>li>a::after{content:'';position:absolute;bottom:16px;left:14px;right:14px;height:2px;background:var(--gold);transform:scaleX(0);transition:transform 0.3s}
.nav-menu>li:hover>a::after,.nav-menu>li>a.active::after{transform:scaleX(1)}
.nav-menu>li:hover>a,.nav-menu>li>a.active{color:var(--gold)}
.nav-arrow{font-size:0.55rem;transition:transform 0.2s;opacity:0.5}
.has-dropdown:hover .nav-arrow{transform:rotate(180deg);opacity:1}

/* Header Right: Search + Hotline */
.header-right{display:flex;align-items:center;gap:16px;flex-shrink:0}
.header-search-form{display:flex;align-items:center}
.header-search-input{width:160px;padding:8px 14px;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);color:var(--text);font-size:0.8rem;font-family:var(--font-body);transition:border-color 0.2s}
.header-search-input::placeholder{color:var(--text-muted);font-size:0.8rem}
.header-search-input:focus{outline:none;border-color:var(--gold);width:200px}
.header-hotline{color:var(--gold);font-size:0.8rem;font-weight:700;letter-spacing:0.5px;text-decoration:none;white-space:nowrap;transition:color 0.2s}
.header-hotline:hover{color:var(--gold-dark)}

/* Hamburger */
.mobile-toggle{display:none;background:none;border:none;cursor:pointer;width:32px;height:24px;position:relative;padding:0}
.mobile-toggle span{display:block;position:absolute;height:2px;width:100%;background:var(--text);left:0;transition:all 0.3s}
.mobile-toggle span:nth-child(1){top:0}
.mobile-toggle span:nth-child(2){top:11px}
.mobile-toggle span:nth-child(3){top:22px}
.mega-dropdown{position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(8px);min-width:600px;background:rgba(255,255,255,0.98);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px;opacity:0;visibility:hidden;transition:all 0.3s;z-index:100;box-shadow:0 20px 60px rgba(0,0,0,0.08)}
.has-dropdown:hover>.mega-dropdown{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.mega-inner{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:24px}
.mega-heading{display:flex;align-items:center;gap:10px;color:var(--text);font-size:0.88rem;font-weight:600;padding:8px 0;border-bottom:1px solid var(--border);margin-bottom:8px;transition:color 0.2s}
.mega-heading i{color:var(--gold);width:20px;text-align:center;font-size:0.9rem}
.mega-heading:hover{color:var(--gold)}
.mega-sub{list-style:none;padding:0}
.mega-sub li a{display:block;padding:6px 0 6px 30px;color:var(--text-muted);font-size:0.8rem;transition:all 0.2s;position:relative}
.mega-sub li a::before{content:'';position:absolute;left:12px;top:50%;width:8px;height:1px;background:var(--border);transition:all 0.2s}
.mega-sub li a:hover{color:var(--gold);padding-left:36px}
.mega-sub li a:hover::before{background:var(--gold);width:14px}

/* Simple Dropdown */
.simple-dropdown{position:absolute;top:100%;left:0;min-width:240px;background:rgba(255,255,255,0.98);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid var(--border);border-radius:var(--radius);padding:8px 0;opacity:0;visibility:hidden;transition:all 0.3s;z-index:100;box-shadow:0 10px 40px rgba(0,0,0,0.08);list-style:none;pointer-events:none;transform:translateY(8px)}
.has-dropdown:hover>.simple-dropdown{opacity:1;visibility:visible;transform:translateY(0);pointer-events:auto}
.simple-dropdown li{position:relative;break-inside:avoid}
.simple-dropdown li a{display:flex;justify-content:space-between;align-items:center;padding:10px 24px;color:var(--text-muted);font-size:0.85rem;transition:all 0.2s;white-space:nowrap}
.simple-dropdown li a:hover{color:var(--gold);background:rgba(232,168,17,0.06);padding-left:28px}
.simple-dropdown li a i.fa-chevron-right{font-size:0.55rem;opacity:0.5;transition:transform 0.2s;margin-left:12px}
.simple-dropdown li:hover>a i.fa-chevron-right{opacity:1}
/* Auto 2-column only when explicitly marked */
.simple-dropdown.multi-col{columns:2;min-width:480px}
/* Level 3: fly right */
.simple-dropdown .simple-dropdown{top:0;left:100%;transform:translateX(8px) translateY(0);min-width:240px;columns:1}
.simple-dropdown .has-dropdown:hover>.simple-dropdown{transform:translateX(0) translateY(0);pointer-events:auto}



/* Mobile Menu */
.mobile-overlay{position:fixed;inset:0;background:rgba(45,42,38,0.4);z-index:1500;opacity:0;visibility:hidden;transition:all 0.3s}
.mobile-overlay.open{opacity:1;visibility:visible}
.mobile-menu{position:fixed;top:0;right:-320px;width:320px;height:100vh;background:var(--bg);z-index:1600;transition:right 0.4s cubic-bezier(0.4,0,0.2,1);display:flex;flex-direction:column;overflow-y:auto;border-left:1px solid var(--border)}
.mobile-menu.open{right:0}
.mobile-menu-header{display:flex;align-items:center;justify-content:space-between;padding:20px;border-bottom:1px solid var(--border)}
.mobile-close{background:none;border:none;color:var(--text-muted);font-size:1.3rem;cursor:pointer;width:40px;height:40px;display:flex;align-items:center;justify-content:center}
.mobile-close:hover{color:var(--gold)}
.mobile-nav{list-style:none;padding:12px 0;flex:1}
.mobile-nav>li{border-bottom:1px solid var(--border)}
.mobile-nav-row{display:flex;align-items:center;justify-content:space-between}
.mobile-nav-row>a{flex:1;padding:14px 20px;color:var(--text);font-size:0.9rem;font-weight:500}
.mobile-expand{background:none;border:none;border-left:1px solid var(--border);color:var(--gold);width:48px;height:48px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:0.8rem}
.mobile-sub{list-style:none;max-height:0;overflow:hidden;transition:max-height 0.4s;background:rgba(232,168,17,0.04)}
.has-sub.expanded>.mobile-sub{max-height:600px}
.mobile-sub li a{display:flex;align-items:center;gap:10px;padding:10px 20px 10px 32px;color:var(--text-muted);font-size:0.85rem;transition:color 0.2s}
.mobile-sub li a i{color:var(--gold);width:18px;text-align:center;font-size:0.8rem}
.mobile-sub li a:hover{color:var(--gold)}
.mobile-sub-2{list-style:none;padding-left:20px}
.mobile-sub-2 li a{padding:6px 20px 6px 42px;font-size:0.8rem}
.mobile-menu-footer{padding:20px;border-top:1px solid var(--border);margin-top:auto}

/* --- Hero --- */
.hero{position:relative;height:100vh;min-height:600px;display:flex;align-items:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img,.hero-bg video{width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(253,248,240,0.92) 0%,rgba(253,248,240,0.5) 100%);z-index:1}
.section-hero-banner{display:flex;flex-direction:column;}
.hero-content{position:relative;z-index:2;width:100%;max-width:1280px;margin:0 auto;padding:0 clamp(16px,4vw,48px);}
.hero-align-center{text-align:center;display:flex;flex-direction:column;align-items:center;}
.hero-align-left{text-align:left;display:flex;flex-direction:column;align-items:flex-start;}
.hero-align-right{text-align:right;display:flex;flex-direction:column;align-items:flex-end;}

.hero-subtitle{color:var(--gold);font-size:clamp(0.9rem, 2vw, 1.1rem);text-transform:uppercase;letter-spacing:3px;margin-bottom:16px;font-weight:600;}
.hero-title{font-family:var(--font-heading);font-weight:700;color:var(--text);margin-bottom:24px;line-height:1.2;font-size:clamp(2.5rem, 6vw, 4.5rem);}
.hero-title .gold{color:var(--gold);}
.hero-desc{color:var(--text-muted);font-size:clamp(1.05rem, 2vw, 1.25rem);margin-bottom:40px;line-height:1.8;max-width:800px;}

.hero-buttons{display:flex;gap:16px;flex-wrap:wrap;margin-top:24px;}
.hero-stats{position:absolute;bottom:0;left:0;right:0;z-index:2;background:rgba(253,248,240,0.9);backdrop-filter:blur(10px);border-top:1px solid var(--border)}
.hero-stats-inner{max-width:var(--max-width);margin:0 auto;padding:20px 24px;display:flex;justify-content:center;gap:60px}
.hero-stat{text-align:center}
.hero-stat-number{font-family:var(--font-heading);font-size:2rem;font-weight:700;color:var(--gold)}
.hero-stat-label{font-size:0.75rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:1px;margin-top:4px}

/* --- Cards --- */
.card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:all var(--transition)}
.card:hover{border-color:var(--border-strong);transform:translateY(-4px);box-shadow:0 20px 60px rgba(0,0,0,0.06)}
.card-img{position:relative;overflow:hidden;aspect-ratio:4/3}
.card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease}
.card:hover .card-img img{transform:scale(1.05)}
.card-img-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(45,42,38,0.5) 0%,transparent 50%);opacity:0;transition:opacity var(--transition)}
.card:hover .card-img-overlay{opacity:1}
.card-body{padding:20px;text-align:center}
.card-body h3{font-size:1.05rem;margin-bottom:6px}
.card-body p{color:var(--text-muted);font-size:0.85rem}
.card-tag{display:inline-block;padding:4px 12px;background:rgba(26,75,48,0.1);color:var(--green);font-size:0.72rem;font-weight:600;border-radius:20px;text-transform:uppercase;letter-spacing:0.5px;margin-bottom:6px}

/* --- Project Grid --- */
.project-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.project-filter{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:40px}
.project-filter button{padding:8px 20px;border:1px solid var(--border);border-radius:30px;background:transparent;color:var(--text-muted);font-family:var(--font-body);font-size:0.8rem;cursor:pointer;transition:all var(--transition)}
.project-filter button.active,.project-filter button:hover{background:var(--gold);color:var(--text-dark);border-color:var(--gold)}

/* --- Service Cards --- */
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.service-card{text-align:center;padding:48px 32px;border:1px solid var(--border);border-radius:var(--radius-lg);background:var(--bg-card);transition:all var(--transition)}
.service-card:hover{border-color:var(--gold);transform:translateY(-6px)}
.service-card .icon{width:64px;height:64px;margin:0 auto 20px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:rgba(232,168,17,0.1);color:var(--gold);font-size:1.5rem}
.service-card h3{margin-bottom:12px}
.service-card p{color:var(--text-muted);font-size:0.9rem}

/* --- Stats Counter --- */
.stats-bar{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;padding:60px 0}
.stat-item{text-align:center}
.stat-number{font-family:var(--font-heading);font-size:3rem;font-weight:700;color:var(--gold);display:block}
.stat-label{font-size:0.8rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:1.5px;margin-top:8px}

/* --- Process Timeline --- */
.process-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;position:relative}
.process-steps::before{content:'';position:absolute;top:40px;left:10%;right:10%;height:1px;background:var(--border)}
.process-step{text-align:center;position:relative}
.process-step-num{width:80px;height:80px;margin:0 auto 20px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:var(--bg-secondary);border:2px solid var(--gold);font-family:var(--font-heading);font-size:1.8rem;font-weight:700;color:var(--gold);position:relative;z-index:1}
.process-step h3{margin-bottom:8px;font-size:1.1rem}
.process-step p{color:var(--text-muted);font-size:0.85rem}

/* --- Testimonials --- */
.testimonial-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);padding:40px;position:relative}
.testimonial-card::before{content:'\201C';position:absolute;top:16px;left:28px;font-family:var(--font-heading);font-size:4rem;color:var(--gold);opacity:0.3;line-height:1}
.testimonial-card p{font-size:1rem;line-height:1.8;font-style:italic;margin-bottom:20px;color:var(--text-muted)}
.testimonial-author{display:flex;align-items:center;gap:12px}
.testimonial-author img{width:48px;height:48px;border-radius:50%;object-fit:cover;border:2px solid var(--gold)}
.testimonial-name{font-weight:600;font-size:0.95rem}
.testimonial-title{font-size:0.8rem;color:var(--text-muted)}
.testimonial-stars{color:var(--gold);font-size:0.85rem;margin-bottom:16px}

/* --- Gallery (Swiper + Lightbox) --- */
.gallery-swiper{position:relative;overflow:hidden;border-radius:var(--radius-lg);max-width:100%}
.gallery-swiper .swiper-button-next,.gallery-swiper .swiper-button-prev{color:var(--gold)}
.gallery-swiper .swiper-wrapper{display:flex}
.gallery-swiper .swiper-slide{flex-shrink:0;width:100%}
.gallery-swiper .swiper-slide img{width:100%;height:500px;object-fit:cover;cursor:pointer;display:block}
.gallery-thumbs{margin-top:12px;position:relative}
.gallery-thumbs .swiper-button-next,.gallery-thumbs .swiper-button-prev{opacity:0;transition:opacity 0.3s;transform:scale(0.55);margin-top:-18px;color:var(--gold)}
.gallery-thumbs:hover .swiper-button-next,.gallery-thumbs:hover .swiper-button-prev{opacity:1}
.gallery-thumbs .swiper-slide{opacity:0.5;cursor:pointer;border-radius:var(--radius);overflow:hidden;border:2px solid transparent}
.gallery-thumbs .swiper-slide-thumb-active{opacity:1;border-color:var(--gold)}
.gallery-thumbs .swiper-slide img{height:80px;object-fit:cover}
/* Lightbox — Fullscreen Swiper Gallery */
.lightbox{position:fixed;inset:0;z-index:9999;background:rgba(0,0,0,0.97);display:none;flex-direction:column;justify-content:center;align-items:center}
.lightbox.active{display:flex}
.lightbox-close{position:absolute;top:16px;right:20px;color:#fff;font-size:2rem;cursor:pointer;z-index:10010;width:48px;height:48px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,0.1);border-radius:50%;transition:background 0.2s}
.lightbox-close:hover{background:rgba(201,169,110,0.4)}
.lightbox-counter{position:absolute;top:24px;left:24px;color:rgba(255,255,255,0.6);font-size:0.85rem;z-index:10010}
.lightbox-main{flex:1;width:100%;display:flex;align-items:center;justify-content:center;position:relative;min-height:0}
.lightbox-main .swiper{width:100%;height:100%}
.lightbox-main .swiper-slide{display:flex;align-items:center;justify-content:center}
.lightbox-main .swiper-slide img{max-width:92vw;max-height:calc(100vh - 140px);object-fit:contain;border-radius:var(--radius)}
.lightbox-main .swiper-button-next,.lightbox-main .swiper-button-prev{color:var(--gold)}
.lightbox-thumbs{width:100%;max-width:800px;padding:12px 0 16px;margin:0 auto}
.lightbox-thumbs .swiper-slide{opacity:0.4;cursor:pointer;border-radius:6px;overflow:hidden;border:2px solid transparent;transition:all 0.2s}
.lightbox-thumbs .swiper-slide-thumb-active{opacity:1;border-color:var(--gold)}
.lightbox-thumbs .swiper-slide img{width:100%;height:60px;object-fit:cover;display:block}
@media(max-width:768px){
  .lightbox-main .swiper-slide img{max-width:100vw;max-height:calc(100vh - 120px);border-radius:0}
  .lightbox-close{top:8px;right:12px;width:40px;height:40px;font-size:1.5rem}
  .lightbox-thumbs .swiper-slide img{height:48px}
  .gallery-swiper .swiper-slide img{height:300px!important}
  .gallery-thumbs .swiper-slide img{height:50px!important}
  .gallery-thumbs .swiper-button-next,.gallery-thumbs .swiper-button-prev{display:none!important}
}
@media(max-width:1024px){
  [style*="grid-template-columns:1fr 340px"]{grid-template-columns:1fr!important}
  [style*="grid-template-columns: 1fr 340px"]{grid-template-columns:1fr!important}
}

/* --- Cost Estimator --- */
.estimator-wrap{max-width:800px;margin:0 auto}
.estimator-step{display:none}
.estimator-step.active{display:block}
.estimator-options{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.estimator-option{padding:24px 16px;border:2px solid var(--border);border-radius:var(--radius-lg);text-align:center;cursor:pointer;transition:all var(--transition)}
.estimator-option:hover,.estimator-option.selected{border-color:var(--gold);background:rgba(232,168,17,0.08)}
.estimator-option .icon{font-size:2rem;color:var(--gold);margin-bottom:12px}
.estimator-option h3{font-size:0.95rem;margin-bottom:4px}
.estimator-option p{font-size:0.78rem;color:var(--text-muted)}
.estimator-result{text-align:center;padding:48px;background:var(--bg-card);border:1px solid var(--gold);border-radius:var(--radius-lg)}
.estimator-result .price{font-family:var(--font-heading);font-size:2.5rem;font-weight:700;color:var(--gold)}
.estimator-progress{display:flex;gap:8px;justify-content:center;margin-bottom:40px}
.estimator-progress .dot{width:12px;height:12px;border-radius:50%;background:var(--border);transition:all var(--transition)}
.estimator-progress .dot.active{background:var(--gold);width:32px;border-radius:6px}

/* --- Footer --- */
.site-footer{background:var(--bg-secondary);border-top:1px solid var(--border);padding:80px 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:48px}
.footer-brand p{color:var(--text-muted);font-size:0.9rem;margin-top:16px;line-height:1.8}
.footer-heading{font-family:var(--font-body);font-size:0.75rem;font-weight:600;text-transform:uppercase;letter-spacing:2px;color:var(--gold, #E8A811);margin-bottom:20px}
.footer-links{list-style:none}
.footer-links li{margin-bottom:10px}
.footer-links a{color:var(--text-muted);font-size:0.88rem;transition:color var(--transition)}
.footer-links a:hover{color:var(--gold)}
.footer-social{display:flex;gap:12px;margin-top:20px}
.footer-social a{width:48px;height:48px;display:flex;align-items:center;justify-content:center;border-radius:50%;border:1px solid var(--border);color:var(--text-muted);font-size:1.1rem;transition:all var(--transition)}
.footer-social a:hover{border-color:var(--gold);color:var(--gold);background:rgba(232,168,17,0.1)}
.footer-bottom{margin-top:60px;padding:24px 0;border-top:1px solid var(--border);display:flex;justify-content:space-between;align-items:center;font-size:0.8rem;color:var(--text-muted)}
.footer-contact-item{display:flex;align-items:center;gap:10px;margin-bottom:12px;color:var(--text-muted);font-size:0.88rem}
.footer-contact-item i{color:var(--gold);width:18px;text-align:center}

/* --- Breadcrumb --- */
.breadcrumb{padding:16px 0;font-size:0.8rem}
.breadcrumb ol{list-style:none;display:flex;flex-wrap:wrap;gap:8px;align-items:center}
.breadcrumb a{color:var(--text-muted)}
.breadcrumb a:hover{color:var(--gold)}
.breadcrumb .sep{color:var(--text-muted);opacity:0.4}
.breadcrumb .current{color:var(--gold)}

/* --- Forms --- */
.form-group{margin-bottom:20px}
.form-group label{display:block;font-size:0.82rem;font-weight:500;color:var(--text-muted);margin-bottom:8px}
.form-control{width:100%;padding:14px 18px;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);color:var(--text);font-family:var(--font-body);font-size:0.92rem;transition:border-color var(--transition)}
.form-control:focus{outline:none;border-color:var(--gold)}
textarea.form-control{min-height:120px;resize:vertical}

/* --- Scroll Animations --- */
.reveal{opacity:0;transform:translateY(30px);transition:opacity 0.8s ease,transform 0.8s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-left{opacity:0;transform:translateX(-40px);transition:opacity 0.8s ease,transform 0.8s ease}
.reveal-left.visible{opacity:1;transform:translateX(0)}
.reveal-right{opacity:0;transform:translateX(40px);transition:opacity 0.8s ease,transform 0.8s ease}
.reveal-right.visible{opacity:1;transform:translateX(0)}
/* Force visibility inside content areas — never hide project/article content */
.rich-content .reveal,.rich-content .reveal-left,.rich-content .reveal-right,
.entry-content .reveal,.entry-content .reveal-left,.entry-content .reveal-right,
.project-content .reveal,.project-content .reveal-left,.project-content .reveal-right,
figure .reveal,figure .reveal-left,figure .reveal-right,
.rich-content h3,.rich-content h2,.rich-content section,.rich-content figure{opacity:1!important;transform:none!important}

/* --- Page Builder Sections --- */
.pb-row{position:relative;background-size:cover;background-position:center}
.pb-row-overlay{position:absolute;inset:0;pointer-events:none}
.pb-row-inner{max-width:var(--max-width);margin:0 auto;padding:0 24px;display:flex;gap:24px;flex-wrap:wrap}
.pb-col{min-width:0}
.pb-col-1{flex:0 0 100%}
.pb-col-1-2{flex:0 0 calc(50% - 12px)}
.pb-col-1-3{flex:0 0 calc(33.333% - 16px)}
.pb-col-2-3{flex:0 0 calc(66.666% - 8px)}
.pb-col-1-4{flex:0 0 calc(25% - 18px)}
.pb-col-3-4{flex:0 0 calc(75% - 6px)}

/* Feature Grid (like CTP Home image) */
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.feature-card{text-align:center;padding:36px 24px;border:1px solid var(--border);border-radius:var(--radius-lg);background:var(--bg-card);transition:all var(--transition)}
.feature-card:hover{border-color:var(--gold)}
.feature-card .num{font-family:var(--font-heading);font-size:2.5rem;font-weight:700;color:var(--gold);margin-bottom:8px}
.feature-card .icon{font-size:2rem;color:var(--gold);margin-bottom:16px}
.feature-card h4{font-size:1rem;margin-bottom:10px}
.feature-card p{color:var(--text-muted);font-size:0.83rem;line-height:1.7}

/* Photo Strip */
.photo-strip{display:flex;gap:8px;overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;scroll-snap-type:x mandatory}
.photo-strip::-webkit-scrollbar{display:none}
.photo-strip img{height:220px;flex-shrink:0;object-fit:cover;border-radius:var(--radius);scroll-snap-align:start}
.photo-strip-caption{display:flex;justify-content:center;gap:40px;padding:20px;background:var(--bg-card);border:1px solid var(--border);margin-top:8px;border-radius:var(--radius)}
.photo-strip-caption .item{display:flex;align-items:center;gap:10px;font-size:0.82rem;color:var(--text-muted)}
.photo-strip-caption .item i{color:var(--gold)}

/* Before/After Compare */
.compare-slider{position:relative;overflow:hidden;border-radius:var(--radius-lg);cursor:ew-resize}
.compare-slider img{width:100%;display:block}
.compare-after{position:absolute;inset:0;overflow:hidden;width:50%}
.compare-handle{position:absolute;top:0;bottom:0;width:4px;background:var(--gold);left:50%;transform:translateX(-50%);z-index:2;cursor:ew-resize}
.compare-handle::after{content:'⇔';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:40px;height:40px;background:var(--gold);color:var(--text-dark);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1rem}

/* FAQ Accordion */
.faq-list{max-width:800px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--border)}
.faq-question{display:flex;justify-content:space-between;align-items:center;padding:20px 0;cursor:pointer;font-weight:600;font-size:1rem;color:var(--text);transition:color var(--transition)}
.faq-question:hover{color:var(--gold)}
.faq-question i{color:var(--gold);transition:transform var(--transition)}
.faq-item.open .faq-question i{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.4s ease}
.faq-item.open .faq-answer{max-height:500px}
.faq-answer p{padding:0 0 20px;color:var(--text-muted);line-height:1.8;font-size:0.92rem}

/* CTA Banner */
.cta-banner{position:relative;padding:80px 0;text-align:center;background-size:cover;background-position:center;border-radius:var(--radius-lg);overflow:hidden}
.cta-banner::before{content:'';position:absolute;inset:0;background:rgba(18,56,34,0.85)}
.cta-banner-content{position:relative;z-index:1}
.cta-banner h2{margin-bottom:16px}
.cta-banner p{color:var(--text-muted);margin-bottom:32px;font-size:1.05rem}

/* --- Responsive --- */
@media(max-width:1024px){
  .project-grid,.service-grid,.feature-grid{grid-template-columns:repeat(2,1fr)}
  .stats-bar,.process-steps{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  .hero-stats-inner{gap:32px}
  .pb-col-1-2,.pb-col-1-3,.pb-col-2-3,.pb-col-1-4,.pb-col-3-4{flex:0 0 100%}
  .mega-dropdown{min-width:480px}
}
@media(max-width:768px){
  :root{--header-h:64px}
  .section{padding:60px 0}
  .site-header{top:0 !important}
  .main-nav{display:none}
  .header-search-form{display:none}
  .header-hotline{display:none}
  .mobile-toggle{display:block}
  .hero{min-height:700px; height:auto; padding:120px 0 240px; align-items:flex-start}
  .hero-content{margin-top:0}
  .hero-stats-inner{flex-wrap:wrap;gap:16px}
  .hero-stat{flex:1 0 40%}
  .project-grid{grid-template-columns:repeat(2,1fr);gap:10px;margin-left:-12px;margin-right:-12px}
  .project-grid .card{border-radius:var(--radius)}
  .project-grid .card-body{padding:12px 8px;text-align:center}
  .project-grid .card-body h3{font-size:0.85rem;margin-bottom:4px}
  .project-grid .card-body p{font-size:0.75rem}
  .project-grid .card-tag{font-size:0.65rem;padding:2px 8px;margin-bottom:4px}
  .service-grid,.feature-grid,.estimator-options{grid-template-columns:1fr}
  .stats-bar,.process-steps{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .hero-buttons{flex-direction:column}
  .gallery-swiper .swiper-slide img{height:300px}
  .footer-bottom{flex-direction:column;gap:12px;text-align:center}
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns:1fr 340px"]{grid-template-columns:1fr!important}
  .breadcrumb{padding:32px 0 16px}
}

/* ===== SECTION INTERIOR (si-*) ===== */

/* Global container override — content stays centered */
.page-sections .container,
.section-interior .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

/* Boxed layout — constrain all sections to max-width with padding */
.page-sections {
  max-width: var(--max-width, 1280px);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}
.page-sections > .reveal > section,
.page-sections > section { width: 100%; }

/* Hero content container */
.section-hero-banner .hero-content {
  max-width: var(--max-width, 1280px);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}
.si-title{font-family:var(--font-heading);font-size:clamp(1.2rem,4vw,1.4rem);font-weight:700;text-align:center;margin:0 0 32px;color:var(--text);}
.si-subtitle{text-align:center;color:var(--text-muted);font-size:1rem;margin:0 0 48px;max-width:600px;margin-left:auto;margin-right:auto;}
.si-grid{display:grid;gap:24px;}

/* Cards */
.si-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px 24px;text-align:center;transition:all var(--transition);}
.si-card:hover{border-color:var(--border-strong);transform:translateY(-4px);box-shadow:0 20px 60px rgba(0,0,0,.06);}
.si-card h3,.si-card h4{font-family:var(--font-heading);color:var(--text);margin:12px 0 8px;font-size:1.05rem;}
.si-card p{color:var(--text-muted);font-size:.85rem;line-height:1.6;margin:0;}
.si-icon{font-size:2rem;color:var(--gold);}
.si-number{display:inline-block;font-family:var(--font-heading);font-size:1.5rem;font-weight:700;color:var(--gold);margin-bottom:8px;}

/* Stats */
.si-stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;text-align:center;}
.si-stat-number{display:block;font-family:var(--font-heading);font-size:clamp(2rem,5vw,3.5rem);font-weight:700;color:var(--gold);line-height:1;}
.si-stat-label{display:block;color:var(--text-muted);font-size:.9rem;margin-top:8px;}

/* Timeline / Process */
.si-timeline{display:flex;flex-direction:column;gap:0;position:relative;padding-left:60px;}
.si-timeline::before{content:'';position:absolute;left:28px;top:0;bottom:0;width:2px;background:var(--border);}
.si-timeline-item{display:flex;align-items:flex-start;gap:24px;padding:24px 0;position:relative;}
.si-timeline-number{width:56px;height:56px;flex-shrink:0;display:flex;align-items:center;justify-content:center;background:var(--bg-card);border:2px solid var(--gold);border-radius:50%;font-family:var(--font-heading);font-size:1.2rem;font-weight:700;color:var(--gold);position:absolute;left:-60px;z-index:1;}
.si-timeline-content h3{font-family:var(--font-heading);color:var(--text);margin:0 0 6px;font-size:1.15rem;}
.si-timeline-content p{color:var(--text-muted);margin:0;font-size:.9rem;}

/* Pricing */
.si-pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.si-pricing-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);padding:40px 28px;text-align:center;transition:all var(--transition);}
.si-pricing-card:hover{transform:translateY(-6px);box-shadow:0 20px 60px rgba(0,0,0,.06);}
.si-pricing-highlight{border-color:var(--gold);position:relative;}
.si-pricing-highlight::before{content:'Phổ biến';position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--gold);color:var(--text-dark);padding:4px 20px;border-radius:20px;font-size:.72rem;font-weight:700;text-transform:uppercase;}
.si-pricing-name{font-family:var(--font-heading);font-size:1.3rem;color:var(--text);margin:0 0 16px;}
.si-pricing-price{font-family:var(--font-heading);font-size:2rem;font-weight:700;color:var(--gold);margin:0 0 24px;}
.si-pricing-features{list-style:none;padding:0;margin:0 0 28px;text-align:left;}
.si-pricing-features li{padding:10px 0;border-bottom:1px solid var(--border);color:var(--text-muted);font-size:.88rem;}
.si-pricing-features li i{color:var(--gold);margin-right:10px;width:16px;}
.si-pricing-btn{width:100%;display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 28px;background:transparent;border:1.5px solid var(--gold);color:var(--gold);font-family:var(--font-body);font-size:0.9rem;font-weight:600;border-radius:50px;cursor:pointer;transition:all 0.3s;text-decoration:none;letter-spacing:0.5px;}
.si-pricing-btn:hover{background:var(--gold);color:var(--text-dark);transform:translateY(-2px);box-shadow:0 8px 25px rgba(201,169,110,0.3);}
.si-pricing-highlight .si-pricing-btn{background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:var(--text-dark);border-color:var(--gold);}
.si-pricing-highlight .si-pricing-btn:hover{box-shadow:0 12px 35px rgba(201,169,110,0.4);}

/* FAQ Accordion */
.si-accordion{display:flex;flex-direction:column;gap:12px;}
.si-accordion-item{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;}
.si-accordion-btn{width:100%;display:flex;justify-content:space-between;align-items:center;padding:18px 20px;background:none;border:none;color:var(--text);font-size:.95rem;font-weight:500;cursor:pointer;text-align:left;gap:16px;}
.si-accordion-btn i{color:var(--gold);transition:transform .3s;flex-shrink:0;}
.si-accordion-item.active .si-accordion-btn i{transform:rotate(180deg);}
.si-accordion-body{max-height:0;overflow:hidden;transition:max-height .4s ease;}
.si-accordion-item.active .si-accordion-body{max-height:500px;}
.si-accordion-body p{padding:0 20px 18px;margin:0;color:var(--text-muted);font-size:.9rem;line-height:1.7;}

/* Project Cards */
.si-project-card{display:block;text-decoration:none;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:all var(--transition);}
.si-project-card:hover{border-color:var(--border-strong);transform:translateY(-4px);box-shadow:0 20px 60px rgba(0,0,0,.06);}
.si-project-img{aspect-ratio:16/10;overflow:hidden;}
.si-project-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s;}
.si-project-card:hover .si-project-img img{transform:scale(1.05);}
.si-project-info{padding:20px;}
.si-project-info h3{font-family:var(--font-heading);font-size:1.05rem;color:var(--text);margin:0;}

/* Estimator Form */
.si-estimator-form{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px;}
.si-form-row{margin-bottom:16px;}
.si-form-row label{display:block;margin-bottom:6px;color:var(--text);font-size:.9rem;font-weight:500;}

/* Responsive */
@media(max-width:768px){
  .si-grid { grid-template-columns: repeat(var(--cols-mobile, 1), 1fr) !important; max-width: 100%; overflow: hidden; }
  .si-stats-grid{grid-template-columns:repeat(2,1fr);}
  .si-pricing-grid{grid-template-columns:1fr;}
  .si-timeline{padding-left:50px;}
  .si-timeline-number{width:44px;height:44px;font-size:1rem;left:-50px;}
}

/* ===== CONTACT FORM SECTION ===== */
.section-contact-form{padding:80px 0;background:var(--bg-secondary)}
.cf-wrapper{display:grid;grid-template-columns:1fr 1.2fr;gap:48px;align-items:start}
.cf-compact{grid-template-columns:1fr}
.cf-info{padding:32px 0}
.cf-benefits{list-style:none;margin:24px 0;display:flex;flex-direction:column;gap:12px}
.cf-benefits li{display:flex;align-items:center;gap:10px;color:var(--text-muted);font-size:0.88rem}
.cf-benefits i{color:var(--gold);font-size:0.85rem}
.cf-hotline{display:flex;align-items:center;gap:16px;margin-top:32px;padding:20px;background:rgba(232,168,17,0.08);border:1px solid var(--border);border-radius:var(--radius-lg)}
.cf-hotline>i{font-size:2rem;color:var(--gold)}
.cf-hotline span{font-size:0.8rem;color:var(--text-muted);display:block}
.cf-hotline strong{font-size:1.2rem;color:var(--gold)}
.cf-form-wrap{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px}
.cf-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.cf-field{display:flex;flex-direction:column;gap:6px}
.cf-field.full{grid-column:span 2;margin-bottom:16px}
.cf-field label{font-size:0.8rem;color:var(--text-muted);display:flex;align-items:center;gap:6px}
.cf-field label i{color:var(--gold);font-size:0.75rem}
.cf-field input,.cf-field select,.cf-field textarea{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:12px 16px;color:var(--text);font-size:0.88rem;transition:border-color 0.2s;font-family:inherit}
.cf-field input:focus,.cf-field select:focus,.cf-field textarea:focus{outline:none;border-color:var(--gold)}
.cf-submit{width:100%;justify-content:center;margin-top:8px}
.cf-result{padding:16px;border-radius:var(--radius);margin-top:16px;font-size:0.88rem;display:flex;align-items:center;gap:8px}
.cf-success{background:rgba(34,197,94,0.1);color:#22c55e;border:1px solid rgba(34,197,94,0.2)}
.cf-error{background:rgba(239,68,68,0.1);color:#ef4444;border:1px solid rgba(239,68,68,0.2)}

/* ===== COST ESTIMATOR COMPACT ===== */
.section-estimator{padding:80px 0}
.est-compact{max-width:900px;margin:0 auto;border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;background:var(--bg-card)}
.est-inputs{display:grid;grid-template-columns:1fr 1fr 1fr auto;gap:0;align-items:end}
.est-field{padding:20px;border-right:1px solid var(--border)}
.est-field label{display:block;font-size:0.75rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:1px;margin-bottom:8px}
.est-field select,.est-field input{width:100%;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:10px 14px;color:var(--text);font-size:0.88rem;font-family:inherit}
.est-field select:focus,.est-field input:focus{outline:none;border-color:var(--gold)}
.est-btn{border-radius:0;height:100%;padding:20px 28px;border:none;white-space:nowrap}
.est-result{border-top:1px solid var(--border);padding:32px;text-align:center;background:rgba(232,168,17,0.03)}
.est-result-inner{max-width:500px;margin:0 auto}
.est-label{font-size:0.75rem;text-transform:uppercase;letter-spacing:2px;color:var(--text-muted);margin-bottom:8px}
.est-price{font-family:var(--font-heading);font-size:2rem;font-weight:700;color:var(--gold);margin-bottom:12px}
.est-detail{color:var(--text-muted);font-size:0.88rem;line-height:1.8;margin-bottom:16px}
.est-note{font-size:0.78rem;color:var(--text-muted);margin-bottom:16px;opacity:0.7}

/* ===== WHY CHOOSE US ===== */
.section-why-us{padding:80px 0}
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.why-card{text-align:center;padding:32px 20px;border:1px solid var(--border);border-radius:var(--radius-lg);background:var(--bg-card);transition:all 0.3s}
.why-card:hover{border-color:var(--gold);transform:translateY(-4px)}
.why-icon{width:64px;height:64px;margin:0 auto 16px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:rgba(201,169,110,0.1);color:var(--gold);font-size:1.5rem}
.why-card h3,.why-card h4{font-size:0.95rem;margin-bottom:8px}
.why-card p{color:var(--text-muted);font-size:0.82rem;line-height:1.6}
.why-highlight{margin-top:12px;padding:6px 14px;background:rgba(201,169,110,0.08);color:var(--gold);border-radius:20px;font-size:0.75rem;font-weight:600;display:inline-block}

@media(max-width:768px){
  .cf-wrapper{grid-template-columns:1fr}
  .cf-row{grid-template-columns:1fr}
  .cf-field.full{grid-column:span 1}
  .est-inputs{grid-template-columns:1fr}
  .est-field{border-right:none;border-bottom:1px solid var(--border)}
  .est-btn{border-radius:0 0 var(--radius-lg) var(--radius-lg)}
  .why-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:480px){
  .why-grid{grid-template-columns:1fr}
}

/* ===== CREAM HERO SECTION ===== */
.cream-hero{padding:0;position:relative;overflow:hidden}
.cream-hero-announce{background:linear-gradient(135deg,var(--gold),var(--gold-dark));padding:14px 0;text-align:center;color:#fff;font-size:0.85rem;font-weight:600;letter-spacing:1px}
.cream-hero-announce span{color:#fff;opacity:0.85}
.cream-hero-announce strong{font-size:1rem;margin:0 4px}
.cream-hero-body{max-width:var(--max-width);margin:0 auto;padding:60px clamp(16px,3vw,32px) 0;display:grid;grid-template-columns:1.1fr 0.9fr;gap:48px;align-items:center;min-height:520px}
.cream-hero-left{display:flex;flex-direction:column;gap:20px}
.cream-hero-logo{display:flex;align-items:center;gap:12px;margin-bottom:8px}
.cream-hero-logo-icon{width:48px;height:48px;border:2px solid var(--gold);border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--gold);font-size:1.2rem;background:rgba(232,168,17,0.08)}
.cream-hero-logo-text{font-family:var(--font-body);font-weight:700;font-size:0.95rem;color:var(--text);letter-spacing:1px;line-height:1.2}
.cream-hero-logo-text small{display:block;font-size:0.7rem;font-weight:400;color:var(--text-muted);letter-spacing:0.5px}
.cream-hero-heading{font-family:var(--font-heading);font-size:clamp(2.2rem,5vw,3.5rem);font-weight:700;color:var(--text);line-height:1.15;margin:0;display:block}
.cream-hero-announce .hp-announce-title{font-size:0.95rem;margin:0;letter-spacing:1.5px}
.cream-hero-announce .hp-announce-title .tx-black{color:#fff;font-family:var(--font-heading);text-transform:uppercase}
.cream-hero-announce .hp-announce-title .tx-gold{color:#fff;font-family:var(--font-heading);text-transform:uppercase;font-weight:900}
.cream-hero-heading .gold{color:var(--gold)}
.cream-hero-sub{color:var(--text-muted);font-size:1rem;line-height:1.7;margin:0}
.cream-hero-features{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:24px 0 8px}
.cream-hero-feat{text-align:center;padding:12px 8px}
.cream-hero-feat i{display:flex;align-items:center;justify-content:center;width:44px;height:44px;margin:0 auto 8px;border-radius:50%;background:rgba(232,168,17,0.1);color:var(--gold);font-size:1.1rem}
.cream-hero-feat span{display:block;font-size:0.72rem;color:var(--text-muted);line-height:1.3}
.cream-hero-cta{display:inline-flex;align-items:center;gap:8px;padding:14px 32px;background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#fff;font-weight:600;font-size:0.9rem;border-radius:var(--radius);letter-spacing:0.5px;transition:all 0.3s;text-decoration:none;align-self:flex-start}
.cream-hero-cta:hover{transform:translateY(-2px);box-shadow:0 8px 30px rgba(232,168,17,0.35);color:#fff}
.cream-hero-right{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr;gap:12px;position:relative;min-height:400px}
.cream-hero-panel{border-radius:var(--radius-lg);overflow:hidden;position:relative;display:flex;align-items:center;justify-content:center;min-height:180px}
.cream-hero-panel img{width:100%;height:100%;object-fit:cover}
.cream-hero-panel:nth-child(1){grid-row:1/3}
.cream-hero-panel:nth-child(2),.cream-hero-panel:nth-child(3){min-height:0}
.cream-hero-panel-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(45,42,38,0.5),transparent);display:flex;align-items:flex-end;padding:16px}
.cream-hero-panel-overlay span{color:#fff;font-size:0.82rem;font-weight:500}
.cream-hero-stats{background:var(--bg-card);border-top:1px solid var(--border);padding:28px 0}
.cream-hero-stats-inner{max-width:var(--max-width);margin:0 auto;padding:0 clamp(16px,4vw,48px);display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.cream-hero-stat-num{font-family:var(--font-heading);font-size:1.8rem;font-weight:700;color:var(--gold);display:block}
.cream-hero-stat-label{font-size:0.75rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:1px}

/* Header hotline button */
.btn-header-hotline{display:inline-flex;align-items:center;gap:8px;padding:10px 20px;background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#fff;font-size:0.8rem;font-weight:600;border-radius:var(--radius);transition:all 0.3s;letter-spacing:0.5px;text-decoration:none;white-space:nowrap}
.btn-header-hotline:hover{transform:translateY(-2px);box-shadow:0 8px 30px rgba(232,168,17,0.3);color:#fff}
.header-search{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;border:1px solid var(--border);color:var(--text-muted);font-size:0.9rem;transition:all 0.2s;cursor:pointer;background:none}
.header-search:hover{border-color:var(--gold);color:var(--gold)}

/* ===== PRESS LOGOS ===== */
.section-press{padding:48px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:var(--bg)}
.press-inner{max-width:var(--max-width);margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:center;gap:48px;flex-wrap:wrap}
.press-label{font-size:0.75rem;font-weight:600;text-transform:uppercase;letter-spacing:2px;color:var(--text-muted);white-space:nowrap}
.press-logos{display:flex;align-items:center;gap:40px;flex-wrap:wrap;justify-content:center}
.press-logo{height:32px;opacity:0.5;transition:opacity 0.3s;filter:grayscale(100%)}
.press-logo:hover{opacity:1;filter:grayscale(0)}
.press-logo-text{font-family:var(--font-heading);font-size:1.3rem;font-weight:700;color:var(--text-muted);opacity:0.4;transition:opacity 0.3s;text-decoration:none}
.press-logo-text:hover{opacity:0.8;color:var(--gold)}

/* ===== DARK FOOTER (matching PDF template) ===== */
.footer-dark{background:#0f2b1b;color:rgba(255,255,255,0.7)}
.footer-dark-main{max-width:var(--max-width);margin:0 auto;padding:60px clamp(16px,4vw,48px) 40px;display:grid;grid-template-columns:1.5fr 1fr 1.2fr 1fr;gap:40px}
.footer-dark-title{font-family:var(--font-body);font-size:0.72rem;font-weight:600;text-transform:uppercase;letter-spacing:2px;color:var(--gold);margin-bottom:16px}
.footer-dark-col p{color:rgba(255,255,255,0.6);font-size:0.85rem;line-height:1.7;margin:0 0 8px}
.footer-dark-col p i{color:var(--gold);margin-right:8px;width:16px}
.footer-dark-col a{color:#fff;text-decoration:none;transition:color 0.2s}
.footer-dark-col a:hover{color:var(--gold)}
.footer-dark-logo{display:inline-block;margin-bottom:12px}
.footer-dark-logo img{height:42px;width:auto;filter:brightness(1.2)}
.footer-dark-brand{font-family:var(--font-heading);font-size:1.3rem;font-weight:700;color:#fff}
.footer-dark-socials{display:flex;gap:10px;margin-top:12px}
.footer-dark-socials a{width:38px;height:38px;display:flex;align-items:center;justify-content:center;border-radius:50%;border:1px solid rgba(255,255,255,0.15);color:rgba(255,255,255,0.5);font-size:0.9rem;transition:all 0.3s}
.footer-dark-socials a:hover{border-color:var(--gold);color:var(--gold);background:rgba(232,168,17,0.1)}
.footer-dark-form input{width:100%;padding:10px 14px;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);border-radius:var(--radius);color:#fff;font-size:0.85rem;margin-bottom:10px;font-family:inherit}
.footer-dark-form input::placeholder{color:rgba(255,255,255,0.35)}
.footer-dark-form input:focus{outline:none;border-color:var(--gold)}
.footer-dark-form button{width:100%;padding:10px;background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#fff;border:none;border-radius:var(--radius);font-weight:600;font-size:0.85rem;cursor:pointer;transition:all 0.3s;display:flex;align-items:center;justify-content:center;gap:6px}
.footer-dark-form button:hover{box-shadow:0 4px 15px rgba(232,168,17,0.3)}
.footer-dark-zalo-btn{display:inline-flex;align-items:center;gap:8px;padding:10px 20px;background:rgba(232,168,17,0.15);border:1px solid rgba(232,168,17,0.3);border-radius:var(--radius);color:var(--gold);font-size:0.85rem;font-weight:500;transition:all 0.3s}
.footer-dark-zalo-btn:hover{background:var(--gold);color:#fff}
.footer-dark-bottom{max-width:var(--max-width);margin:0 auto;padding:20px clamp(16px,4vw,48px);border-top:1px solid rgba(255,255,255,0.08);display:flex;justify-content:center;align-items:center;font-size:0.78rem;color:rgba(255,255,255,0.7)}

/* Footer extra elements */
.fdc-company{color:#fff;font-weight:600;font-size:0.92rem;margin-bottom:8px}
.fdc-label{color:var(--gold);font-weight:500}
.footer-dark-links{list-style:none;padding:0;margin:0}
.footer-dark-links li{margin-bottom:8px}
.footer-dark-links li a{color:rgba(255,255,255,0.6);font-size:0.85rem;text-decoration:none;transition:color 0.2s}
.footer-dark-links li a:hover{color:var(--gold)}
.footer-hotline-btn{display:inline-flex;align-items:center;gap:8px;padding:12px 24px;background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#fff !important;font-weight:600;font-size:0.85rem;border-radius:var(--radius);margin-top:12px;text-decoration:none;transition:all 0.3s;white-space:nowrap}
.footer-hotline-btn:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(232,168,17,0.35);color:#fff !important}
.footer-hotline-btn i{font-size:0.8rem}
.footer-dmca{margin-top:16px;display:flex;align-items:center;gap:8px;font-size:0.75rem;color:rgba(255,255,255,0.5)}
.footer-dmca-badge{background:rgba(232,168,17,0.15);color:var(--gold);padding:4px 10px;border-radius:4px;font-weight:600;font-size:0.7rem}
.footer-dmca-badge i{margin-right:4px}
.footer-zalo-qr{text-align:center}
.footer-zalo-qr a{display:flex;flex-direction:column;align-items:center;gap:8px;text-decoration:none}
.footer-zalo-qr img{border-radius:8px;border:2px solid rgba(255,255,255,0.1)}
.footer-zalo-qr span{color:rgba(255,255,255,0.5);font-size:0.78rem}
.footer-fb-embed{margin-top:12px;border-radius:8px;overflow:hidden}
.footer-dark-map-row{border-top:1px solid rgba(255,255,255,0.08)}
.footer-dark-map-inner{max-width:var(--max-width);margin:0 auto;padding:24px clamp(16px,4vw,48px)}
.footer-map-col{max-width:100%}
.footer-map-wrap{border-radius:8px;overflow:hidden;margin-top:8px}
.footer-map-wrap iframe{width:100%;height:180px;border:0;border-radius:8px}

/* Floating social icons (right side, matching PDF) */
.floating-socials{position:fixed;right:20px;top:50%;transform:translateY(-50%);display:flex;flex-direction:column;gap:8px;z-index:98}
.floating-socials a{width:42px;height:42px;display:flex;align-items:center;justify-content:center;border-radius:50%;color:#fff;font-size:1rem;transition:all 0.3s;text-decoration:none}
.floating-socials a:nth-child(1){background:#FF0000}
.floating-socials a:nth-child(2){background:#0084FF}
.floating-socials a:nth-child(3){background:#0068FF}
.floating-socials a:nth-child(4){background:#000}
.floating-socials a:hover{transform:scale(1.15);box-shadow:0 4px 15px rgba(0,0,0,0.3)}

@media(max-width:1024px){
  .cream-hero-body{grid-template-columns:1fr;gap:32px}
  .cream-hero-right{min-height:300px}
  .cream-hero-stats-inner{grid-template-columns:repeat(2,1fr)}
  .footer-dark-main{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .cream-hero-features{grid-template-columns:repeat(2,1fr)}
  .cream-hero-right{grid-template-columns:1fr 1fr;min-height:250px}
  .cream-hero-panel:nth-child(1){grid-row:auto}
  .cream-hero-stats-inner{grid-template-columns:repeat(2,1fr);gap:16px}
  .footer-dark-main{grid-template-columns:1fr}
  .footer-dark-bottom{flex-direction:column;gap:8px;text-align:center}
  .press-logos{gap:24px}
  .floating-socials{right:12px;top:auto;bottom:120px;transform:none}
}


/* ===== HERO PRO SECTION v6 (Folder Tab Cards + Stats Box) ===== */
.hero-pro {
    background: var(--hp-bg, #FFFFFF);
    padding-top: 180px; /* Increased padding to clear header and announce bar */
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    max-width: var(--max-width, 1280px);
    margin: 0 auto;
    border-radius: var(--radius-lg, 16px);
}

/* Announcement bar */
.hp-announce {
    position: absolute;
    top: 180px; /* Aligned with padding-top of hero-pro */
    left: 50%;
    transform: translate(-50%, -50%);
    background: #F9F9F9;
    text-align: center;
    padding: 25px 40px;
    width: 90%;
    max-width: 900px;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.hp-announce-inner {
    margin: 0 auto;
}
.hp-announce-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}
.hp-announce-title .tx-black {
    color: #2D2A26;
    text-transform: uppercase;
    font-family: var(--font-heading);
}
.hp-announce-title .tx-gold {
    color: var(--gold, #E8A811);
    text-transform: uppercase;
    font-family: var(--font-heading);
}
.hp-announce p {
    font-size: 0.85rem;
    color: #444;
    margin: 10px auto 0;
    line-height: 1.6;
}

/* The Body Grid Layout */
.hp-body {
    width: 100%;
    display: flex;
    background: var(--hp-bg, #FDF8F0);
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* LEFT column */
.hp-left {
    flex: 0 0 45%;
    padding: 60px 40px 40px 0;
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.hp-logo-block {
    margin-bottom: 25px;
}
.hp-logo-block img {
    height: 60px;
    width: auto;
    display: block;
}

.hp-h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 900;
    color: #111;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    display: block;
}
.hp-h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 2.9rem);
    font-weight: 900;
    margin: 0 0 15px;
    line-height: 1;
    color: var(--gold, #E8A811);
    text-transform: uppercase;
}
.hp-sub {
    font-size: 0.95rem;
    color: #444;
    margin: 0 0 30px;
    line-height: 1.5;
    font-weight: 500;
}

/* 4 Features */
.hp-feats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 30px;
    position: relative;
}
.hp-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid rgba(0,0,0,0.1);
}
.hp-feat:last-child {
    border-right: none;
}
.hp-feat-ic {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 12px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp-feat-ic img {
    max-height: 100%;
    object-fit: contain;
}
.hp-feat-tx {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hp-feat-tx strong {
    font-size: 0.55rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1.3;
}
.hp-feat-tx span {
    font-size: 0.5rem;
    color: #555;
    line-height: 1.3;
}

/* CTA button */
.hp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #E8A811;
    color: #111;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    align-self: flex-start;
    margin-bottom: 30px;
    border: none;
}
.hp-cta-btn:hover {
    background: #a87930;
    color: #fff;
}
.hp-cta-btn i {
    font-size: 0.85rem;
}

/* Stats Box (White background) */
.hp-stats-bar {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    align-self: stretch;
    margin-top: auto;
    width: 140%;
    max-width: 850px;
    position: relative;
    z-index: 10;
}
.hp-st {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(0,0,0,0.1);
    padding-right: 12px;
    margin-right: 12px;
}
.hp-st:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
.hp-st-ic {
    color: #E8A811;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.hp-st-tx {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.hp-st-tx strong {
    font-size: 1.3rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #111;
    line-height: 1;
    display: block;
}
.hp-st-tx span {
    font-size: 0.55rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #444;
    line-height: 1.3;
    display: block;
    white-space: normal;
}

/* RIGHT column */
.hp-right {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.hp-gallery {
    flex-grow: 1;
    position: relative;
    min-height: 500px;
}
.hp-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hp-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    display: block;
}
.hp-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--hp-bg, #FDF8F0) 0%, rgba(253,248,240, 0.8) 5%, transparent 40%);
    z-index: 1;
}

/* Folder Tab & Cards Group */
.hp-cards-group {
    position: absolute;
    bottom: -35px;
    right: 30px;
    left: auto;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Canh từ phải qua */
    max-width: 850px;
}

/* Badge (The Text Box) */
.hp-badge {
    background: #0A110D;
    border: 2px solid #E8A811;
    border-radius: 12px; /* Bo tròn tất cả các góc */
    display: inline-flex;
    gap: 14px;
    align-items: flex-start; /* Aligns icon and text to top */
    padding: 18px 24px 45px 24px; /* Thêm padding-bottom để chứa phần bị đè */
    position: relative;
    z-index: 1;
    margin-bottom: -40px; /* Nằm dưới 3 ảnh con (1/3) */
}
.hp-badge-ic {
    color: #E8A811;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.hp-badge-tx {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hp-badge-tx strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: #E8A811;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hp-badge-tx span {
    font-size: 0.65rem;
    color: #FFF;
    line-height: 1.4;
}

/* Cards Wrapper */
.hp-bf-cards-wrap {
    background: transparent;
    position: relative;
    z-index: 2; /* Nằm trên badge */
    width: 100%;
}

.hp-bf-cards {
    display: flex;
    gap: 15px;
}
.hp-bf-card {
    flex: 1;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    transform: skewX(-12deg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    border: 2px solid #E8A811; /* Viền vàng riêng từng tấm */
}
.hp-bfc-img {
    height: 110px;
    width: 100%;
    overflow: hidden;
}
.hp-bfc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: skewX(12deg) scale(1.15);
}
.hp-bfc-body {
    padding: 12px;
    display: flex;
    align-items: center;
    background: #fff;
}
.hp-bfc-body-inner {
    display: flex;
    gap: 10px;
    align-items: center;
    transform: skewX(12deg);
}
.hp-bfc-ic {
    color: #333;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.hp-bfc-tx {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hp-bfc-tx strong {
    font-size: 0.55rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    line-height: 1.2;
}
.hp-bfc-tx span {
    font-size: 0.5rem;
    color: #666;
    line-height: 1.3;
}

/* Tagline */
.hp-tagline {
    padding: 30px 30px 24px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(253,248,240,0.9) 0%, rgba(253,248,240,0.6) 40%, transparent 70%);
    position: relative;
    z-index: 10;
    margin-top: 30px;
}
.hp-tg-b {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(255,255,255,0.8);
}
.hp-tg-s {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: #E8A811;
    font-weight: 700;
    font-style: italic;
    display: block;
    margin-top: 8px;
    text-shadow: 0 2px 5px rgba(255,255,255,0.8);
}

/* Responsive */
@media(max-width: 1024px) {
    .hero-pro {
        flex-direction: column;
        padding-top: var(--header-h, 70px);
        align-items: center;
        border-radius: 0;
    }
    
    /* 1. Announce bar đầu tiên, canh giữa */
    .hp-announce {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px 0;
        padding: 20px 15px;
        order: -1; 
    }
    
    .hp-body {
        display: flex;
        flex-direction: column;
        padding-left: 0;
        width: 100%;
    }
    
    /* Dùng display: contents để tháo bung .hp-left, gom chung vào hp-body để dễ đảo thứ tự */
    .hp-left {
        display: contents;
    }
    
    /* 2. Logo đến CTA (phần thứ 2, canh giữa) */
    .hp-logo-block, .hp-h1, .hp-h2, .hp-sub, .hp-cta-btn {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        order: 1;
        width: 100%;
        padding: 0 15px;
    }
    .hp-logo-block img { margin: 0 auto; }
    .hp-cta-btn {
        width: auto;
        margin: 15px auto 30px;
    }
    
    /* Thiết kế sáng tạo (hiển thị 2 cột, canh giữa) */
    .hp-feats {
        order: 1;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin: 20px 0 30px;
        padding: 0 15px;
    }
    .hp-feat {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hp-feat-tx strong {
        display: block;
        margin-bottom: 5px;
    }
    
    /* 3. Phần background lớn, text, 3 hình, slogan */
    .hp-right {
        order: 5;
        width: 100%;
        margin-top: 10px;
    }
    .hp-img-main {
        width: 100%;
    }
    .hp-gallery {
        min-height: auto;
        padding-top: 40px; /* Cho background hở ra 1 chút */
    }
    .hp-cards-group {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        margin: 0 15px;
        align-items: center; /* Canh giữa khối chữ đen */
        max-width: 100%;
    }
    .hp-badge {
        margin-bottom: -20px; /* Giảm độ lún trên mobile */
        padding: 15px 15px 35px 15px;
    }
    .hp-bf-cards-wrap {
        width: 100%;
    }
    .hp-bf-cards {
        flex-direction: column; /* 3 hình xếp dọc */
        gap: 15px;
    }
    .hp-bf-card {
        transform: none; /* Bỏ vát chéo trên mobile */
        border-radius: 8px;
    }
    .hp-bfc-img img, .hp-bfc-body-inner {
        transform: none; /* Bỏ un-skew */
    }
    
    /* 4. Cuối cùng là 500+ khách hàng (chia làm 2 cột) */
    .hp-stats-bar {
        order: 10;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 0;
        padding: 30px 15px;
        background: #fff;
        border-radius: 0;
        box-shadow: none;
    }
    .hp-st {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border: none;
        padding: 0;
    }
}

/* ========================================================================= */
/* HERO PRO 1 (NEW LAYOUT)
/* ========================================================================= */
.hero-pro-1 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--hp1-bg, #FDFDFD);
    overflow: hidden;
    padding-top: 180px;
}

/* Announcement Bar */
.hp1-announce {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    text-align: center;
    padding: 22px 30px;
    background: #F5F5F5;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    z-index: 20;
    border-radius: 2px;
}
.hp1-an-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    margin: 0;
}
.hp1-an-title .hp1-text-gold {
    color: #E8A811;
}
.hp1-an-desc {
    font-size: 0.88rem;
    color: #555;
    margin-top: 6px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Body Container */
.hp1-body {
    display: flex;
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 30px;
}

/* Left Column */
.hp1-left {
    flex: 0 0 55%;
    padding: 30px 4% 180px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.hp1-logo-block {
    margin-bottom: 30px;
}
.hp1-logo-block img {
    height: 70px;
    object-fit: contain;
}

.hp1-h1 {
    font-family: var(--font-heading);
    font-size: 3vw;
    line-height: 1.1;
    color: #111;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}
.hp1-h1 span {
    display: block;
}
.hp1-text-gold {
    color: #E8A811;
}

.hp1-sub {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Features */
.hp1-feats {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    width: calc(100% + 20px);
    margin-left: -10px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 16px 8px;
    border: 1px solid rgba(0,0,0,0.06);
}
.hp1-feat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.1);
    padding: 0 10px;
}
.hp1-feat:last-child {
    border-right: none;
}
.hp1-feat-ic {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #E8A811;
    background: rgba(197,145,62,0.1);
    border-radius: 50%;
    margin-bottom: 8px;
}
.hp1-feat-tx strong {
    font-size: 0.65rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1.3;
    display: block;
    margin-bottom: 2px;
}
.hp1-feat-tx span {
    font-size: 0.6rem;
    color: #777;
    line-height: 1.3;
    display: block;
}

/* CTA Button */
.hp1-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #E8A811;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
    position: relative;
    z-index: 15;
}
.hp1-cta-btn:hover {
    background: #A67830;
    transform: translateY(-2px);
    color: #fff;
}

/* Right Column (Background Image) */
.hp1-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    z-index: 1;
}
.hp1-img-main {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    /* Soft gradient fade into left */
    mask-image: linear-gradient(to right, transparent, black 15%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%);
}
.hp1-img-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.5) 100%);
}

/* Bottom Wrap (Cards & Stats) */
.hp1-bottom-wrap {
    position: relative;
    z-index: 10;
    margin-top: -140px;
}

/* Cards Wrapper */
.hp1-cards-wrap {
    width: 100%;
    padding: 0 3%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: -25px;
    position: relative;
    z-index: 12;
}

.hp1-cards {
    display: flex;
    gap: 10px;
    width: 58%;
}

.hp1-card {
    flex: 1;
    background: #000;
    border: 2px solid #E8A811;
    border-radius: 10px;
    overflow: hidden;
    transform: skewX(-8deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hp1-card-inner {
    transform: skewX(8deg);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hp1-card-img {
    height: 100px;
    background-size: cover;
    background-position: center;
    transform: scale(1.15);
}

.hp1-card-tx {
    padding: 8px 8px;
    text-align: center;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    background: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Stats Bar */
.hp1-stats-bar {
    background: var(--green);
    color: #fff;
    padding: 28px 0 8px;
    position: relative;
    z-index: 11;
    clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
    border-bottom: 2px solid var(--gold);
}

.hp1-stats-inner {
    display: flex;
    width: 50%;
    padding-left: 4%;
}

.hp1-st {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 0 16px;
    justify-content: flex-start;
}
.hp1-st:first-child { padding-left: 0; }
.hp1-st:last-child { border-right: none; padding-right: 0; }

.hp1-st-ic {
    color: #E8A811;
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}
.hp1-st-tx {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.hp1-st-tx strong {
    font-size: 1.3rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #E8A811;
    line-height: 1;
    display: block;
    white-space: nowrap;
}
.hp1-st-tx span {
    font-size: 0.55rem;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    line-height: 1.3;
    display: block;
    white-space: normal;
}

/* Responsive */
@media(max-width: 1200px) {
    .hp1-cards { width: 60%; }
    .hp1-stats-inner { max-width: 100%; }
}
@media(max-width: 1024px) {
    .hero-pro-1 { padding-top: 70px; min-height: auto; overflow: hidden; display: flex; flex-direction: column; }
    .hp1-announce { position: relative; width: 100%; top: auto; right: auto; left: 0; transform: none; padding: 16px 20px; order: -1; margin-bottom: 15px; box-sizing: border-box; }
    .hp1-an-title { font-size: 0.85rem; letter-spacing: 1px; }
    .hp1-an-desc { font-size: 0.78rem; }

    .hp1-body { flex-direction: column; padding-top: 10px; position: relative; min-height: 420px; }
    .hp1-left { width: 100%; flex: none; padding: 15px 20px 10px; text-align: center; position: relative; z-index: 3; align-items: center; }
    .hp1-logo-block { margin: 0 auto 8px; }
    .hp1-logo-block img { height: 40px; }
    .hp1-h1 { font-size: 1.6rem; margin-bottom: 4px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
    .hp1-text-gold { color: #E8A811 !important; }
    .hp1-sub { font-size: 0.85rem; margin-bottom: 14px; color: rgba(255,255,255,0.9); text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
    .hp1-cta-btn { margin: 0 auto 12px; padding: 10px 20px; font-size: 0.8rem; }

    .hp1-feats { width: 100%; margin-left: 0; flex-wrap: wrap; padding: 10px 6px; gap: 6px 0; background: rgba(255,255,255,0.92); }
    .hp1-feat { flex: 0 0 50%; border-right: none; padding: 4px 8px; border-bottom: 1px solid rgba(0,0,0,0.06); }
    .hp1-feat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.08); }
    .hp1-feat:nth-child(n+3) { border-bottom: none; }
    .hp1-feat-ic { width: 28px; height: 28px; font-size: 12px; margin-bottom: 4px; }

    /* Keep image as full background on mobile */
    .hp1-right { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
    .hp1-img-main { mask-image: none; -webkit-mask-image: none; width: 100%; height: 100%; }
    .hp1-img-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%); }

    .hp1-bottom-wrap { margin-top: 0; }
    .hp1-cards-wrap { justify-content: center; margin-bottom: -20px; padding: 0 10px; }
    .hp1-cards { width: 100%; gap: 8px; }
    .hp1-card { transform: skewX(-4deg); }
    .hp1-card-inner { transform: skewX(4deg); }
    .hp1-card-img { height: 80px; }
    .hp1-card-tx { font-size: 0.55rem; padding: 6px 4px; }

    .hp1-stats-bar { padding: 30px 15px 12px; clip-path: none; border-radius: 20px 20px 0 0; }
    .hp1-stats-inner { width: 100%; max-width: 100%; flex-wrap: wrap; gap: 0; }
    .hp1-st, .hp1-st:first-child, .hp1-st:last-child { flex: 0 0 50%; border-right: none; padding: 12px 10px; justify-content: flex-start; border-bottom: 1px solid rgba(255,255,255,0.06); box-sizing: border-box; }
    .hp1-st:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
    .hp1-st:nth-child(n+3) { border-bottom: none; }
    .hp1-st-ic { font-size: 15px; }
    .hp1-st-tx strong { font-size: 0.9rem; }
    .hp1-st-tx span { font-size: 0.6rem; }
}
@media(max-width: 480px) {
    .hp1-h1 { font-size: 1.8rem; }
    .hp1-announce { padding: 12px 14px; }
    .hp1-an-title { font-size: 0.72rem; }
    .hp1-an-desc { font-size: 0.7rem; }
    .hp1-right { height: 220px; }
    .hp1-feats { padding: 10px 4px; }
    .hp1-feat-tx strong { font-size: 0.62rem; }
    .hp1-feat-tx span { font-size: 0.58rem; }
    .hp1-cards { flex-wrap: wrap; }
    .hp1-card { flex: 0 0 calc(50% - 4px); transform: none; border-radius: 6px; }
    .hp1-card-inner { transform: none; }
    .hp1-card-img { height: 70px; transform: none; }
    .hp1-card-tx { font-size: 0.55rem; }
}

/* ========================================================================= */
/* WHY CHOOSE US SECTION
/* ========================================================================= */
.section-why-us {
    padding: 50px 0;
}
.section-why-us .section-label {
    color: var(--gold, #E8A811);
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.section-why-us .section-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}
/* Gold underline */
.section-why-us .section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold, #E8A811);
}
.section-why-us .section-title span,
.section-why-us .section-title .tx-gold {
    color: var(--gold, #E8A811);
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
}
.why-card {
    padding: 36px 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: #fff;
    transition: all 0.4s ease;
    position: relative;
}
.why-card:hover {
    background: #FDFAF3;
    box-shadow: 0 8px 30px rgba(197, 145, 62, 0.08);
}

/* Icon */
.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--gold, #E8A811);
    background: rgba(197, 145, 62, 0.08);
    border-radius: 10px;
    transition: all 0.3s;
}
.why-card:hover .why-icon {
    background: var(--gold, #E8A811);
    color: #fff;
    transform: scale(1.05);
}

/* Text */
.why-card h3 {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    line-height: 1.3;
}
.why-card h3 .tx-gold {
    color: var(--gold, #E8A811);
}
.why-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Highlight badge */
.why-highlight {
    margin-top: 16px;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(197, 145, 62, 0.1);
    color: var(--gold, #E8A811);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-why-us {
        padding: 50px 0;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 32px;
    }
    .why-card {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        border-bottom: none;
    }
    .why-card:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
}

/* ========================================================================= */
/* SHOWCASE GRID SECTION (1 large + N small, slider when >2 small)
/* ========================================================================= */
.showcase-grid-section {
    padding: 50px 0;
}
.showcase-grid-header {
    margin-bottom: 48px;
}

/* === GRID LAYOUT === */
.showcase-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 12px;
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
}

/* Right container (holds all small items) */
.showcase-right {
    display: grid;
    grid-template-rows: repeat(auto-fit, 1fr);
    gap: 12px;
}

/* When slider mode: vertical scroll on desktop */
.showcase-right--slider {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    max-height: 100%;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    scroll-snap-type: y mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(197,145,62,0.4) transparent;
}
.showcase-right-wrapper {
    position: relative;
    height: 100%;
    min-height: 100%;
}
.showcase-right--slider::-webkit-scrollbar {
    width: 6px;
}
.showcase-right--slider::-webkit-scrollbar-track {
    background: transparent;
}
.showcase-right--slider::-webkit-scrollbar-thumb {
    background: rgba(197,145,62,0.4);
    border-radius: 3px;
}
.showcase-right--slider::-webkit-scrollbar-thumb:hover {
    background: rgba(197,145,62,0.7);
}
.showcase-right--slider .showcase-item--small {
    flex: 0 0 calc((100% - 12px) / 2);
    min-height: 200px;
    scroll-snap-align: start;
}

/* Items */
.showcase-item {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    border-radius: 8px;
    height: 100%;
}
.showcase-item--large {
    min-height: 100%;
}
.showcase-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.showcase-item:hover img {
    transform: scale(1.06);
}
.showcase-item-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8dcc8, #d4c4a8);
    color: var(--gold, #E8A811);
    font-size: 3rem;
}

/* Overlay */
.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.4s;
}
.showcase-item:hover .showcase-overlay {
    opacity: 0.2 !important;
}

/* Label — Bottom Gradient (default) */
.showcase-label {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.showcase-label--bottom_gradient {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.showcase-label--bottom_solid {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
}
.showcase-label--center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 12px 24px;
    background: rgba(0,0,0,0.6);
    border-radius: 8px;
    backdrop-filter: blur(6px);
}
.showcase-label-cat {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold, #E8A811);
}
.showcase-label-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    color: #E8A811;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin: 0;
    padding: 5px 12px;
    display: inline-block;
    text-align: center;
    border: 1px solid rgba(197, 145, 62, 0.6);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    text-shadow:
        0 0 8px rgba(197, 145, 62, 0.6),
        0 0 20px rgba(197, 145, 62, 0.3);
    box-shadow:
        0 0 8px rgba(197, 145, 62, 0.3),
        0 0 20px rgba(197, 145, 62, 0.15),
        inset 0 0 8px rgba(197, 145, 62, 0.1);
    transition: all 0.4s ease;
}
.showcase-item:hover .showcase-label-title {
    color: #D4A853;
    border-color: rgba(212, 168, 83, 0.9);
    text-shadow:
        0 0 12px rgba(212, 168, 83, 0.8),
        0 0 30px rgba(212, 168, 83, 0.5),
        0 0 50px rgba(212, 168, 83, 0.2);
    box-shadow:
        0 0 12px rgba(212, 168, 83, 0.5),
        0 0 30px rgba(212, 168, 83, 0.25),
        inset 0 0 12px rgba(212, 168, 83, 0.15);
}
.showcase-item--large .showcase-label-title {
    font-size: 1rem;
    padding: 6px 16px;
}

/* ===== SHOWCASE LIGHTBOX ===== */
.showcase-lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.showcase-lightbox.active {
    display: flex;
}
.showcase-lb-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 100000;
    line-height: 1;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
}
.showcase-lb-close:hover {
    background: var(--gold, #E8A811);
    border-color: var(--gold, #E8A811);
}
.showcase-lb-inner {
    width: 100%;
    max-width: 850px;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}
.showcase-lb-main {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.showcase-lb-content {
    flex: 1;
    width: 100%;
    max-height: 60vh;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.showcase-lb-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 60vh;
    display: block;
}
.showcase-lb-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.5);
    padding: 4px 8px;
    border-radius: 4px;
}
.showcase-lb-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    font-family: var(--font-heading, sans-serif);
    padding: 4px 0;
}
.showcase-lb-nav {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.5);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .3s;
}
.showcase-lb-nav:hover {
    border-color: var(--gold, #E8A811);
    color: var(--gold, #E8A811);
    background: rgba(0,0,0,0.7);
}

/* Thumbnails */
.showcase-lb-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 6px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(197,145,62,0.4) transparent;
    justify-content: center;
    flex-wrap: nowrap;
}
.showcase-lb-thumbs::-webkit-scrollbar {
    height: 4px;
}
.showcase-lb-thumbs::-webkit-scrollbar-thumb {
    background: rgba(197,145,62,0.4);
    border-radius: 2px;
}
.showcase-lb-thumbs img {
    flex: 0 0 110px;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    opacity: 0.45;
    transition: all .3s;
    object-fit: cover;
    width: 110px;
}
.showcase-lb-thumbs img.active {
    border-color: var(--gold, #E8A811);
    opacity: 1;
}
.showcase-lb-thumbs img:hover {
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
    .showcase-grid-section {
        padding: 50px 0;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .showcase-item--large {
        aspect-ratio: 16/9;
    }
    
    /* Normal mode (<=2 small): 2 columns side by side */
    .showcase-right-wrapper {
        height: auto;
        min-height: auto;
    }
    .showcase-right {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .showcase-right .showcase-item--small {
        aspect-ratio: 4/3;
    }
    
    /* Slider mode (>2 small): horizontal scroll on mobile */
    .showcase-right--slider {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        height: auto;
        max-height: none;
        position: relative;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
    .showcase-right--slider::-webkit-scrollbar {
        height: 4px;
        width: auto;
    }
    .showcase-right--slider .showcase-item--small {
        flex: 0 0 65%;
        min-height: auto;
        scroll-snap-align: start;
        aspect-ratio: 4/3;
    }
    
    .showcase-label-title {
        font-size: 0.72rem;
    }
    .showcase-item--large .showcase-label-title {
        font-size: 0.85rem;
    }
    .showcase-lb-inner { max-width: 100%; gap: 8px; }
    .showcase-lb-content { max-height: 45vh; }
    .showcase-lb-content img { max-height: 45vh; }
    .showcase-lb-nav { display: none; }
    .showcase-lb-close { top: 5px; right: 5px; width: 32px; height: 32px; font-size: 18px; }
    .showcase-lb-thumbs img { flex: 0 0 75px; height: 45px; width: 75px; }
    .showcase-lb-title { font-size: 0.85rem; }
}

@media(max-width: 480px) {
    .showcase-lb-thumbs img { flex: 0 0 60px; height: 38px; width: 60px; }
}

/* Video Slider */
.video-card:hover .video-play-overlay {
    background: rgba(0,0,0,0.5) !important;
}
.video-card:hover .play-btn {
    transform: scale(1.1);
    background: #fff !important;
    color: var(--gold, #E8A811) !important;
}
.video-card:hover img {
    transform: scale(1.05);
}

/* Lined Title Style */
.section-title.lined-title, .si-title.lined-title, .split-stats-title.lined-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    width: 100%;
}
.section-title.lined-title > span,
.si-title.lined-title > span {
    display: contents;
}
.section-title.lined-title::before,
.section-title.lined-title::after,
.si-title.lined-title::before,
.si-title.lined-title::after,
.split-stats-title.lined-title::before,
.split-stats-title.lined-title::after {
    content: "";
    flex: 1 1 0;
    height: 1px;
    background-color: #222;
    min-width: 20px;
}
@media (max-width: 768px) {
    .section-title.lined-title, .si-title.lined-title, .split-stats-title.lined-title {
        gap: 10px;
    }
    .section-title.lined-title::before,
    .section-title.lined-title::after,
    .si-title.lined-title::before,
    .si-title.lined-title::after,
    .split-stats-title.lined-title::before,
    .split-stats-title.lined-title::after {
        flex-grow: 1;
    }
}
/* Text section responsive grids */
@media (max-width: 768px) {
    .vm-grid { grid-template-columns: 1fr !important; }
}
