/* ============================================
   VARIABLES - PALETTE INDUSTRIAL
============================================ */
:root {
    /* Primary Colors - Dari palet Anda */
    --primary-red: #c23d35;      /* Merah industrial */
    --secondary-gold: #d7ad63;   /* Emas/kuningan */
    --primary-blue: #1d4962;     /* Biru tua industrial */
    --light-gray: #ceccbf;       /* Abu-abu muda */
    --dark-green: #3e5543;       /* Hijau gelap industrial */
    
    /* Industrial Color Extensions */
    --steel-blue: #2c3e50;       /* Biru baja */
    --concrete-gray: #7f8c8d;    /* Abu-abu beton */
    --rust-orange: #e67e22;      /* Oranye karat */
    --metal-gray: #95a5a6;       /* Abu-abu metalik */
    --industrial-black: #2c3e50; /* Hitam industrial */
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-bg: #f5f7fa;
    --dark-bg: #1a1a2e;
    
    /* Gradients Industrial */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--steel-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-gold) 0%, #e8c689 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary-red) 0%, var(--rust-orange) 100%);
    --gradient-industrial: linear-gradient(135deg, var(--dark-green) 0%, var(--steel-blue) 100%);
    
    /* Shadows Industrial */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-industrial: 0 5px 15px rgba(0, 0, 0, 0.3);
    
    /* Borders */
    --border-light: 1px solid rgba(206, 204, 191, 0.2);
    --border-medium: 2px solid rgba(206, 204, 191, 0.4);
    --border-heavy: 3px solid var(--secondary-gold);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.5s ease;
}

/* ============================================
   RESET & GLOBAL STYLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--industrial-black);
    background-color: var(--white);
    padding-top: 130px; /* Top-bar (40px) + Navbar (80px) + sedikit margin */
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(206, 204, 191, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 85% 30%, rgba(29, 73, 98, 0.03) 0%, transparent 20%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-blue);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--concrete-gray);
}

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

a:hover {
    color: var(--primary-red);
}

.container {
    max-width: 1200px;
}

.content-wrapper {
    min-height: calc(100vh - 500px);
}

/* ============================================
   TOP INDUSTRIAL BAR - PERBAIKAN
============================================ */
.top-industrial-bar {
    background: var(--gradient-primary); /* Warna sama dengan navbar */
    color: var(--white);
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040; /* Lebih tinggi dari navbar */
    border-bottom: var(--border-heavy); /* Border yang sama dengan navbar */
    font-size: 0.9rem;
    backdrop-filter: blur(10px); /* Efek blur seperti navbar */
    transition: var(--transition-normal);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-link {
    color: var(--white);
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--secondary-gold);
    opacity: 1;
    transform: translateY(-1px);
}

.contact-link i {
    font-size: 0.9rem;
}

.social-media-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.follow-us {
    font-size: 0.9rem;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 6px;
    transition: var(--transition-normal);
    font-size: 0.9rem;
}

.social-icon:hover {
    background: var(--secondary-gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ============================================
   INDUSTRIAL NAVBAR
============================================ */
.industrial-navbar {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-industrial);
    padding: 0;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    top: 40px; /* Posisikan di bawah top bar */
    border-bottom: var(--border-heavy);
    z-index: 1030;
}

.navbar-brand {
    padding: 15px 0;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.brand-logo i {
    font-size: 26px;
    color: var(--primary-blue);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--secondary-gold);
    letter-spacing: 1px;
    font-weight: 500;
}

/* Social Media di Navbar */
.navbar-social {
    display: flex;
    gap: 10px;
    margin-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 20px;
}

.nav-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 6px;
    transition: var(--transition-normal);
}

.nav-social-icon:hover {
    background: var(--secondary-gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Nav Links Industrial */
.navbar-nav {
    gap: 5px;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: var(--transition-normal);
    padding: 12px 20px !important;
    border-radius: 6px;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin: 0 2px;
}

.nav-link:hover {
    color: var(--white) !important;
    background: rgba(215, 173, 99, 0.15);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--white) !important;
    background: rgba(215, 173, 99, 0.25);
    border: 2px solid var(--secondary-gold);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--secondary-gold);
    border-radius: 3px 3px 0 0;
}

.nav-link i {
    font-size: 1rem;
    margin-right: 8px;
}

