:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --light-text: #7f8c8d;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}
a {
    text-decoration: none;
}

/* Header Styles */
.navbar-d307df {
    background: rgba(44, 62, 80, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-d307df.scrolled {
    background: var(--primary-color) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand-6c9a59 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white !important;
}
.navbar-toggler-17cc52{
    background: #f1f1f1;
}

.nav-link-334a2c {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link-334a2c:hover {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section-585c96 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section-585c96::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../imgs/professional-cigarette-wholesale-warehouse-inventory.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content-d1dfce {
    position: relative;
    z-index: 2;
}

.hero-title-f5084d {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle-39ba98 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats-114e24 {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.stat-item-c029e9 {
    text-align: center;
}

.stat-number-2d433a {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label-7ef1af {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section Styles */
.section-43d4cc {
    padding: 80px 0;
}

.section-title-bf345e {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle-25ece6 {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards */
.service-card-afd57e {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card-afd57e:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon-942a82 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card-afd57e h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card-afd57e p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Advantages Section */
.advantages-section-0ef39a {
    background: var(--light-bg);
}

.advantage-item-5198d1 {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.advantage-item-5198d1:hover {
    transform: translateX(10px);
}

.advantage-icon-ac2013 {
    width: 60px;
    height: 60px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.advantage-content-5356cb h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.advantage-content-5356cb p {
    color: var(--light-text);
    margin: 0;
}

/* About Section */
.about-section-280f7b {
    padding: 80px 0;
}

.about-image-2791dd {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content-ae8ed1 h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-content-ae8ed1 p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-list-da6b65 {
    list-style: none;
    padding: 0;
    gap: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.feature-list-da6b65 li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.feature-list-da6b65 li i {
    color: var(--success-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Product Showcase */
.product-card-4a42c9 {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.product-card-4a42c9:hover {
    transform: translateY(-5px);
}

.product-image-aba8ca {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content-1fa135 {
    padding: 1.5rem;
}

.product-content-1fa135 h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-content-1fa135 p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.product-tags-26a50f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-9f40b6 {
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* News Section */
.news-section-a8855f {
    background: var(--light-bg);
}

.news-card-e07622 {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.news-card-e07622:hover {
    transform: translateY(-5px);
}

.news-date-6cc4e7 {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    display: inline-block;
}

.news-content-755072 {
    padding: 1.5rem;
}

.news-content-755072 h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--primary-color);
}

.news-content-755072 p {
    color: var(--light-text);
}

/* FAQ Section */
.faq-section-2b435f {
    padding: 80px 0;
}

.accordion-button-4550c4 {
    background: var(--light-bg);
    border: none;
    font-weight: 600;
    color: var(--primary-color);
}

.accordion-button-4550c4:not(.collapsed) {
    background: var(--secondary-color);
    color: white;
    box-shadow: none;
}

.accordion-button-4550c4:focus {
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

/* Testimonials */
.testimonial-section-a37e28 {
    background: var(--light-bg);
}

.testimonial-card-3da692 {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.testimonial-avatar-f98c4d {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.testimonial-content-ea526f {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.testimonial-author-893b2c {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-company-049ae8 {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section-5542a5 {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.contact-section-5542a5 .section-title-bf345e {
    color: white;
}

.contact-info-bf172d {
    margin-bottom: 2rem;
}

.contact-item-7d6150 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item-7d6150 i {
    margin-right: 1rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.contact-form-1c3721 {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-control-6ca6fd {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
}

.form-control-6ca6fd::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-control-6ca6fd:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    color: white;
}

/* Flink */
.flink-section-4a990c {
    background: white;
    color: #2d3748;
    padding: 30px 0;
}
.flink-header-6d66df{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.flink-section-4a990c li{
    list-style: none;
    display: inline;
    padding-right: 20px;
}
.flink-section-4a990c a{
    color: #718096;
    text-decoration: none;
}

/* Footer */
.footer-8e7617 {
    background: #1a252f;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-8e7617 h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-link-c0923f {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-c0923f:hover {
    color: var(--secondary-color);
}

.social-links-370d6e {
    display: flex;
    gap: 1rem;
}

.social-links-370d6e a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.social-links-370d6e a:hover {
    transform: translateY(-3px);
    background: var(--accent-color);
}

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

.fade-in-up-7a7202 {
    animation: fadeInUp 0.6s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    li.nav-item-cfa776{
        text-align: center;
    }
    .hero-title-f5084d {
        font-size: 2.5rem;
    }
    
    .hero-stats-114e24 {
        gap: 1rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 3rem;
    }
    .hero-content-d1dfce{
        text-align: center;
    }
    
    .section-43d4cc {
        padding: 60px 0;
    }
    
    .advantage-item-5198d1 {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-icon-ac2013 {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Custom Button Styles */
.btn-primary-bc8376 {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-bc8376:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.btn-outline-light-c020ab {
    border: 2px solid white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light-c020ab:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}