:root {
	--primary: #1d78bf;
	--primary-dark: #155a8f;
	--accent-green: #3fce57;
	--text-dark: #091747;
	--white: #ffffff;
}

/* --- MODIFIKASI LEBAR CONTAINER MENJADI 1400px --- */
@media (min-width: 1400px) {
	.container {
		max-width: 1400px;
	}
}

body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); overflow-x: hidden; }

/* --- NAVBAR --- */
/* --- TOP BAR STYLE (Email & Phone) --- */
.top-header-bar {
	background-color: #f8f9fa; /* Warna latar abu-abu terang */
	height: 36px;              /* Tinggi baris atas */
	font-size: 13px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e0e0e0;
	
	/* Agar tetap fixed di atas */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1040; /* Di atas navbar */
}

.top-contact-link {
	color: var(--text-dark);
	text-decoration: none;
	margin-left: 25px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: 0.3s;
}

.top-contact-link:hover {
	color: var(--primary);
}

.top-contact-link i {
	color: var(--primary); /* Ikon warna biru */
}

.navbar {
	top: 36px; 
	background-color: var(--white);
	box-shadow: 0 2px 15px rgba(0,0,0,0.05);
	padding: 10px 0;
}
/* Pada layar HP (Mobile), biasanya top bar disembunyikan agar hemat tempat */
@media (max-width: 991px) {
	.top-header-bar { display: none; }
	.navbar { top: 0 !important; }
	.hero-section { margin-top: 80px; } /* Sesuaikan jarak hero di HP */
}
.navbar-brand img { height: 50px; }

/* Container untuk Logo Utama + Logo Schneider di Kiri */
.brand-wrapper {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-partner-logos {
	border-left: 1px solid #eee;
	padding-left: 20px;
	display: flex;
	align-items: center;
}

.header-partner-logos img {
	height: 47px;
	margin-right: 15px;
	object-fit: contain;
}

.nav-link {
	font-weight: 600;
	font-size: 13px;
	color: var(--text-dark) !important;
	text-transform: uppercase;
	margin: 0 8px;
}

.btn-header {
	background-color: var(--primary);
	color: var(--white) !important;
	border-radius: 50px;
	padding: 8px 20px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: 0.3s;
}

/* --- HERO --- */
.hero-section {
	position: relative;
	height: 85vh;
	min-height: 550px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	color: var(--white);
	margin-top: 70px;
}
.hero-video {
	position: absolute;
	top: 50%; left: 50%;
	min-width: 100%; min-height: 100%;
	z-index: -1;
	transform: translate(-50%, -50%);
	object-fit: cover;
	filter: brightness(0.4);
}
.hero-subtitle { color: var(--accent-green); font-weight: 600; font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.hero-title { font-size: 50px; font-weight: 600; margin-bottom: 20px; }
.hero-desc { font-size: 16px; font-weight: 400; max-width: 750px; margin: 0 auto 35px; opacity: 0.9; }

/* --- INNOVATIVE SECTION --- */
.innovative-container {
	border-bottom: 1px solid #eee;
	padding: 40px 0;
}
.text-border-left {
	border-left: 5px solid var(--accent-green);
	padding-left: 20px;
}

/* Logo Slider */
/* Container Utama Slider */
.logo-slider {
	width: 100%;
	overflow: hidden;
	padding: 30px 0;
	position: relative;
	display: flex;
	align-items: center;
}

/* Track Animasi */
.logo-track {
	display: flex;
	width: max-content; /* Lebar otomatis mengikuti konten */
	animation: scroll-infinite 40s linear infinite;
}

.slide {
	padding: 0 35px; /* Jarak antar logo lebih lega */
	flex-shrink: 0;
}

.slide img {
	height: 60px; /* Ukuran standar logo partner */
	width: auto;
	object-fit: contain;
	
	/* TRICK PROFESIONAL: Menghilangkan background putih pada file gambar (JPG/PNG) */
	mix-blend-mode: multiply; 
	
	/* Opsional: buat agak grayscale dan berwarna saat hover */
	filter: grayscale(0%);
	opacity: 1;
	transition: all 0.4s ease;
}

.slide img:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.1);
}

/* Animasi Infinite */
@keyframes scroll-infinite {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); } /* Berhenti di titik tengah karena track sudah di-clone oleh JS */
}

/* Menghilangkan efek 'lompat' saat animasi reset */
.logo-slider::before, .logo-slider::after {
	content: "";
	height: 100%;
	position: absolute;
	width: 150px;
	z-index: 2;
	pointer-events: none;
}

