/**
 * Prowebify - Commercial Mobile Generators
 * Light | Small | Compact | Quiet
 * Sleeper Generator Style Theme
 */

/* ==================== CSS Variables ==================== */
:root {
    /* Primary Colors - Sleeper Generator Style */
    --primary: #c9a227;
    --primary-dark: #a88620;
    --primary-light: #e0b830;
    --primary-glow: rgba(201, 162, 39, 0.3);
    
    /* Brand Colors */
    --brand-marine: #1e5799;
    --brand-vehicle: #c9a227;
    --brand-military: #4a5d23;
    --brand-parts: #666666;
    
    /* Background Colors */
    --bg-dark: #1a1a1a;
    --bg-darker: #0f0f0f;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-card: #222222;
    --bg-card-hover: #2a2a2a;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-dark: #333333;
    --text-secondary: #999999;
    --text-muted: #666666;
    --text-light: #cccccc;
    
    /* Border */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-light: #e0e0e0;
    
    /* Status Colors */
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

ul, ol {
    list-style: none;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

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

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

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

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

.font-16 { font-size: 16px; }
.font-18 { font-size: 18px; }
.font-24 { font-size: 24px; }
.font-bold { font-weight: 700; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== Container ==================== */
.container, .ui.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== Utility Classes ==================== */
.txt-center, .text-center { text-align: center; }
.txt-right { text-align: right; }
.fl { float: left; }
.fr { float: right; }
.cl, .clear { clear: both; }
.block { display: block; }
.pr { position: relative; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mr-30 { margin-right: 30px; }
.ml-10 { margin-left: 10px; }
.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pt-60 { padding-top: 60px; }
.pb-40 { padding-bottom: 40px; }
.pb-60 { padding-bottom: 60px; }
.pl-15 { padding-left: 15px; }
.pr-15 { padding-right: 15px; }
.pl-60 { padding-left: 60px; }
.pr-60 { padding-right: 60px; }

/* ==================== Grid System ==================== */
.grid-box {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.grid-box .column {
    padding: 0 15px;
    margin-bottom: 30px;
}

.grid-box.two .column { width: 50%; }
.grid-box.three .column { width: 33.333%; }
.grid-box.four .column { width: 25%; }
.grid-box.five .column { width: 20%; }

/* ==================== Buttons ==================== */
.btn, .btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    text-decoration: none;
}

.btn1 {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn1:hover {
    background: var(--primary-light);
    color: var(--bg-dark);
    transform: translateX(5px);
}

.btn1 i {
    margin-left: 10px;
}

.btn1 i img {
    width: 20px;
    height: 20px;
    filter: brightness(0);
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--primary-light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    color: white;
}

.btn-whatsapp i,
.btn-whatsapp svg {
    flex-shrink: 0;
}

.btn-whatsapp svg.whatsapp-icon {
    width: 22px;
    height: 22px;
}

.btn-lg .whatsapp-icon {
    width: 24px;
    height: 24px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* Header Contact Button */
.header-actions .btn-primary {
    padding: 12px 20px;
    gap: 10px;
    font-size: 15px;
}

.header-actions .btn-primary svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .header-actions .btn-primary {
        padding: 10px 14px;
        font-size: 13px;
        gap: 6px;
    }
    
    .header-actions .btn-primary svg {
        width: 14px;
        height: 14px;
    }
}

/* ==================== Header ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    padding: 10px 16px;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown > .nav-link i {
    font-size: 12px;
    transition: var(--transition-normal);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover > .nav-link i {
    transform: rotate(180deg);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition-fast);
    position: relative;
}

.dropdown-item:hover {
    background: var(--bg-card-hover);
    color: var(--primary);
}

.dropdown-item.has-submenu {
    padding: 0;
}

.dropdown-item.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.dropdown-item.has-submenu > a i {
    font-size: 10px;
}

.dropdown-item.has-submenu:hover > a {
    background: var(--bg-card-hover);
    color: var(--primary);
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 280px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-normal);
    z-index: 1001;
    box-shadow: var(--shadow-lg);
}

.dropdown-item.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition-fast);
}

.submenu a:hover {
    background: var(--bg-card-hover);
    color: var(--primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.header-phone:hover {
    color: var(--primary);
}

@media (min-width: 1024px) {
    .header-phone {
        display: flex;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    z-index: 999;
    transform: translateX(-100%);
    transition: var(--transition-normal);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav .nav-link {
    display: block;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 16px;
}

/* Mobile Accordion */
.mobile-accordion {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
}

.accordion-header i {
    transition: var(--transition-normal);
}

.mobile-accordion.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-darker);
}

.mobile-accordion.active .accordion-content {
    max-height: 500px;
}

.accordion-content a {
    display: block;
    padding: 12px 32px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.accordion-content a:last-child {
    border-bottom: none;
}

.accordion-content a:hover {
    color: var(--primary);
    background: var(--bg-card);
}

/* Mobile Menu WhatsApp Button */
.mobile-nav .btn-whatsapp {
    margin: 20px;
    gap: 12px;
}

.mobile-nav .btn-whatsapp svg,
.mobile-nav .btn-whatsapp i {
    margin-right: 0;
}

/* ==================== Banner / Hero ==================== */
#banner, .hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

#banner ul, .hero-slider ul {
    list-style: none;
}

#banner li, .hero-slider .slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
}

#banner li img, .hero-slider .slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content, .slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 20px;
}

.banner-content .container,
.slide-content .container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.banner-content h2, .slide-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.banner-content p, .slide-subtitle {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* Banner Navigation */
.arrows, .banner-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

.arrow_l, .arrow_r, .banner-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
}

.arrow_l:hover, .arrow_r:hover, .banner-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.dots {
    display: flex;
    gap: 10px;
}

.dots li, .dot {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dots li.slick-active, .dot.active {
    color: var(--primary);
    font-weight: 700;
}

.down {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==================== Product Categories ==================== */
.product-cate {
    padding: 80px 0;
    background: var(--bg-white);
}

.product-cate .grid-box {
    margin: 0 -10px;
}

.product-cate .column {
    padding: 0 10px;
}

.product-cate .img {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.product-cate .img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-cate .img:hover img {
    transform: scale(1.05);
}

.product-cate .mml-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.product-cate .mml-text i img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

.product-cate .mml-text h4 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
}

/* ==================== About Section ==================== */
.our-about {
    padding: 100px 0;
    background: var(--bg-light);
}

.our-about .box {
    align-items: center;
}

.our-about .left {
    flex: 1;
}

.our-about .left h2 {
    font-size: 72px;
    color: var(--primary);
    margin-bottom: 10px;
}

.our-about .left h3 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.our-about .mml-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.our-about .mml-text div {
    margin-bottom: 15px;
}

.our-about .right {
    flex: 1;
}

.our-about .right img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Stats Section */
.our-about .bottom {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-light);
}

.our-about .bottom ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.our-about .bottom li {
    text-align: center;
}

.our-about .bottom h4 {
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 10px;
}

.our-about .bottom p {
    color: var(--text-muted);
    font-size: 16px;
}

/* ==================== 10 Good Reasons ==================== */
.i-advantage {
    padding: 100px 0;
    background: var(--bg-dark);
}

.i-advantage .title {
    margin-bottom: 60px;
}

.i-advantage .tit2 {
    font-size: 42px;
    color: var(--text-primary);
    line-height: 1.3;
}

.i-advantage .tit2 span {
    color: var(--primary);
}

.i-advantage .list .grid-box {
    margin: 0 -10px;
}

.i-advantage .list .column {
    padding: 0 10px;
    margin-bottom: 20px;
}

.i-advantage .mml-text {
    position: relative;
    padding: 30px;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.i-advantage .mml-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

.i-advantage .mml-text h4 {
    position: relative;
    z-index: 2;
    font-size: 22px;
    color: var(--text-primary);
    font-weight: 600;
}

.i-advantage .mml-text p {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.i-advantage .mml-text i {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    color: rgba(255,255,255,0.1);
    z-index: 2;
}

/* ==================== Products Section ==================== */
.our-product {
    padding: 100px 0;
    background: var(--bg-white);
}

.our-product .title {
    margin-bottom: 40px;
}

.our-product .tit2 {
    font-size: 42px;
    color: var(--text-dark);
    line-height: 1.3;
}

.our-product .list .grid-box {
    margin: 0 -15px;
}

.our-product .list .column {
    padding: 0 15px;
    margin-bottom: 30px;
}

.our-product .mml-text {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    overflow: hidden;
}

.our-product .mml-text:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.our-product .mml-text .img {
    padding: 20px;
    background: var(--bg-white);
}

.our-product .mml-text .img img {
    height: 200px;
    object-fit: contain;
    margin: 0 auto;
}

.our-product .mml-text h4 {
    color: var(--text-dark);
    font-weight: 600;
}

.our-product .mml-text span {
    color: var(--primary);
    font-weight: 500;
}

/* ==================== News Section ==================== */
.our-news {
    padding: 80px 0;
    background: var(--bg-light);
}

.our-news .title {
    margin-bottom: 40px;
}

.our-news .tit2 {
    font-size: 42px;
    color: var(--text-dark);
    line-height: 1.3;
}

.our-news .list .column {
    margin-bottom: 30px;
}

.our-news .list a {
    display: block;
    color: var(--text-dark);
}

.our-news .img {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.our-news .img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.our-news .list a:hover .img img {
    transform: scale(1.05);
}

.our-news time {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.our-news time i img {
    width: 16px;
    height: 16px;
}

.our-news h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.our-news p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== Footer ==================== */
#footer, .footer {
    background: var(--bg-dark);
    color: var(--text-light);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-block h2 {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-block h2 span {
    color: var(--primary);
}

.footer-block h4 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-block.form form {
    margin-top: 20px;
}

.footer-block.form input,
.footer-block.form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.footer-block.form input:focus,
.footer-block.form textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.footer-block.form textarea {
    height: 100px;
    resize: vertical;
}

.footer-block.form button {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.footer-block.form button:hover {
    background: var(--primary-light);
}

.footer-block ul.ty {
    list-style: none;
}

.footer-block ul.ty li {
    margin-bottom: 12px;
}

.footer-block ul.ty a {
    color: var(--text-light);
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-block ul.ty a:hover {
    color: var(--primary);
}

.footer-block.partner ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    list-style: none;
}

.footer-block.partner .img {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: 10px;
}

.footer-block.partner .img img {
    width: 100%;
    height: 40px;
    object-fit: contain;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Back to Top */
#top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

#top.visible {
    opacity: 1;
    visibility: visible;
}

#top:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

/* WhatsApp Float Button */
.mlztx, .whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
}

.mlztx a, .whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.mlztx a:hover, .whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ==================== Page Header ==================== */
.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* ==================== Section Styles ==================== */
.section {
    padding: var(--section-padding);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.section-light {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 162, 39, 0.15);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* ==================== Cards ==================== */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-dark {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

/* ==================== Reasons Grid ==================== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.reason-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.reason-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg-dark);
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.reason-card h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.reason-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== Product Grid ==================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-card .img {
    background: var(--bg-white);
    padding: 20px;
    text-align: center;
}

.product-card .img img {
    height: 180px;
    object-fit: contain;
    margin: 0 auto;
}

.product-card .content {
    padding: 20px;
    text-align: center;
}

.product-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-card .link {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
}

/* ==================== Forms ==================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 16px;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ==================== Responsive ==================== */
@media (max-width: 1200px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .grid-box.two .column,
    .grid-box.three .column,
    .grid-box.four .column,
    .grid-box.five .column {
        width: 50%;
    }
    
    .our-about .box {
        flex-direction: column;
    }
    
    .our-about .left,
    .our-about .right {
        padding: 0;
        margin-bottom: 40px;
    }
    
    .pl-60, .pr-60 {
        padding-left: 0;
        padding-right: 0;
    }
    
    .our-about .bottom ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    .banner-content h2, .slide-title {
        font-size: 48px;
    }
    
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    
    .i-advantage .tit2,
    .our-product .tit2,
    .our-news .tit2,
    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .grid-box.two .column,
    .grid-box.three .column,
    .grid-box.four .column,
    .grid-box.five .column {
        width: 100%;
    }
    
    .reasons-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .i-advantage .title .fl,
    .i-advantage .title .fr,
    .our-product .title .fl,
    .our-product .title .fr,
    .our-news .title .fl,
    .our-news .title .fr {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .banner-content h2, .slide-title {
        font-size: 36px;
    }
    
    .banner-content p, .slide-subtitle {
        font-size: 18px;
    }
    
    .our-about .left h2 {
        font-size: 48px;
    }
    
    .our-about .left h3 {
        font-size: 28px;
    }
    
    .our-about .bottom h4 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .reasons-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .header-inner {
        height: 70px;
    }
    
    .mobile-menu {
        top: 70px;
    }
    
    .banner-content h2, .slide-title {
        font-size: 28px;
    }
    
    .page-header {
        padding: 120px 0 40px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .btn1 {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ==================== Animations ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

/* WOW.js compatibility - disabled, using CSS animations instead */
.wow {
    visibility: visible;
    animation: fadeInUp 0.6s ease forwards;
}

.wow.fadeInLeftSmall {
    animation: fadeInLeft 0.6s ease forwards;
}

.wow.fadeInRightSmall {
    animation: fadeInRight 0.6s ease forwards;
}

.wow.fadeInUpSmall {
    animation: fadeInUp 0.6s ease forwards;
}

.fadeInUp { animation-name: fadeInUp; }
.fadeInLeft { animation-name: fadeInLeft; }
.fadeInRight { animation-name: fadeInRight; }
.fadeInUpSmall { animation-name: fadeInUp; }
.fadeInLeftSmall { animation-name: fadeInLeft; }
.fadeInRightSmall { animation-name: fadeInRight; }

/* ==================== Social Links ==================== */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* ==================== FAQ Styles ==================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question span {
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Legacy support */
main {
    padding-top: 80px;
}

/* ==================== Fixed Floating Buttons ==================== */
.mlztx, .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
}

.mlztx a, .whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
}

.mlztx a:hover, .whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.mlztx .fa-whatsapp {
    font-size: 32px;
}

/* Back to Top - now hidden, using WhatsApp float only */
#top {
    display: none;
}

/* ==================== Contact Page Styles ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
}

.contact-item-icon svg,
.contact-item-icon i {
    width: 22px;
    height: 22px;
}

.contact-item h4 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-item a,
.contact-item p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form {
    padding: 40px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .contact-info,
    .contact-form {
        padding: 24px;
    }
}

/* ==================== Modern Product Cards & Slider ==================== */
.our-product {
    padding: 80px 0;
    background: var(--bg-white);
}

.our-product .title {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}

.our-product .title .fl {
    flex: 1;
}

.our-product .tit2 {
    font-size: 42px;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

.product-slider {
    margin: 0 -15px;
}

.product-slider .slide-item {
    padding: 0 15px;
}

.our-product .mml-text {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    overflow: hidden;
    margin: 5px;
}

.our-product .mml-text:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.our-product .mml-text .img {
    padding: 30px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-product .mml-text .img img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.our-product .mml-text:hover .img img {
    transform: scale(1.05);
}

.our-product .mml-text h4 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    padding: 20px 20px 15px;
}

.our-product .mml-text span {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
    padding: 0 20px 20px;
}

.our-product .mml-text:hover span {
    gap: 10px;
}

.our-product .mml-text a {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* Slick Slider Overrides */
.slick-slide {
    outline: none;
}

.slick-track {
    display: flex;
}

.slick-slide > div {
    height: 100%;
}

/* ==================== Page Sections Padding Fix ==================== */
.section {
    padding: 80px 0;
}

.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header .container {
    padding: 0 20px;
}

.page-header h1 {
    font-size: 42px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== About Section Fix ==================== */
.our-about {
    padding: 100px 0;
    background: var(--bg-light);
}

.our-about .box.grid-box {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    align-items: center;
}

.our-about .box .column {
    width: 50%;
    padding: 0;
}

.our-about .box .column.pr-60 {
    padding-right: 60px;
}

.our-about .box .column.pl-60 {
    padding-left: 60px;
}

.our-about .left h2 {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.our-about .left h3 {
    font-size: 42px !important;
    font-weight: 500 !important;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.our-about .mml-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.our-about .mml-text div {
    margin-bottom: 20px;
}

.our-about .right .img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.our-about .bottom {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-light);
}

.our-about .bottom ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}

.our-about .bottom li {
    text-align: center;
    flex: 1;
}

.our-about .bottom h4 {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.our-about .bottom p {
    color: var(--text-muted);
    font-size: 15px;
}

@media (max-width: 992px) {
    .our-about .box .column {
        width: 100%;
    }
    
    .our-about .box .column.pr-60,
    .our-about .box .column.pl-60 {
        padding: 0;
    }
    
    .our-about .left {
        margin-bottom: 40px;
    }
    
    .our-about .left h2 {
        font-size: 48px;
    }
    
    .our-about .left h3 {
        font-size: 32px !important;
    }
    
    .our-about .bottom ul {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .our-about .bottom li {
        flex: 0 0 45%;
    }
    
    .our-about .bottom h4 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .our-about {
        padding: 60px 0;
    }
    
    .our-about .left h2 {
        font-size: 36px;
    }
    
    .our-about .left h3 {
        font-size: 24px !important;
    }
    
    .our-about .bottom {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .our-about .bottom ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .our-about .bottom li {
        flex: none;
        background: var(--bg-white);
        padding: 16px 12px;
        border-radius: var(--radius-md);
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    
    .our-about .bottom h4 {
        font-size: 28px;
        margin-bottom: 4px;
    }
    
    .our-about .bottom p {
        font-size: 12px;
        line-height: 1.3;
    }
}

/* ==================== Footer Padding Fix ==================== */
.footer-top {
    padding: 80px 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-block {
    padding: 0;
}

.footer-block.form .grid-box {
    margin: 0 -8px;
}

.footer-block.form .grid-box .column {
    padding: 0 8px;
    margin-bottom: 16px;
}

.footer-block.form .grid-box .column.wid-100 {
    width: 100%;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
}

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

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        padding: 60px 0 40px;
    }
}

/* ==================== 10 Reasons Section ==================== */
.i-advantage {
    padding: 100px 0;
    background: var(--bg-dark);
}

.i-advantage .title {
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}

.i-advantage .title .fl {
    flex: 1;
}

.i-advantage .tit2 {
    font-size: 42px;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
}

.i-advantage .tit2 span {
    color: var(--primary);
}

.i-advantage .list .grid-box {
    margin: 0 -10px;
}

.i-advantage .list .column {
    padding: 0 10px;
    margin-bottom: 20px;
}

.i-advantage .mml-text {
    position: relative;
    padding: 30px;
    min-height: 260px;
    background: var(--bg-card);
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.i-advantage .mml-text:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.i-advantage .mml-text h4 {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.i-advantage .mml-text p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.i-advantage .mml-text i {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
}

/* ==================== News Section ==================== */
.our-news {
    padding: 80px 0;
    background: var(--bg-light);
}

.our-news .title {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}

.our-news .title .fl {
    flex: 1;
}

.our-news .tit2 {
    font-size: 42px;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

.news-slider {
    margin: 0 -15px;
}

.news-slider .slide-item {
    padding: 0 15px;
}

.our-news .slide-item a {
    display: block;
    color: var(--text-dark);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    height: 100%;
}

.our-news .slide-item a:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.our-news .img {
    overflow: hidden;
    height: 200px;
}

.our-news .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.our-news .slide-item a:hover .img img {
    transform: scale(1.05);
}

.our-news time {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
    padding: 20px 20px 0;
}

.our-news time i {
    display: flex;
    align-items: center;
}

.our-news h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 10px 0;
    padding: 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.our-news p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    padding: 0 20px 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== Select Styling ==================== */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

/* ==================== Blog Grid ==================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i,
.blog-card-meta svg {
    width: 16px;
    height: 16px;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.blog-card-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
}

/* ==================== Mobile Header Fix ==================== */
@media (max-width: 768px) {
    #banner, .hero-slider {
        margin-top: 0;
    }
    
    main {
        padding-top: 70px;
    }
    
    .header-inner {
        height: 70px;
    }
}