/* Language Dropdown */
.language-dropdown .nav-link {
    padding: 10px 15px !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.language-dropdown .dropdown-menu {
    min-width: 180px;
    border: 2px solid var(--secondary-gold);
    border-radius: 8px;
}

.language-text {
    font-weight: 600;
}

/* Industrial Toggler */
.industrial-toggler {
    border: 2px solid var(--secondary-gold);
    border-radius: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
}

.industrial-toggler:focus {
    box-shadow: 0 0 0 3px rgba(215, 173, 99, 0.5);
}

/* ============================================
   HERO SECTION - SLIDESHOW INDUSTRIAL
============================================ */
.hero-slider {
    height: 85vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
    margin-top: -20px;
    border-bottom: 5px solid var(--secondary-gold);
}

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

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 12s ease;
}

.swiper-slide-active .slide-image {
    transform: scale(1.1);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(29, 73, 98, 0.85) 0%, rgba(29, 73, 98, 0.7) 100%);
    padding: 0 60px;
}

.slide-text {
    max-width: 700px;
    color: var(--white);
}

.slide-text h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.slide-text p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Swiper Navigation Industrial */
.swiper-button-next, .swiper-button-prev {
    color: var(--secondary-gold) !important;
    background: rgba(29, 73, 98, 0.8);
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    border: 2px solid var(--secondary-gold);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(215, 173, 99, 0.2);
    transform: scale(1.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 24px !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: var(--white) !important;
    opacity: 0.5 !important;
    width: 12px !important;
    height: 12px !important;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.swiper-pagination-bullet-active {
    background: var(--secondary-gold) !important;
    opacity: 1 !important;
    border-color: var(--white);
    transform: scale(1.2);
}

/* ============================================
   BUTTONS INDUSTRIAL
============================================ */
.btn {
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-normal);
    padding: 14px 32px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    border-color: var(--primary-red);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--rust-orange) 0%, var(--primary-red) 100%);
    border-color: var(--rust-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gradient-secondary);
    border-color: var(--secondary-gold);
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #e8c689 0%, #f2d9a8 100%);
    border-color: #e8c689;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ============================================
   SECTION STYLES
============================================ */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    color: var(--primary-blue);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-gold);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--concrete-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ============================================
   PRODUCT CARDS INDUSTRIAL
============================================ */
.product-card {
    border: 2px solid rgba(206, 204, 191, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    background: var(--white);
    position: relative;
    border-top: 5px solid var(--secondary-gold);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.product-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: var(--light-bg);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-img {
    transform: scale(1.15);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
}

.product-card .card-body {
    padding: 30px;
    background: linear-gradient(to bottom, var(--white) 0%, #f9f9f9 100%);
}

.product-card .card-title {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

.product-card .card-text {
    color: var(--steel-blue);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
    min-height: 120px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    border-top: 1px solid rgba(206, 204, 191, 0.3);
    padding-top: 15px;
}

.product-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--concrete-gray);
    font-size: 0.95rem;
}

.product-features i {
    color: var(--secondary-gold);
    margin-right: 12px;
    font-size: 1rem;
    min-width: 20px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    font-family: 'Roboto Condensed', sans-serif;
}

/* ============================================
   SOCIAL MEDIA SECTION INDUSTRIAL
============================================ */
.social-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
    border-radius: 40px;
    padding: 80px 0;
    margin: 100px 0;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--secondary-gold);
}

.social-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.1;
}

.social-media-container {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    border: 2px solid rgba(206, 204, 191, 0.2);
}

.social-media-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-gold);
}

.social-icon-large {
    font-size: 3rem;
    color: var(--secondary-gold);
    margin-bottom: 20px;
}