/* --- ABOUT SECTION --- */
.section-padding { padding: 80px 0; }
.section-label { color: var(--accent-green); font-weight: 600; font-size: 16px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 15px; display: block; }
.section-label-w { color: #fff; font-weight: 600; font-size: 16px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 15px; display: block; }
.section-heading { font-size: 32px; font-weight: 600; line-height: 1.3; margin-bottom: 25px; }
.section-heading-w { color: #fff; font-size: 32px; font-weight: 600; line-height: 1.3; margin-bottom: 25px; }
.section-subheading {font-weight: 600; font-size: 18px; margin-bottom: 10px; color: var(--text-dark); }
.section-text { font-size: 18px; font-weight: 400; line-height: 1.8; color: #555; margin-bottom: 20px; }
.section-text-w { color: #fff; font-size: 18px; font-weight: 400; line-height: 1.8; margin-bottom: 20px; }

.about-image-container { position: relative; padding: 15px; }
.about-main-img { width: 100%; border-radius: 30px; position: relative; z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.green-frame-accent {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	border: 10px solid var(--accent-green);
	border-radius: 40px;
	z-index: 1;
	transform: translate(-15px, -15px);
}

@media (max-width: 991px) {
	.hero-title { font-size: 2.5rem; }
	.header-partner-logos { display: none; }
}

/* --- STYLE KHUSUS SLIDER 1400px --- */
.custom-section {
    padding: 80px 0;
}

.label-green-accent {
    color: #3fce57;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

/* Slider Container */
/* Container Slider Horizontal */
.overflow-slider-container {
    display: flex;
    overflow-x: auto; /* Wajib: agar bisa discroll ke samping */
    gap: 30px;
    padding: 20px 5px 40px 5px; /* Padding bawah agak besar untuk tempat scrollbar */
    
    /* Scrollbar behavior */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Agar smooth di layar sentuh */
    
    /* Untuk Firefox */
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #e0e0e0;
}

/* --- KUSTOMISASI SCROLLBAR (Chrome, Safari, Edge) --- */
/* --- SCROLL CONTAINER UMUM --- */
.horizontal-scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 20px;
    padding-top: 10px;
    /* Custom Scrollbar tipis */
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f1f5f9;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}
.horizontal-scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}
.horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: #cbd5e0;
    border-radius: 4px;
}

/* --- GLIMPSE OF PRODUCTS STYLE --- */
.products-flex-container {
    display: flex;
    gap: 20px;
    width: max-content; /* Agar konten tidak turun ke bawah */
}

.product-card-horizontal {
    width: 350px; /* Lebar fix agar seragam */
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center; /* Vertikal center */
    gap: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s;
}

.product-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.product-thumb {
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0; /* Gambar tidak boleh mengecil */
}

/* --- AWARDS STYLE (2 BARIS / GRID) --- */
.awards-grid-container {
    display: grid;
    /* Kunci 2 Baris: */
    grid-template-rows: repeat(2, 1fr); 
    grid-auto-flow: column; /* Mengisi kolom dulu (ke kanan) */
    gap: 20px;
    width: max-content;
}

.award-card-horizontal {
    width: 400px; /* Lebar kartu award */
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.2s;
}

.award-card-horizontal:hover {
    border-color: var(--accent-green);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.award-img {
    width: 60px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.award-info h6 {
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 5px;
}

.award-info p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* --- ISO SECTION (Quality DNA) --- */
.iso-dna-section {
    position: relative;
    /* Background Image dari file Bubble  */
    background-image: url('../img/bg-section-6.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

/* Overlay agar teks lebih terbaca */
.iso-dna-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0); /* Gelap transparan */
    z-index: 1;
}

.iso-content-wrapper {
    position: relative;
    z-index: 2; /* Agar konten di atas overlay */
}

.iso-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 30px;
    filter: brightness(0) invert(1); /* Memutihkan logo */
}

/* Tombol Verify ISO [cite: 374] */
.btn-verify-iso {
    background-color: white;
    color: var(--primary);
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-verify-iso:hover {
    background-color: #e6e6e6;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* --- SERVICES SECTION (Revised: Smaller & Compact) --- */
/* --- SERVICES SECTION (Updated Layout) --- */
.services-wrapper {
    padding: 60px 0;
	background-color: rgb(9,23,71);
}

.services-bg-card {
    /* HANYA GAMBAR & WARNA (Tanpa Layer Overlay/Gradient) */
    background-image: url('../img/bg-section-7.png');
    background-color: #0d1b3e; /* Warna Background Container */
    background-size: cover;
    background-position: center;
    
    border-radius: 40px;
    padding: 60px 50px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    
    /* PENGATURAN TINGGI & POSISI GRID DI BAWAH */
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Memisahkan Judul (Atas) dan Grid (Bawah) */
}

/* Header Content (Agar tetap di atas) */
.services-header-content {
    margin-bottom: auto; /* Mendorong konten lain ke bawah */
    position: relative;
    z-index: 2;
}

.center-mini-logo img {
    width: 120px;
    height: auto;
}

/* Grid Layout 3 Kolom & Di Bawah */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Kolom */
    gap: 25px;
    text-align: left;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

/* Service Card Design */
.svc-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 120px; /* Tinggi kartu */
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.svc-card:hover {
    transform: translateY(-5px);
}

.svc-img {
    width: 35%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.svc-content {
    padding: 15px 20px;
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.svc-content h5 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.svc-content p {
    color: #666;
    font-size: 11px;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsif HP */
@media (max-width: 991px) {
    .services-bg-card { 
        padding: 40px 20px; 
        min-height: auto; /* Reset tinggi di HP */
    }
    .services-grid { grid-template-columns: 1fr; } /* 1 Kolom di HP */
    .services-title { font-size: 2rem; }
    .svc-card { height: auto; min-height: 120px; }
}

/* --- COVERAGE SECTION --- */
.coverage-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* Styling Angka Statistik */
.stat-item {
    margin-bottom: 30px;
    border-left: 4px solid #eee;
    padding-left: 20px;
    transition: 0.3s;
}

.stat-item:hover {
    border-left-color: var(--primary);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* Styling Peta (UPDATED untuk Zoom 1.5x) */
.map-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Tambahan: agar gambar yang di-zoom tidak keluar area */
    overflow: hidden;
    border-radius: 20px; /* Opsional: memberi sudut tumpul pada area peta */
}

.map-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
    
    /* Tambahan: Zoom 1.5x */
    transform: scale(1.5);
    transform-origin: center center; /* Zoom dari tengah */
    transition: transform 0.3s ease; /* Animasi halus jika nanti mau ada efek hover */
}

/* Responsif HP */
@media (max-width: 991px) {
    .coverage-heading { font-size: 2rem; }
    .map-container { margin-bottom: 50px; }
    /* Pada HP, mungkin zoom-nya perlu dikurangi sedikit agar tidak terlalu terpotong */
    .map-img { transform: scale(1.2); }
}

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 100px 0;
    background-color: rgb(244,244,244);
}

.contact-heading {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-desc {
    color: #666;
    margin-bottom: 40px;
	font-size: 14px;
    font-weight: 400;
}

/* Form Styling - Bulat & Bersih */
.form-group {
    margin-bottom: 20px;
}

.form-control-custom {
    width: 100%;
    padding: 12px 25px;
    border-radius: 50px; /* Input berbentuk Pill */
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    font-size: 14px;
    transition: all 0.3s;
}

.form-control-custom:focus {
    background-color: #fff;
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(29, 120, 191, 0.1);
}

textarea.form-control-custom {
    border-radius: 25px; /* Radius lebih kecil untuk textarea */
}

/* Gambar Contact */
.contact-image-container {
    height: 100%;
    min-height: 500px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- SHOP OFFICIAL STORE SECTION --- */
.shop-section {
    padding: 80px 0;
    background-color: white;
}

.shop-card {
    background-color: var(--primary); /* Warna Biru Utama */
    border-radius: 40px;
    overflow: hidden;
    color: white;
    min-height: 400px;
    display: flex;
    box-shadow: 0 20px 50px rgba(29, 120, 191, 0.2);
}

.shop-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tombol Marketplace */
.btn-marketplace {
    background-color: white;
    color: var(--text-dark);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
    margin-right: 15px;
    margin-bottom: 10px;
}

.btn-marketplace img {
    height: 24px;
    width: auto;
}

.btn-marketplace:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.shop-image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* --- FOOTER STYLING UPDATE --- */
.office-footer {
    padding: 80px 0 30px 0;
    background-color: white;
    color: var(--text-dark);
    border-top: 1px solid #eee;
}

.footer-heading-blue {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 30px;
}

/* Judul Kecil untuk Menu (Company, Connect) */
.footer-heading {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    margin-top: 5px; /* Sedikit jarak agar sejajar visual dengan alamat */
}

.address-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.address-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Link Menu Footer */
.footer-link {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: all 0.2s;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 5px; /* Efek geser kanan sedikit saat hover */
}

/* Social Buttons */
.social-links {
    display: flex;
    gap: 10px;
}

.social-btn-footer {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.3s;
}

.social-btn-footer:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.iso-footer-container {
    margin-top: 15px;
}

.iso-footer-img {
    height: 50px; /* Ukuran ISO dirapikan */
    width: auto;
}

/* --- STYLE KHUSUS HALAMAN ABOUT US --- */
.section-padding { padding: 80px 0; }
/* 1. Hero Vision Section */
.about-hero-section {
	padding: 150px 0 100px 0; /* Jarak atas disesuaikan krn navbar fixed */
	background-color: #fff;
}

.about-hero-img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	object-fit: cover;
	min-height: 400px;
}

/* 3. Passion Section (Parallax Style) */
.passion-section {
	position: relative;
	background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&q=80&w=2070'); /* Gambar Pabrik/Pipa */
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 120px 0;
	color: white;
}
.passion-overlay {
	position: absolute; top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(0,0,0,0.4); z-index: 1;
}
.passion-content {
	position: relative; z-index: 2;
}
.passion-card {
	background: white;
	padding: 50px;
	border-radius: 20px;
	color: var(--text-dark);
	box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.passion-logo { max-width: 120px; margin-top: 15px; } 

/* 4. Our Vision (Worker Image) */
.vision-detail-section {
	padding: 100px 0;
}
.vision-worker-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	min-height: 400px;
}

/* 5. Core Values (Icons) */
.values-section {
	background-color: #f8f9fa;
	padding: 80px 0;
}
.value-item {
	padding: 20px;
}
.value-icon {
	font-size: 30px;
	color: var(--primary);
	margin-bottom: 20px;
}

.value-desc {
	font-size: 14px;
	font-weight: 400;
	color: #666;
	line-height: 1.6;
}

/* 6. Team Section */
.team-section {
	padding: 100px 0;
}
.team-card {
	background: white;
	border: 1px solid #eee;
	border-radius: 15px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: 0.3s;
	height: 100%;
}
.team-card:hover {
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	border-color: var(--primary);
}
.team-img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
}
.team-info h6 {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 5px;
	color: var(--text-dark);
}
.team-info p {
	font-size: 13px;
	color: #777;
	margin: 0;
}

/* 7. CTA Blue Card (Ready to work) */
.cta-section {
	padding-bottom: 80px;
}
.cta-card {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	border-radius: 30px;
	overflow: hidden;
	color: white;
	min-height: 350px;
	display: flex;
	box-shadow: 0 20px 40px rgba(29, 120, 191, 0.3);
}

.cta-content { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.cta-image { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.btn-cta-white {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.5);
	color: white;
	padding: 10px 25px;
	border-radius: 50px;
	text-decoration: none;
	display: inline-block;
	margin-top: 20px;
	font-size: 14px;
	transition: 0.3s;
}
.btn-cta-white:hover {
	background: white;
	color: var(--primary);
}

<style>
/* CSS KHUSUS SECTION 1 */
.rsi-hero {
    padding: 160px 0 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.rsi-section {
	background-color: rgb(17,151,55);
}

.rsi-badge {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.rsi-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 25px;
}

.rsi-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-rsi-lg {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.rsi-hero-image-wrapper {
    position: relative;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--text-dark);
}

@media (max-width: 991px) {
    .rsi-hero { padding-top: 120px; }
    .rsi-title { font-size: 2.5rem; }
}

.rsi-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

/* SEARCH */
.rsi-search {
    background: #f3f3f3;
    padding: 20px;
    border-radius: 16px;
}

.rsi-search input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    border: none;
    outline: none;
}

/* LIST */
.rsi-list {
    max-height: 460px;       /* ± 5 item */
    overflow-y: auto;
    padding-right: 10px;
}

/* ITEM */
.rsi-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.rsi-item:last-child {
    border-bottom: none;
}

.badge {
    width: 42px;
    height: 42px;
    background: #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.info h4 {
    margin: 0;
    font-size: 16px;
}

.info p {
    margin: 4px 0;
    font-size: 13px;
    color: #6b7280;
}

.info a {
    font-size: 13px;
    color: #16a34a;
    text-decoration: none;
}

</style>