/* Base Reset & Variables */
:root {
    --primary-red: #E60012;
    --dark-text: #1a1a1a;
    --light-text: #ffffff;
    --gray-bg: #7a7a7a;
    --light-gray-bg: #f9f9f9;
    --silver-bg: #c0c0c0;
    --footer-bg: #1a1a1a;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--dark-text);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Navigation */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.logo-red-block {
    background-color: var(--primary-red);
    color: var(--light-text);
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 12px;
    opacity: 0.9;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    height: 100%;
    align-items: center;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-text);
    padding: 30px 0;
    display: inline-block;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-red);
}

.nav-menu i {
    font-size: 10px;
    margin-left: 5px;
}

.utility-area {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 30px;
}

.lang-switch {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.search-bar {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 5px 15px;
    background: #f9f9f9;
}

.search-bar input {
    border: none;
    outline: none;
    background: transparent;
    width: 120px;
    font-family: inherit;
}

.search-bar button {
    background: transparent;
    border: none;
    color: var(--primary-red);
    cursor: pointer;
}

/* Premium Login Button Styling */
#nav-login-btn {
    background-color: #fff;
    color: #757575;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#nav-login-btn:hover {
    background-color: #f8f8f8;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-color: #ccc;
}

#nav-login-btn::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url('libs/google.svg') no-repeat center;
    background-size: contain;
}

/* Floating Actions */
.floating-inquire {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-red);
    color: white;
    padding: 15px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 999;
    cursor: pointer;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0084ff;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 999;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.floating-chat:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background-color: #000;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data/upload/20220415/6259268df37501920_706.webp');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 20px;
    font-weight: 400;
}

.dot-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background-color: var(--primary-red);
}

/* Typography styles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 15px auto 0;
}

.text-white {
    color: white;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: var(--light-gray-bg);
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
}

.product-cards {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5px;
}

.product-cards::-webkit-scrollbar {
    display: none;
}

.product-card {
    min-width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    overflow: hidden;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #f0f0f0;
}

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

.product-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.features-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: var(--primary-red);
    font-size: 20px;
}

.carousel-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 18px;
    color: var(--dark-text);
    z-index: 10;
    position: absolute;
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

/* Marketing Network Section */
.marketing-network {
    background-color: var(--gray-bg);
    padding: 80px 0;
    color: white;
}

.network-map {
    position: relative;
    height: 500px;
    background-image: url('themes/simplebootx/picbanners/img/map1380_635.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    background: rgba(0,0,0,0.3);
    padding: 40px;
    border-radius: 10px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab.active, .tab:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

/* Brands Strip */
.brands-section {
    background-color: var(--silver-bg);
    padding: 40px 0;
}

.brands-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 3px;
}

/* Footer Section */
.main-footer {
    background-color: var(--footer-bg);
    color: #ccc;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

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

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

.contact-col p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-col i {
    color: var(--primary-red);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Responsive constraints */
@media (max-width: 900px) {
    .nav-menu { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card { min-width: calc(50% - 15px); }
    .brands-flex { flex-direction: column; gap: 20px; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .product-card { min-width: 100%; }
}