.social-stats-container {
    background: rgba(29, 73, 98, 0.1);
    border: 2px solid rgba(29, 73, 98, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.social-stat {
    text-align: center;
    padding: 20px;
}

.social-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 10px;
}

.social-stat .stat-label {
    font-size: 1rem;
    color: var(--concrete-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   CLIENTS SECTION
============================================ */
.clients-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.clients-swiper {
    padding: 20px 0;
}

.client-logo {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
    border: 2px solid rgba(206, 204, 191, 0.2);
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.client-logo:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-gold);
    box-shadow: var(--shadow-lg);
}

.client-logo i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.client-logo span {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    border-radius: 40px;
    margin: 80px 0;
    border: 3px solid var(--secondary-gold);
}

.cta-section h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-section .btn-light {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
    padding: 16px 40px;
    font-weight: 600;
}

.cta-section .btn-light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ============================================
   INDUSTRIAL FOOTER - PERBAIKAN
============================================ */
.footer {
    background: var(--gradient-primary); /* Ganti dengan gradient primary */
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 30px;
    margin-top: 100px;
    position: relative;
    border-top: 5px solid var(--secondary-gold);
}

/* HAPUS background pattern sebelumnya */
/* .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><rect width="100" height="100" fill="none" stroke="white" stroke-width="2"/></svg>');
} */

/* Tambahkan overlay subtle untuk depth */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer h5, .footer h6 {
    color: var(--secondary-gold);
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 12px;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer h5::after, .footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-gold);
    border-radius: 3px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-brand .brand-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-brand .brand-logo i {
    font-size: 28px;
    color: var(--primary-blue);
}

.footer-brand .brand-text h5 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.footer-brand .brand-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-social {
    margin-top: 30px;
}

.footer-social .social-icons {
    margin-top: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-gold);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary-gold);
    margin-top: 5px;
    font-size: 1.2rem;
    min-width: 25px;
}

