* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========== TOP BANNER ========== */
.top-banner {
    background: #1a1a1a;
    color: white;
    padding: 10px 0;
    font-size: 13px;
    position: relative;
}

.top-banner .container {
    position: relative;
}

/* Mobile Menu Toggle in Top Banner */
.mobile-menu-toggle {
    display: none;
    background: #e74c3c;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.banner-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.banner-item {
    white-space: nowrap;
}

/* ========== MAIN NAVIGATION ========== */
.main-nav {
    background: white;
    border-bottom: 2px solid #e0e0e0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav .container {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.nav-item {
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.nav-item:hover {
    color: #e74c3c;
    background: #fafafa;
}

.nav-item.active,
.nav-item .nav-link.active {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown .nav-link {
    display: block;
    padding: 0;
    color: inherit;
    text-decoration: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-radius: 0 0 5px 5px;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: #f8f8f8;
    color: #e74c3c;
}

/* ========== HERO BANNER SLIDER ========== */
.hero-banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.5s;
}

.slide.active {
    display: block;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .slider-wrapper {
        height: 250px;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 18px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
}

/* ========== PRODUCT SECTION ========== */
.product-section {
    padding: 50px 0;
    background: white;
}

.product-section:nth-child(even) {
    background: #fafafa;
}

.section-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    color: #333;
    font-weight: 700;
}

/* ========== PRODUCT GRID ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 460px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.product-image {
    text-align: center;
    margin-bottom: 15px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.product-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    height: 80px;
    line-height: 1.4;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-price {
    margin: 15px 0;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-label {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 5px;
}

.price {
    display: block;
    font-size: 22px;
    color: #e74c3c;
    font-weight: bold;
}

.old-price {
    display: block;
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-top: 5px;
}

.btn-buy {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    margin-top: auto;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    transform: translateY(-2px);
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 40px 0;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 20px 10px;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* ========== FOOTER ========== */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    margin: 8px 0;
    font-size: 14px;
}

.footer-col a {
    color: #3498db;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    /* Top Banner Mobile */
    .banner-items {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        padding-right: 60px; /* Space for hamburger menu */
    }
    
    .banner-item {
        font-size: 12px;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Navigation Mobile */
    .main-nav .container {
        flex-direction: column;
        position: relative;
    }
    
    .nav-item {
        display: none;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
        border-radius: 0;
        padding: 15px;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-item.show {
        display: block;
    }
    
    .main-nav.mobile-open .nav-item {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Hero Banner Mobile */
    .slider-wrapper {
        height: 250px;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 18px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    /* Section Headers Mobile */
    .section-header {
        justify-content: center;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    /* Product Grid Mobile */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        padding: 12px;
        min-height: 420px;
        max-height: 420px;
    }
    
    .product-image {
        height: 120px;
        margin-bottom: 12px;
    }
    
    .product-title {
        font-size: 13px;
        height: 65px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .product-price {
        margin: 12px 0;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .price {
        font-size: 16px;
    }
    
    .price-label {
        font-size: 10px;
    }
    
    .btn-buy {
        padding: 10px 8px;
        font-size: 12px;
        margin-top: auto;
    }
    
    /* Contact Section Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px 10px;
    }
    
    .feature-icon {
        font-size: 32px;
    }
    
    .feature-item p {
        font-size: 12px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    /* Floating Buttons Mobile */
    .floating-contact {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
    }
    
    .float-btn .icon {
        font-size: 20px;
    }
    
    .float-btn .text {
        font-size: 8px;
    }
}

/* ========== SMALL MOBILE (480px and below) ========== */
@media (max-width: 480px) {
    /* Container Mobile */
    .container {
        padding: 0 10px;
    }
    
    /* Navigation Small Mobile */
    .nav-item {
        padding: 15px;
        font-size: 14px;
    }
    
    /* Hero Banner Small Mobile */
    .slider-wrapper {
        height: 200px;
    }
    
    /* Product Grid Small Mobile */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card {
        padding: 10px;
        min-height: 400px;
        max-height: 400px;
    }
    
    .product-image {
        height: 100px;
        margin-bottom: 10px;
    }
    
    .product-title {
        font-size: 12px;
        height: 60px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .product-price {
        margin: 10px 0;
        flex-grow: 1;
    }
    
    .price {
        font-size: 14px;
    }
    
    .price-label {
        font-size: 9px;
    }
    
    .btn-buy {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    /* Section Spacing Small Mobile */
    .product-section {
        padding: 30px 0;
    }
    
    .section-header h2 {
        font-size: 22px;
        text-align: center;
    }
    
    /* Features Small Mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Small Mobile */
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-icon {
        font-size: 32px;
    }
}

/* ========== EXTRA SMALL MOBILE (360px and below) ========== */
@media (max-width: 360px) {
    /* Typography Extra Small */
    .section-header h2 {
        font-size: 20px;
    }
    
    /* Spacing Extra Small */
    .product-section {
        padding: 25px 0;
    }
    
    /* Product Grid Extra Small */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-card {
        padding: 8px;
        min-height: 380px;
        max-height: 380px;
    }
    
    .product-image {
        height: 90px;
        margin-bottom: 8px;
    }
    
    .product-title {
        font-size: 11px;
        height: 55px;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    
    .product-price {
        margin: 8px 0;
        flex-grow: 1;
    }
    
    .price {
        font-size: 13px;
    }
    
    .price-label {
        font-size: 8px;
    }
    
    .btn-buy {
        padding: 7px 5px;
        font-size: 10px;
    }
    
    /* Floating Buttons Extra Small */
    .floating-contact {
        bottom: 15px;
        right: 10px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
    }
}


/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 40px 0;
    background: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    background: white;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.contact-card a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: white;
    transition: all 0.3s;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.zalo {
    background: #0068ff;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


/* ========== COMPANY SECTION ========== */
.company-content {
    max-width: 1000px;
    margin: 0 auto;
}

.company-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.company-intro h3 {
    font-size: 24px;
    color: #e74c3c;
    margin-bottom: 20px;
    font-weight: 700;
}

.company-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.company-services {
    margin-bottom: 40px;
}

.company-services h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.service-item {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.service-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.company-commitment {
    margin-bottom: 40px;
}

.company-commitment h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.commitment-list {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: #555;
}

.commitment-item:last-child {
    border-bottom: none;
}

.commitment-icon {
    font-size: 20px;
    color: #27ae60;
    flex-shrink: 0;
}

.company-contact-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.company-contact-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.contact-details {
    display: grid;
    gap: 15px;
}

.contact-detail {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    font-size: 15px;
    color: #555;
}

.contact-detail strong {
    color: #333;
    margin-right: 10px;
}

/* Responsive for Company Section */
@media (max-width: 768px) {
    .company-intro {
        padding: 20px;
    }
    
    .company-intro h3 {
        font-size: 20px;
    }
    
    .company-intro p {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 25px 15px;
    }
    
    .service-icon {
        font-size: 40px;
    }
    
    .service-item h4 {
        font-size: 16px;
    }
    
    .commitment-list {
        padding: 20px;
    }
    
    .commitment-item {
        font-size: 14px;
        padding: 12px 0;
    }
    
    .company-contact-info {
        padding: 20px;
    }
    
    .contact-detail {
        padding: 12px;
        font-size: 14px;
    }
}

/* ========== FLOATING CONTACT BUTTONS ========== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.float-btn .icon {
    font-size: 24px;
    line-height: 1;
}

.float-btn .text {
    font-size: 9px;
    font-weight: 600;
    margin-top: 2px;
    line-height: 1;
}

.btn-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-top {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.facebook-btn {
    background: white;
    padding: 8px;
}

.zalo-btn {
    background: white;
    padding: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
    }
    
    .float-btn .icon {
        font-size: 22px;
    }
    
    .float-btn .text {
        font-size: 8px;
    }
}
/* ========== COMPANY PAGE STYLES ========== */
.company-hero {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.company-info-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.info-block {
    background: white;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-block h2 {
    background: #e74c3c;
    color: white;
    padding: 25px 30px;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.info-content {
    padding: 30px;
}

.info-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.info-content p:last-child {
    margin-bottom: 0;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e74c3c;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e74c3c;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #e74c3c;
}

.timeline-year {
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission, .vision {
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    background: #f8f9fa;
}

.mission h4, .vision h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission p, .vision p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Team Stats */
.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.contact-info-item .contact-icon {
    font-size: 24px;
    color: #e74c3c;
    margin-top: 5px;
}

.contact-details h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Responsive Design for Company Page */
@media (max-width: 768px) {
    /* Company Hero Mobile */
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .company-hero {
        padding: 50px 0;
    }
    
    /* Company Info Mobile */
    .info-content {
        padding: 20px;
    }
    
    .info-block h2 {
        padding: 20px;
        font-size: 20px;
    }
    
    /* Mission Vision Mobile */
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Values Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Team Stats Mobile */
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Contact Info Mobile */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* Timeline Mobile */
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 25px;
    }
    
    .timeline-year {
        font-size: 16px;
    }
    
    .timeline-content h4 {
        font-size: 15px;
    }
}

/* Small Mobile Company Page */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .company-hero {
        padding: 40px 0;
    }
    
    .info-content {
        padding: 15px;
    }
    
    .info-block h2 {
        padding: 15px;
        font-size: 18px;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .value-item {
        padding: 20px 15px;
    }
    
    .value-icon {
        font-size: 40px;
    }
}
/* ========== SIMPLE LIST STYLES ========== */
.services-list, .mission-list, .location-contact, .business-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item-simple, .mission-item, .contact-item-simple, .business-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-item-simple:last-child, 
.mission-item:last-child, 
.contact-item-simple:last-child,
.business-item:last-child {
    border-bottom: none;
}

.service-bullet, .mission-bullet, .contact-bullet, .business-bullet {
    color: #e74c3c;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-item-simple span:last-child,
.mission-item span:last-child,
.contact-item-simple span:last-child,
.business-item span:last-child {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 15px;
}