.footer-contact strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links-small {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.footer-links-small a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links-small a:hover {
    color: var(--secondary-gold);
}

/* ============================================
   FORM STYLES
============================================ */
.form-control {
    padding: 16px 20px;
    border: 2px solid rgba(206, 204, 191, 0.4);
    border-radius: 8px;
    margin-bottom: 25px;
    transition: var(--transition-normal);
    font-size: 1rem;
    background: var(--white);
}

.form-control:focus {
    border-color: var(--secondary-gold);
    box-shadow: 0 0 0 4px rgba(215, 173, 99, 0.15);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.form-text {
    color: var(--concrete-gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ============================================
   RESPONSIVE DESIGN - PERBAIKAN
============================================ */
@media (max-width: 1199.98px) {
    .slide-text h1 {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 88px; /* Hanya navbar saja */
    }
    
    .top-industrial-bar {
        display: block !important; /* Tampilkan top bar di mobile */
        position: relative; /* Ubah ke relative di mobile */
        top: auto;
        background: var(--gradient-primary); /* Tetap warna yang sama */
        z-index: 1030;
    }
    
    .industrial-navbar {
        top: 0; /* Reset top position di mobile */
    }
    
    .slide-text h1 {
        font-size: 2.8rem;
    }
    
    .slide-text p {
        font-size: 1.1rem;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-content {
        padding: 0 40px;
    }
    
    .navbar-social {
        display: none;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 76px;
    }
    
    .top-industrial-bar {
        padding: 6px 0;
        font-size: 0.8rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .slide-text h1 {
        font-size: 2.2rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 400px;
        border-radius: 0 0 30px 30px;
    }
    
    .slide-content {
        padding: 0 30px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 14px 30px;
    }
    
    .social-section {
        margin: 60px 0;
        padding: 60px 0;
        border-radius: 30px;
    }
    
    .footer {
        text-align: center;
        padding: 60px 0 20px;
    }
    
    .footer h5::after, .footer h6::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-brand {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-links-small {
        justify-content: center;
        margin-top: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .slide-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-slider {
        height: 50vh;
        min-height: 350px;
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-card .card-text {
        min-height: auto;
    }
}

/* ============================================
   UTILITY CLASSES
============================================ */
.rounded-xl {
    border-radius: 20px;
}

.rounded-xxl {
    border-radius: 40px;
}

.shadow-soft {
    box-shadow: var(--shadow-sm);
}

.shadow-medium {
    box-shadow: var(--shadow-md);
}

.shadow-hard {
    box-shadow: var(--shadow-lg);
}

.mt-negative {
    margin-top: -50px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* ============================= */
/* NAVBAR LOGO FIX */
/* ============================= */

/* Brand container adjustments */
.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 60px; /* Sesuaikan dengan tinggi navbar */
    padding: 5px 0;
}

/* Logo image container */
.brand-logo {
    width: 50px; /* Lebar maksimal logo */
    height: 50px; /* Tinggi maksimal logo */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Logo image itself */
.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* Brand text styling */
.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--secondary-gold);
    font-weight: 500;
    line-height: 1.2;
    opacity: 0.9;
}

/* ============================= */
/* RESPONSIVE LOGO ADJUSTMENTS */
/* ============================= */

/* Tablet (768px - 991px) */
@media (max-width: 991.98px) {
    .brand-container {
        height: 56px;
        gap: 10px;
    }
    
    .brand-logo {
        width: 45px;
        height: 45px;
    }
    
    .brand-title {
        font-size: 1.3rem;
    }
    
    .brand-subtitle {
        font-size: 0.7rem;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767.98px) {
    .brand-container {
        height: 52px;
        gap: 8px;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-title {
        font-size: 1.2rem;
    }
    
    .brand-subtitle {
        font-size: 0.65rem;
    }
}

/* Mobile kecil (480px - 575px) */
@media (max-width: 575.98px) {
    .brand-container {
        height: 48px;
        gap: 6px;
    }
    
    .brand-logo {
        width: 36px;
        height: 36px;
    }
    
    .brand-title {
        font-size: 1.1rem;
    }
    
    .brand-subtitle {
        font-size: 0.6rem;
    }
}

/* Extra kecil (di bawah 480px) */
@media (max-width: 479.98px) {
    .brand-container {
        height: 44px;
        gap: 5px;
    }
    
    .brand-logo {
        width: 32px;
        height: 32px;
    }
    
    .brand-title {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }
    
    .brand-subtitle {
        font-size: 0.55rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }
}

/* ============================= */
/* NAVBAR HEIGHT CONSISTENCY */
/* ============================= */

/* Pastikan navbar memiliki tinggi yang konsisten */
.industrial-navbar {
    min-height: 70px;
    padding: 0;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

/* ============================= */
/* ALTERNATIVE SOLUTION: SIMPLER LOGO */
/* ============================= */

/* Jika logo masih bermasalah, gunakan versi lebih sederhana */
.brand-logo.fixed-logo {
    width: 50px;
    height: 50px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-logo.fixed-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Untuk logo putih */
}

/* ============================= */
/* FALLBACK LOGO SOLUTION */
/* ============================= */

/* Jika logo tidak load, gunakan icon fallback */
.brand-logo:has(img[src*="logo.png"]:not([src])) {
    background: var(--secondary-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo:has(img[src*="logo.png"]:not([src])):before {
    content: "MT";
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* ============================= */
/* NAVBAR COLLAPSE LOGO FIX */
/* ============================= */

/* Saat navbar collapse, atur ulang logo */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--primary-blue);
        padding: 15px;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    /* Pastikan logo tetap terlihat baik saat navbar collapse */
    .brand-container {
        margin-right: auto;
    }
}

/* ============================= */
/* OPTION: LOGO ONLY ON MOBILE */
/* ============================= */

/* Hanya tampilkan logo tanpa teks di mobile sangat kecil */
@media (max-width: 399.98px) {
    .brand-text {
        display: none;
    }
    
    .brand-container {
        justify-content: center;
        width: 40px;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
    }
}

/* ============================= */
/* NAVBAR CONTAINER FIX */
/* ============================= */

/* Pastikan container navbar tidak mempengaruhi logo */
.navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    height: 70px;
}

/* ============================= */
/* SPECIAL FIX FOR BOOTSTRAP NAVBAR */
/* ============================= */

/* Bootstrap navbar specific fixes */
.navbar-dark .navbar-brand {
    margin-right: 1rem;
}

/* Override Bootstrap defaults jika perlu */
.navbar-brand {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
}

/* ============================= */
/* FINAL SOLUTION: FORCE LOGO SIZE */
/* ============================= */

/* Solusi akhir - force logo size */
.brand-logo img[src*="logo.png"] {
    max-width: 50px !important;
    max-height: 50px !important;
    width: auto !important;
    height: auto !important;
}

@media (max-width: 991.98px) {
    .brand-logo img[src*="logo.png"] {
        max-width: 45px !important;
        max-height: 45px !important;
    }
}

@media (max-width: 767.98px) {
    .brand-logo img[src*="logo.png"] {
        max-width: 40px !important;
        max-height: 40px !important;
    }
}

@media (max-width: 575.98px) {
    .brand-logo img[src*="logo.png"] {
        max-width: 36px !important;
        max-height: 36px !important;
    }
}