﻿/* Font Face Declarations */
@font-face {
    font-family: 'Beautique Display';
    src: url('../fonts/BeautiqueDisplay.woff2') format('woff2'),
         url('../fonts/BeautiqueDisplay.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Beautique Display';
    src: url('../fonts/BeautiqueDisplay-Italic.woff2') format('woff2'),
         url('../fonts/BeautiqueDisplay-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Beautique Display';
    src: url('../fonts/BeautiqueDisplay-Bold.woff2') format('woff2'),
         url('../fonts/BeautiqueDisplay-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Beautique Display';
    src: url('../fonts/BeautiqueDisplay-BoldItalic.woff2') format('woff2'),
         url('../fonts/BeautiqueDisplay-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Beautique Display Condensed';
    src: url('../fonts/BeautiqueDisplayCondensed.woff2') format('woff2'),
         url('../fonts/BeautiqueDisplayCondensed.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* Reset toàn bộ khoảng trống và đặt lại header */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

header {
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
}

/* CSS đặc biệt để loại bỏ khoảng cách */
.navbar-toggler {
    z-index: 1000;
}

/* Nút đóng menu mobile */
.mobile-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    display: none;
}

@media (max-width: 992px) {
    /* Menu mobile custom */
    #navbarNav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #cc0000;
        z-index: 9999;
        padding: 0 !important;
        margin: 0 !important;
        overflow-y: auto;
    }
    
    #navbarNav > div {
        padding: 0 !important;
        margin: 0 !important;
        font-size: 0; /* Loại bỏ khoảng trống */
    }
    
    .language-selector {
        margin: 0 !important;
        padding: 10px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin-top: 50px !important; /* Để có chỗ cho nút đóng */
        font-size: 16px; /* Khôi phục kích thước font */
        line-height: 1.2;
        display: block !important;
        height: auto !important;
    }
    
    .navbar-nav {
        margin: 0 !important;
        padding: 0 !important;
        border-top: none !important;
        font-size: 16px; /* Khôi phục kích thước font */
        line-height: 1.2;
        position: relative !important;
        display: block !important;
        height: auto !important;
    }
    
    .navbar-nav li:first-child {
        margin-top: 0 !important;
        border-top: none !important;
    }
    
    .navbar-nav .nav-item:first-child {
        border-top: none !important;
    }
    
    .navbar-nav .nav-item:first-child a {
        border-top: none !important;
    }
    
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease; /* Thêm transition cho phần tử con */
        position: relative;
    }
    
    .navbar-nav .nav-link {
        padding: 15px 10px !important;
        color: white !important;
        margin: 0 !important;
    }
    
    /* Styling cho mobile submenu wrapper */
    .mobile-submenu-wrapper {
        height: 0;
        background-color: #9e0000;
        overflow: hidden;
        transition: height 0.3s ease !important;
        display: block !important;
        width: 100%;
        position: relative;
    }
    
    .mobile-submenu-wrapper.active {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-submenu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-submenu-list .nav-item {
        border-bottom: none !important;
    }
    
    .mobile-submenu-list .nav-item:last-child {
        border-bottom: none;
    }
    
    .mobile-submenu-list .nav-link {
        padding-left: 30px !important;
        font-size: 14px;
    }
    
    /* Submenu arrow */
    .submenu-toggle .fa-chevron-down {
        transition: transform 0.3s ease;
    }
    
    .submenu-toggle.active .fa-chevron-down {
        transform: rotate(180deg);
    }
    
    /* Footer trong mobile menu */
    .sidebar-footer {
        padding: 15px !important;
        color: white !important;
        text-align: center;
        font-size: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease !important;
    }
}

/* Fix cho khoảng cách giữa language-selector và navbar-nav */
@media (max-width: 992px) {
    .language-selector {
        margin: 0 !important;
        padding: 10px !important;
        padding-bottom: 0 !important;
    }
    
    .navbar-nav {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .nav-item:first-child {
        margin-top: 0 !important;
    }
    
    .nav-item:first-child .nav-link {
        border-top: none !important;
    }
    
    /* Loại bỏ các khoảng trống Bootstrap */
    .navbar-nav, .navbar-nav * {
        box-sizing: border-box !important;
    }
    
    #navbarNav > div {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Dropdown menu styling */
.dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 14rem;
    margin-top: 0;
}

.dropdown-item {
    color: #333;
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(204, 0, 0, 0.1);
    color: #cc0000;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Submenu styling - chỉ áp dụng cho mobile */
@media (max-width: 991px) {
    .submenu {
        list-style: none;
        padding-left: 0;
        margin-top: 0;
        overflow: hidden;
        background-color: #9e0000;
        z-index: 1000;
        display: none; /* Mặc định ẩn */
        max-height: 0;
        transition: max-height 0.4s ease-in-out;
    }
}

.arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.arrow-down.active {
    transform: rotate(180deg);
}

.submenu.active, 
.submenu.open {
    display: block;
    max-height: 1000px;
}

.submenu .nav-item {
    padding-left: 20px;
}

.submenu .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    color: #e3e3e3;
    transition: color 0.3s ease;
}

.submenu .nav-link:hover {
    color: #cc0000;
}

.submenu-toggle {
    position: relative;
}

/* Đã loại bỏ mũi tên xuống */
.submenu-toggle.active {
    color: #cc0000;
}

/* Các thiết lập cụ thể cho mobile */
@media (max-width: 768px) {
    body {
        padding-top: 0 !important;
    }
    
    header {
        position: relative !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }
    
    .navbar {
        padding: 0 !important;
        margin: 0 !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .navbar-brand {
        padding: 5px 0 !important;
        margin: 0 !important;
    }
    
    .custom-toggler {
        top: 15px !important;
        margin: 0 !important;
    }

    .dropdown-menu {
        background-color: transparent;
        box-shadow: none;
        border-left: 2px solid rgba(204, 0, 0, 0.3);
        padding-left: 1rem;
        margin-left: 1rem;
    }

    .dropdown-item {
        color: #e3e3e3;
        padding: 0.3rem 1rem;
    }

    .dropdown-item:hover, .dropdown-item:focus {
        background-color: transparent;
        color: #ffffff;
    }
}

/* CSS cho menu mới */
/* Reset CSS cơ bản */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Calibri', Arial, sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Header và Navigation */
.custom-header {
    background-color: #fff;
    position: relative;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 !important;
    margin-left: 20px !important;
    padding: 4px 18px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Logo */
.logo {
    flex: 0 0 auto;
}

#main-logo {
    width: 350px; /* Logo nhỏ hơn mặc định trên desktop */
    height: auto;
    transition: width 0.3s ease;
}

/* Menu Toggle (Hamburger) - luôn hiển thị ở góc phải */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    margin-left: auto; /* Đẩy sang bên phải */
    z-index: 101;
    position: relative;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #cc0000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hiệu ứng khi nút menu được kích hoạt */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Desktop Navigation - luôn ẩn, chỉ sử dụng mobile menu */
.desktop-nav {
    display: none;
}

/* Menu - Responsive cho desktop và mobile */
.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #cc0000;
    z-index: 1000;
    padding: 60px 0 20px;
    overflow-y: auto;
    transition: all 0.4s ease;
    transform: translateX(100%);
    visibility: hidden;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

/* Desktop: menu chiếm một phần màn hình */
@media (min-width: 992px) {
    .mobile-menu {
        width: 350px; /* Menu rộng nhất định trên desktop */
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        opacity: 0;
    }
    
    .mobile-menu.active {
        opacity: 1;
    }
    
    /* Hiệu ứng mượt mà hơn cho desktop */
    .menu-toggle span {
        transition: all 0.2s ease-in-out;
    }
    
    .menu-toggle:hover span {
        background-color: #990000;
    }
    
    /* Hiệu ứng hover cho menu item trên desktop */
    .mobile-nav a:hover {
        background-color: rgba(255,255,255,0.1);
    }
}

/* Mobile: menu chiếm toàn màn hình */
@media (max-width: 991px) {
    .mobile-menu {
        width: 100%;
    }
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.menu-close:hover {
    color: #ffcccc;
}

.language-selector {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.language-selector img {
    width: 30px;
    margin-right: 10px;
}

.mobile-nav ul {
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
    color: white;
    padding: 15px 20px;
    display: block;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.mobile-nav .has-submenu {
    position: relative;
}

.arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.arrow-down.active {
    transform: rotate(180deg);
}

/* Submenu - Cải thiện hiển thị */
.mobile-nav .submenu {
    background-color: #9e0000;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    display: none;
}

.mobile-nav .submenu.open,
.mobile-nav .submenu.active {
    display: block !important;
    max-height: 1000px !important;
}

.mobile-nav .submenu a {
    padding-left: 40px;
    font-size: 0.95em;
}

.mobile-footer {
    color: white;
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    #main-logo {
        width: 300px;
    }
}

@media (max-width: 768px) {
    #main-logo {
        width: 250px;
    }
    
    .header-container {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    #main-logo {
        width: 200px;
    }
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    margin-top: 0; /* Đặt banner về vị trí ban đầu ngay dưới header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.3) 70%);
    z-index: 1;
}

.product-name {
    font-size: 8rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
    opacity: 0.8;
    line-height: 0.9;
    text-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.dynamic-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.dynamic-text span {
    font-size: 30vw;
    font-weight: 900;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    white-space: nowrap;
    transform: translateY(-5%);
}

.company-info {
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 15px 30px;
    border-radius: 0;
}

.red-section {
    background-color: #cc0000;
    color: white;
    padding: 40px 0;
}

/* Product Info Section Styles */
.product-info-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 700px;
    height: auto;
    padding: 70px 0;
    overflow: visible;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.product-section-bg {
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    position: relative;
    min-height: 700px;
    height: auto;
    padding: 70px 0;
    overflow: visible;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.product-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.product-section-overlay {
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(255, 255, 255, 0.85); 
    z-index: 1;
}

.product-info-container {
    position: relative;
    z-index: 2;
    height: 100%;
    overflow: hidden;
}

.product-section-container {
    z-index: 2;
    height: 100%;
    overflow: visible;
    position: relative;
}

.product-info-header {
    position: relative;
    margin-top: 30px;
    padding-top: 20px;
}

.product-info-title-wrapper {
    display: block;
    position: relative;
    margin-bottom: 40px;
}

.product-info-title {
    font-family: 'Beautique Display', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #cc0000;
    margin-bottom: 5px;
    padding: 0;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
}

.product-info-title-line {
    position: absolute;
    height: 2px;
    background-color: #cc0000;
    left: 100%;
    right: -150px;
    top: calc(50% + 7px);
    width: 150px;
}

.product-info-watermark {
    position: absolute;
    top: -50px;
    left: 0;
    z-index: 1;
    opacity: 0.12;
    font-family: 'Beautique Display Condensed', serif;
    font-weight: 400;
    font-size: 160px;
    line-height: 100px;
    letter-spacing: 4%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000;
}

.section-header {
    margin-top: 5px;
    margin-bottom: 60px;
    padding-top: 40px;
    position: relative;
    min-height: 120px;
    overflow: visible;
}

.section-header-container {
    display: block;
    position: relative;
    margin-bottom: 30px;
    margin-left: 25px;
}

.section-heading-line {
    font-family: 'Beautique Display', serif; 
    font-weight: 700; 
    font-style: italic; 
    font-size: 36px; 
    line-height: 1.2; 
    letter-spacing: 0; 
    color: #cc0000; 
    margin-bottom: 5px; 
    padding: 0; 
    display: inline-block; 
    text-transform: uppercase; 
    position: relative;
    margin-top: 15px;
    margin-left: 15px;
}

.heading-line-decoration {
    position: absolute; 
    height: 2px; 
    background-color: #cc0000; 
    left: 100%; 
    right: -150px; 
    top: calc(50% + 7px); 
    width: 150px;
}

.section-watermark-container {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: visible;
    text-align: center;
}

.watermark-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 1;
    padding-top: 30px;
}

.section-watermark {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    z-index: 1;
    opacity: 0.07;
    font-family: 'Beautique Display Condensed', serif;
    font-weight: 400;
    font-size: clamp(60px, 10vw, 120px);
    line-height: 1;
    letter-spacing: 4%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
    max-width: 100%;
}

@media (max-width: 992px) {
    .section-watermark {
        top: -15px;
        font-size: clamp(45px, 8vw, 90px);
    }
    
    .section-header-container {
        margin-left: 20px;
        position: relative;
        z-index: 5;
    }
    
    .section-heading-line {
        margin-left: 10px;
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .section-watermark {
        top: -10px;
        font-size: clamp(35px, 7vw, 70px);
    }
    
    .section-header-container {
        margin-left: 15px;
        position: relative;
        z-index: 5;
    }
    
    .section-heading-line {
        margin-left: 8px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .section-watermark {
        top: -5px;
        font-size: clamp(28px, 6vw, 50px);
        opacity: 0.05;
    }
    
    .section-header-container {
        margin-left: 10px;
        position: relative;
        z-index: 5;
    }
    
    .section-heading-line {
        margin-left: 5px;
        font-size: 24px;
    }
}

.product-info-content {
    position: relative;
    margin-top: 5rem;
    overflow: hidden;
}

.product-info-image {
    height: auto;
    max-height: 480px;
    object-fit: cover;
}

/* Product Info Box - Updated for better readability */
.product-info-box {
    background: #ffffff;
    background-size: cover;
    background-position: center;
    color: #333;
    min-height: 400px;
    max-height: none;
    overflow: visible;
    padding: 2rem;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(204, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-left: 0;
    margin-right: 0;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.product-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: rgba(204, 0, 0, 0.2);
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.info-box {
    background: rgba(255, 255, 255, 0.98);
    color: #222;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background-size: cover;
    background-position: center;
    height: auto;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.product-info-box-title {
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.7rem;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.info-box-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #cc0000;
}

.info-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
    color: #ffe066;
    font-weight: 700;
    background: transparent;
    letter-spacing: 0.3px;
}

/* Fix for h4 titles in Product Info Section */
.product-info-box h4.fw-bold {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.showroom-image {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.showroom-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-info-box p {
    line-height: 1.6;
    font-size: 1rem;
    text-align: justify;
}

/* Fix for Product Info Section row spacing */
.product-info-section .row {
    margin-left: 0;
    margin-right: 0;
}

.product-info-section .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.product-info-box-absolute {
    position: absolute;
    right: 60px;
    top: 260px;
    z-index: 2;
}

.news-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-body {
    padding: 20px;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #cc0000;
    color: white;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 99;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .product-name { font-size: 6rem; }
    .product-info-box h3 { 
        font-size: 1.5rem; 
        color: #ffe066;
        font-weight: 900;
    }
    .product-info-box .info-text {
        color: #ffe066;
        font-weight: 600;
    }
}

@media (max-width: 992px) {
    .product-name { font-size: 5rem; }
    .dynamic-text span { font-size: 40vw; }
}

@media (max-width: 768px) {
    .hero-banner {
        height: auto;
        min-height: 500px;
    }
    .product-name {
        font-size: 4rem;
        margin-top: 20px;
    }
    .dynamic-text span { font-size: 50vw; }
    .company-info {
        padding: 10px 20px;
    }
    .company-info h2 { font-size: 1.5rem; }
    .product-info-section { padding: 50px 0; }
    .section-title { font-size: 1.2rem; }
    .product-info-box {
        margin-top: 20px;
        padding: 25px;
        background: rgba(255, 255, 255, 0.98);
        color: #222;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
                                                          .product-info-box h3 { 
                              font-size: 1.5rem; 
                                  color: #ffffff;
                                      font-weight: 900;
                                  }
                                      .product-info-box .info-text {
                                  color: #ffffff;
                                      font-weight: 600;
                                  }
}

@media (max-width: 576px) {
    .product-name { font-size: 3.5rem; }
    .hero-banner { min-height: 450px; }
    .company-info h2 { font-size: 1.2rem; }
    .red-section .btn {
        font-size: 0.9rem;
        padding: 10px 5px;
    }
}

.text-gradient {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.product-image {
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: scale(0.8) translateY(0);
    }
    50% {
        transform: scale(0.8) translateY(-20px);
    }
}

.shape-1 {
    animation: rotateClockwise 20s linear infinite;
}

.shape-2 {
    animation: rotateCounterClockwise 25s linear infinite;
}

@keyframes rotateClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateCounterClockwise {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@media (max-width: 991.98px) {
    .text-content {
        background: rgba(255,255,255,0.9);
        margin: 1rem;
        border-radius: 10px;
    }
}

@media (max-width: 767.98px) {
    .text-content {
        padding: 1rem !important;
    }
}

.hero-banner {
    background-color: #fff;
    overflow: hidden;
}

.banner-bg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

@media (max-width: 1400px) {
    .banner-bg img {
        width: auto;
        height: 100%;
        right: -10%;
    }
}

@media (max-width: 991.98px) {
    .banner-bg img {
        width: auto;
        height: 100%;
        right: -20%;
    }
    .text-content {
        background: rgba(255,255,255,0.9);
        margin: 1rem;
        border-radius: 10px;
    }
}

@media (max-width: 767.98px) {
    .banner-bg img {
        width: auto;
        height: 100%;
        right: -30%;
    }
    .text-content {
        padding: 1rem !important;
    }
}

.hero-banner {
    height: 100vh;
    background: #fff;
    overflow: hidden;
}

.banner-bg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.text-content {
    transition: all 0.3s ease;
}

.text-content:hover {
    transform: translateY(-1px);
    box-shadow: 0 1px 1px rgba(0,0,0,0.03);
}

@media (max-width: 991.98px) {
    .content-wrapper {
        margin-top: 25vh;
    }
    .text-content {
        padding: 1rem 1rem 1rem 0 !important;
    }
    .text-content h2 {
        font-size: 2rem !important;
    }
    .underline {
        width: 140px !important;
    }
}

@media (max-width: 767.98px) {
    .content-wrapper {
        margin-top: 20vh;
    }
    .ps-md-5 {
        padding-left: 1.5rem !important;
    }
    .text-content {
        padding: 1rem 1rem 1rem 0 !important;
        background: rgba(0,0,0,0.4) !important;
    }
    .text-content h2 {
        font-size: 1.8rem !important;
    }
    .text-content p {
        font-size: 0.85rem !important;
    }
    .underline {
        width: 120px !important;
    }
}

/* Responsive styles for product info section */
@media (max-width: 991px) {
    .product-info-section .position-absolute {
        position: static !important;
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .product-info-box {
        width: 100%;
        margin-bottom: 30px;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        background: rgba(255, 255, 255, 0.98);
        color: #222;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        backdrop-filter: blur(10px);
    }
    
    /* Fix overlap issue for col-lg-4 col-md-12 */
    .product-info-section .col-lg-4.col-md-12 {
        margin-left: 0;
        margin-right: 0;
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
        z-index: 1;
    }
    
    .product-info-section .col-lg-8.col-md-12 {
        margin-right: 0;
        padding-right: 15px;
    }
    
    .content-wrapper {
        margin-top: 15vh !important;
    }
    
    .hero-banner .col-lg-8 {
        margin-left: 0 !important;
        padding: 0 15px !important;
    }
    
    .hero-banner .position-relative {
        height: auto !important;
        min-height: 100vh;
    }
    
    .news-card {
        height: auto !important;
        min-height: 400px;
        margin-bottom: 20px;
    }
    
    .product-info-section {
        height: auto;
        min-height: auto;
        padding: 70px 0;
        overflow: hidden !important;
        margin-top: 30px !important;
    }
}

@media (max-width: 767px) {
    .product-info-section h2 {
        font-size: 28px !important;
    }
    
    .product-info-section h2 span {
        display: none;
    }
    
    .hero-banner .col-lg-8 > div {
        padding: 15px !important;
    }
    
    .hero-banner h2 {
        font-size: 2rem !important;
    }
    
    .hero-banner h4 {
        font-size: 0.9rem !important;
    }
    
    .hero-banner p {
        font-size: 0.85rem !important;
    }
    
    .news-card {
        min-height: 380px;
    }
    
    .section-title {
        font-size: 42px !important;
        margin-top: 30px !important;
    }
    
    .position-absolute[style*="top: -60px"] {
        display: none;
    }
    
    .side-news-item {
        height: auto !important;
        min-height: 112px;
    }
}

@media (max-width: 576px) {
    .product-info-section {
        padding: 40px 0 !important;
    }
    
    .hero-banner h2 {
        font-size: 1.6rem !important;
    }
    
    .news-card {
        min-height: 350px;
    }
    
    .section-title {
        font-size: 32px !important;
    }
    
    .footer .col-auto {
        width: 50%;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .bottom-navigation .btn {
        font-size: 0.7rem !important;
        padding: 8px 5px !important;
    }
}

@media (max-width: 991px) {
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links .col-auto {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .footer img {
        max-width: 200px;
    }
    
    .footer-links {
        margin-top: -15px !important;
    }
    
    .footer-links .col-auto {
        width: 50%;
        text-align: center;
        padding: 0 10px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .footer img {
        max-width: 180px;
    }
    
    .footer-links .col-auto {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .social-links a {
        width: 32px !important;
        height: 32px !important;
    }
}

/* Zoom Out animation for heading */
.zoom-out-animation {
    opacity: 0;
    transform: scale(1.5);
    animation: zoomOut 1.2s ease forwards;
}

@keyframes zoomOut {
    from {
        opacity: 0;
        transform: scale(1.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Float Up animation for news items */
.float-up-element {
    opacity: 0;
    transform: translateY(30px);
    animation: floatUp 0.8s ease-out forwards;
}

.news-card.float-up-element:nth-child(1) { animation-delay: 0.2s; }
.news-card.float-up-element:nth-child(2) { animation-delay: 0.4s; }
.side-news-item.float-up-element:nth-child(1) { animation-delay: 0.3s; }
.side-news-item.float-up-element:nth-child(2) { animation-delay: 0.5s; }
.float-up-element:last-child { animation-delay: 0.7s; }

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional responsive styles */
@media (max-width: 991px) {
    .website-showcase .title-box {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        margin-bottom: 40px;
        display: inline-block;
    }
    
    .website-showcase .title-box + div {
        height: auto !important;
        min-height: 20px;
    }
}

@media (max-width: 767px) {
    .website-showcase .title-box {
        padding: 8px 25px 8px 30px !important;
    }
    
    .website-showcase .title-box h4 {
        font-size: 18px;
    }
    
    .news-content h3 {
        font-size: 16px !important;
    }
    
    .news-source {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }
    
    .side-news-content h4 {
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    .website-showcase img {
        border-width: 4px !important;
    }
    

}

/* News & Events Section */
.news-events {
    padding: 200px 0 80px 0;
    background-color: #f9f3f3;
    position: relative;
    overflow: visible;
    z-index: 10;
    margin-top: 50px;
    clear: both;
}

.news-title {
    font-family: 'Beautique Display Condensed';
    font-weight: 400;
    font-size: 48px;
    line-height: 52px;
    letter-spacing: 0%;
    text-align: left;
    vertical-align: middle;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    z-index: 15;
    padding-top: 20px;
}

/* Lịch sử hình thành Section */
.history-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.02) 0%, rgba(204, 0, 0, 0.05) 100%);
    z-index: 1;
}

.history-section .container {
    position: relative;
    z-index: 2;
}

.history-content .section-title {
    font-family: 'Beautique Display', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #cc0000;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

.history-content .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #cc0000, #ff6b6b);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #cc0000, #ff6b6b);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #cc0000;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #cc0000;
}

.timeline-year {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.history-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.history-image img {
    transition: transform 0.3s ease;
}

.history-image:hover img {
    transform: scale(1.05);
}

/* Hồ sơ năng lực Section */
.capability-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.capability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.capability-section .container {
    position: relative;
    z-index: 2;
}

.capability-section .section-title {
    font-family: 'Beautique Display', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
}

.capability-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-5px);
}

.capability-icon {
    margin-bottom: 20px;
}

.capability-item h4 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Beautique Display', serif;
}

.capability-item p {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

/* Thông tin liên hệ Section */
.contact-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.02) 0%, rgba(204, 0, 0, 0.05) 100%);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .section-title {
    font-family: 'Beautique Display', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #cc0000;
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
}

.contact-info h5,
.business-hours h5 {
    font-family: 'Beautique Display', serif;
    font-weight: 700;
    font-size: 24px;
    color: #cc0000;
    margin-bottom: 25px;
    position: relative;
}

.contact-info h5::after,
.business-hours h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #cc0000, #ff6b6b);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-left-color: #cc0000;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 18px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.contact-item span {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.contact-item strong {
    font-weight: 600;
    color: #333;
}

.hours-item {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(3px);
}

.hours-item span {
    font-weight: 600;
    color: #cc0000;
}

.business-hours ul {
    margin-top: 20px;
}

.business-hours li {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    display: flex;
    align-items: center;
}

.business-hours li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 12px;
}

/* Responsive styles cho các phần mới */
@media (max-width: 992px) {
    .history-content .section-title,
    .capability-section .section-title,
    .contact-section .section-title {
        font-size: 32px;
        text-align: center;
    }
    
    .timeline {
        padding-left: 25px;
    }
    
    .timeline-item::before {
        left: -18px;
        width: 10px;
        height: 10px;
    }
    
    .capability-item {
        padding: 25px 15px;
    }
    
    .capability-item h4 {
        font-size: 32px;
    }
    
    .contact-info h5,
    .business-hours h5 {
        font-size: 22px;
        text-align: center;
    }
    
    .contact-info h5::after,
    .business-hours h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .history-content .section-title,
    .capability-section .section-title,
    .contact-section .section-title {
        font-size: 28px;
    }
    
    .timeline-year {
        font-size: 20px;
    }
    
    .timeline-content h5 {
        font-size: 16px;
    }
    
    .timeline-content p {
        font-size: 13px;
    }
    
    .capability-item {
        padding: 20px 10px;
    }
    
    .capability-item h4 {
        font-size: 28px;
    }
    
    .capability-item p {
        font-size: 14px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-item span {
        font-size: 13px;
    }
    
    .hours-item {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .business-hours li {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .history-content .section-title,
    .capability-section .section-title,
    .contact-section .section-title {
        font-size: 24px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item::before {
        left: -15px;
        width: 8px;
        height: 8px;
    }
    
    .timeline-year {
        font-size: 18px;
    }
    
    .timeline-content h5 {
        font-size: 15px;
    }
    
    .timeline-content p {
        font-size: 12px;
    }
    
    .capability-item {
        padding: 15px 8px;
    }
    
    .capability-item h4 {
        font-size: 24px;
    }
    
    .capability-item p {
        font-size: 13px;
    }
    
    .contact-info h5,
    .business-hours h5 {
        font-size: 20px;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .contact-item span {
        font-size: 12px;
    }
    
    .hours-item {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .business-hours li {
        font-size: 12px;
    }
} 

/* News & Events Section */
.news-events {
    padding: 200px 0 80px 0;
    background-color: #f9f3f3;
    position: relative;
    overflow: visible;
    z-index: 10;
    margin-top: 50px;
    clear: both;
}

.news-title {
    font-family: 'Beautique Display Condensed';
    font-weight: 400;
    font-size: 48px;
    line-height: 52px;
    letter-spacing: 0%;
    text-align: left;
    vertical-align: middle;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    z-index: 15;
    padding-top: 20px;
}

.news-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 450px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto 20px;
    max-width: 384px;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: Calibri;
    font-weight: 700;
    color: #333;
}

.news-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    flex-grow: 1;
    font-family: Calibri;
    font-weight: 300;
}

.news-meta {
    display: flex;
    gap: 10px;
    font-family: Calibri;
    font-size: 14px;
    color: #888;
    margin-top: auto;
}

.side-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    min-height: 400px;
}

.side-news-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    color: #333;
    transition: transform 0.3s ease;
    height: 100px;
    align-items: center;
}

.side-news-item:hover {
    transform: translateY(-3px);
}

.side-news-item .news-image {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.side-news-item .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.side-news-item:hover .news-image img {
    transform: scale(1.05);
}

.side-news-item .news-content {
    padding: 0 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80px;
}

.side-news-item .news-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side-news-item .news-title a {
    color: #333;
    text-decoration: none;
}

.side-news-item .news-title a:hover {
    color: #cc0000;
}

.side-news-item .news-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: #888;
    align-items: center;
}

.side-news-item .news-category {
    color: #cc0000;
    font-weight: 600;
    text-transform: uppercase;
}

.side-news-item .news-date {
    color: #999;
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

/* Main news styles - Card dọc như trong hình */
.main-news-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
    color: #333;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 400px;
}

.main-news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.main-news-item .news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.main-news-item .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-news-item:hover .news-image img {
    transform: scale(1.05);
}

.main-news-item .news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: white;
    position: relative;
    z-index: 2;
    overflow: hidden;
    justify-content: space-between;
}

.main-news-item .news-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-news-item .news-title a {
    color: #333;
    text-decoration: none;
}

.main-news-item .news-title a:hover {
    color: #cc0000;
}

.main-news-item .news-summary {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.main-news-item .news-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
    align-items: center;
}

.main-news-item .news-category {
    color: #cc0000;
    font-weight: 600;
    text-transform: uppercase;
}

/* Loading spinner styles */
.news-events .spinner-border {
    width: 3rem;
    height: 3rem;
    color: #cc0000 !important;
}

/* Responsive styles cho tin tức */
@media (max-width: 1200px) {
    .news-card {
        height: 450px;
    }
    
    .news-card img {
        height: 250px;
    }
}

@media (max-width: 992px) {
    .news-events {
        padding: 150px 0 60px 0;
        margin-top: 40px;
    }
    
    .news-title {
        font-size: 42px;
        line-height: 46px;
        text-align: center;
        margin-bottom: 30px;
        padding-top: 15px;
    }
    
    .main-news-item {
        min-height: 350px;
    }
    
    .main-news-item .news-image {
        height: 180px;
    }
    
    .main-news-item .news-content {
        padding: 15px;
    }
    
    .news-card {
        height: 420px;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .news-card img {
        height: 220px;
    }
    
    .side-news-item .news-image {
        width: 90px;
        height: 75px;
    }
    
    .side-news-item {
        height: 95px;
    }
}

@media (max-width: 768px) {
    .news-events {
        padding: 120px 0 50px 0;
        margin-top: 30px;
    }
    
    .news-title {
        font-size: 36px;
        line-height: 40px;
        padding-top: 10px;
    }
    
    .main-news-item {
        min-height: 320px;
    }
    
    .main-news-item .news-image {
        height: 160px;
    }
    
    .main-news-item .news-content {
        padding: 12px;
    }
    
    .main-news-item .news-title {
        font-size: 16px;
    }
    
    .news-card {
        height: auto;
        min-height: 400px;
    }
    
    .news-card img {
        height: 200px;
    }
    
    .news-content h3 {
        font-size: 16px;
    }
    
    .news-content p {
        font-size: 14px;
    }
    
    .side-news-item {
        height: 90px;
    }
    
    .side-news-item .news-title {
        font-size: 13px;
    }
    
    .side-news-item .news-image {
        width: 80px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .news-events {
        padding: 100px 0 40px 0;
        margin-top: 20px;
    }
    
    .news-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 25px;
        padding-top: 5px;
    }
    
    .main-news-item {
        min-height: 300px;
    }
    
    .main-news-item .news-image {
        height: 140px;
    }
    
    .main-news-item .news-title {
        font-size: 15px;
    }
    
    .news-card {
        min-height: 380px;
    }
    
    .side-news-item .news-image {
        width: 70px;
        height: 60px;
    }
    
    .side-news-item {
        height: 85px;
    }
    
    .news-meta {
        font-size: 12px;
    }
}

/* ===== CSS TỪ INTERNAL STYLE BLOCK ===== */
/* Custom styles cho trang xe-may */
body {
    margin: 0;
    padding: 0;
}

/* CSS overrides cho header */
#header-include .desktop-nav .submenu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    z-index: 1000 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    min-width: 200px !important;
}

#header-include .desktop-nav .submenu li {
    display: block !important;
    margin: 0 !important;
}

#header-include .desktop-nav .submenu a {
    display: block !important;
    padding: 12px 20px !important;
    color: #333 !important;
    text-decoration: none !important;
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
}

#header-include .desktop-nav .submenu a:hover {
    background: #f8f9fa !important;
    color: #cc0000 !important;
    padding-left: 25px !important;
}

#header-include .desktop-nav li.has-submenu:hover .submenu,
#header-include .desktop-nav .has-submenu:hover .submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Mobile responsive CSS */
@media (max-width: 991px) {
    #header-include .desktop-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    #header-include .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 30px !important;
        height: 21px !important;
        cursor: pointer !important;
        z-index: 1001 !important;
        position: relative !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #header-include .menu-toggle span {
        display: block !important;
        height: 3px !important;
        width: 100% !important;
        background-color: #cc0000 !important;
        transition: all 0.3s ease !important;
        border-radius: 2px !important;
        margin: 0 !important;
    }
    
    #header-include .mobile-only {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    #header-include .header-container {
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    #header-include .logo {
        margin-right: 0 !important;
    }
}

@media (min-width: 992px) {
    #header-include .desktop-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    #header-include .menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    #header-include .mobile-only {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* Mobile menu styles */
#header-include .mobile-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 350px !important;
    height: 100vh !important;
    background-color: #cc0000 !important;
    z-index: 9999 !important;
    transform: translateX(100%) !important;
    transition: all 0.4s ease !important;
    overflow-y: auto !important;
    padding: 60px 0 20px !important;
    visibility: hidden !important;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2) !important;
    display: block !important;
    pointer-events: none !important;
}

#header-include .mobile-menu.active {
    transform: translateX(0) !important;
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

#header-include .menu-toggle {
    display: none !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 30px !important;
    height: 21px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 1001 !important;
    position: relative !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

#header-include .menu-toggle span {
    display: block !important;
    height: 3px !important;
    width: 100% !important;
    background-color: #cc0000 !important;
    transition: all 0.3s ease !important;
    border-radius: 2px !important;
}

#header-include .mobile-nav {
    padding: 60px 0 20px 0 !important;
}

#header-include .mobile-nav ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#header-include .mobile-nav li {
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#header-include .mobile-nav a {
    display: block !important;
    padding: 15px 0 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

#header-include .mobile-nav a:hover {
    color: #ffcccc !important;
    padding-left: 10px !important;
}

#header-include .submenu-toggle {
    background: none !important;
    border: none !important;
    color: #ffffff !important;
    padding: 15px 0 !important;
    width: 100% !important;
    text-align: left !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 16px !important;
}

#header-include .arrow-down {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 5px solid transparent !important;
    border-right: 5px solid transparent !important;
    border-top: 5px solid white !important;
    transition: transform 0.3s ease !important;
}

#header-include .submenu-toggle.active .arrow-down {
    transform: translateY(-50%) rotate(180deg) !important;
}

#header-include .menu-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: none !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 24px !important;
    cursor: pointer !important;
}

#header-include .mobile-footer {
    position: absolute !important;
    bottom: 20px !important;
    left: 20px !important;
    right: 20px !important;
    text-align: center !important;
    color: #ffffff !important;
}

/* Force mobile menu toggle visibility on mobile */
@media (max-width: 991px) {
    #header-include .menu-toggle,
    #header-include .mobile-only {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    #header-include .desktop-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Mobile submenu styles */
#header-include .mobile-nav .submenu {
    background-color: rgba(0,0,0,0.2) !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
}

#header-include .mobile-nav .submenu.open {
    max-height: 400px !important;
}

#header-include .mobile-nav .submenu a {
    padding-left: 30px !important;
    font-size: 13px !important;
}

/* ===== CSS CLASSES CHO INLINE STYLES ===== */
/* Hero Banner Styles */
.hero-banner-container {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-gradient {
    background: linear-gradient(0deg, rgba(76, 0, 0, 0.9) 0%, rgba(101, 48, 48, 0.7) 30%, rgba(119, 82, 82, 0.4) 60%, rgba(119, 82, 82, 0) 80%);
}

.hero-content-wrapper {
    margin-top: 15vh;
    position: relative;
    z-index: 20;
}

    .hero-text-container {
        max-width: 1600px;
        text-align: left;
        padding: 15px 35px;
        border-radius: 8px;
        position: relative;
        z-index: 21;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

.hero-subtitle {
    font-size: 1.3rem;
    color: #ff0000;
    letter-spacing: 1px;
    text-align: left;
    margin: 0 0 8px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ff0000;
    letter-spacing: 0.5px;
    line-height: 1.1;
    position: relative;
    margin: 0 0 8px 0;
    padding: 0 0 8px 0;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-decoration-line {
    width: 127px;
    height: 3px;
    background: linear-gradient(to right, #FFD700, #FFA500);
    margin-bottom: 15px;
    margin-top: -8px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 0.9rem;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 8px 0;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-breadcrumb {
    font-size: 0.75rem;
    color: #FFD700;
    padding: 0;
    background: none;
    text-align: left;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.hero-nav-container {
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 30;
}

.hero-nav-btn-primary {
    background-color: #cc0000;
    border-radius: 0;
    font-size: 0.9rem;
}

.hero-nav-btn-secondary {
    background-color: #f8f9fa;
    border-radius: 0;
    font-size: 0.9rem;
}

/* Product Info Section Styles */
.product-section-bg-image {
    background-image: url('images/bg-section.jpg');
}

.product-section-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.product-section-container {
    z-index: 2;
    height: 100%;
    overflow: visible;
    position: relative;
}

.product-info-box-bg {
    background-image: url('images/red-bg-texture.jpg');
}

/* Website Showcase Styles */
.website-showcase-bg {
    background-image: url('images/red-texture-bg.png');
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.website-showcase-container {
    z-index: 2;
}

.website-showcase-title-box {
    position: absolute;
    top: -20px;
    left: -40px;
    background-color: #cc0000;
    padding: 15px 60px 15px 60px;
    transform: skewX(-20deg);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 10;
    min-width: 350px;
}

.website-showcase-title-text {
    transform: skewX(20deg);
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.2;
}

.website-showcase-title-link {
    color: white;
    text-decoration: none;
}

.website-showcase-spacer {
    height: 60px;
}

.website-showcase-image {
    border: 8px solid white;
    max-width: 90%;
}

/* History Section Styles */
.history-section-bg {
    background-color: #f8f9fa;
}

.history-section-title {
    color: #cc0000;
}

.timeline-year {
    color: #cc0000;
}

/* Capability Section Styles */
.capability-section-bg {
    background-image: url('images/bg-section.jpg');
    background-size: cover;
    position: relative;
}

.capability-section-overlay {
    background: rgba(0,0,0,0.7);
}

.capability-section-container {
    z-index: 2;
}

.capability-section-title {
    color: #ffffff;
}

.capability-icon-color {
    color: #FFD700;
}

/* Contact Section Styles */
.contact-section-title {
    color: #cc0000;
}

.contact-info-title {
    color: #cc0000;
}

.contact-item-icon {
    color: #cc0000;
}

.contact-item-link {
    color: #cc0000;
}

/* Responsive adjustments for new classes */
@media (max-width: 991px) {
    .hero-content-wrapper {
        margin-top: 25vh;
    }
    
    .hero-text-container {
        padding: 1rem 1rem 1rem 0;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-decoration-line {
        width: 140px;
    }
}

@media (max-width: 767px) {
    .hero-content-wrapper {
        margin-top: 20vh;
    }
    
    .hero-text-container {
        padding: 1rem 1rem 1rem 0;
        background: rgba(0,0,0,0.4);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-decoration-line {
        width: 120px;
    }
    
    .website-showcase-title-box {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 40px;
        display: inline-block;
    }
    
    .website-showcase-title-box + div {
        height: auto;
        min-height: 20px;
    }
}

@media (max-width: 576px) {
    .website-showcase-title-box {
        padding: 8px 25px 8px 30px;
    }
    
    .website-showcase-title-text {
        font-size: 18px;
    }
    
    .website-showcase-image {
        border-width: 4px;
    }
}

/* Footer spacing */
.footer-links-spacing {
    margin-top: -30px !important;
}

/* Additional utility classes for remaining inline styles */
.hero-bg-layer {
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay-layer {
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.hero-content-layer {
    z-index: 20;
}

.hero-text-wrapper {
    margin-top: 50px;
    margin-left: 30px;
}

.capability-overlay-layer {
    top: 0;
    left: 0;
}

.footer-logo {
    max-height: 200px;
}

.social-icon-size {
    width: 36px;
    height: 36px;
} 

/* ===== CSS CLASSES CÒN THIẾU ===== */

/* Bottom Navigation */
.bottom-navigation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 30;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 20;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Text Content */
.text-content {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    padding: 20px 25px;
    max-width: 800px;
    text-align: left;
    border-radius: 0;
}

.text-content:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.text-content h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.1;
    position: relative;
    margin: 0 0 15px 0;
    padding: 0 0 12px 0;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.text-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 12px 0;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Underline */
.underline {
    width: 127px;
    height: 3px;
    background: linear-gradient(to right, #FFD700, #FFA500);
    margin-bottom: 15px;
    margin-top: -8px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Banner Background */
.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Product Info Box Background */
.product-info-box-bg {
    background-image: url('../images/red-bg-texture.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.98);
}

/* Product Info Box Absolute */
.product-info-box-absolute {
    position: absolute;
    top: -60px;
    right: 0;
    width: 100%;
    max-width: 500px;
    z-index: 10;
}

/* Product Info Box Title */
.product-info-box-title {
    color: #ffe066 !important;
    font-weight: 900;
    margin-bottom: 15px;
    font-size: 1.7rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* Info Box */
.info-box {
    background: rgba(255, 255, 255, 0.98);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Info Box Title */
.info-box-title {
    color: #cc0000;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Info Text */
.info-text {
    color: #ffe066 !important;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1rem;
    text-align: justify;
    letter-spacing: 0.2px;
}

/* Showroom Image */
.showroom-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.showroom-image:hover {
    transform: scale(1.05);
}

/* Product Info Box Paragraph */
.product-info-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* News Card Body */
.news-card-body {
    padding: 20px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #cc0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #a00000;
    transform: translateY(-2px);
}

/* Section Title */
.section-title {
    color: #cc0000;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #FFD700, #FFA500);
}

/* News Source */
.news-source {
    color: #999;
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Side News Content */
.side-news-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Website Showcase Title Box */
.website-showcase .title-box {
    position: absolute;
    top: -20px;
    left: -40px;
    background: linear-gradient(135deg, #cc0000, #a00000);
    padding: 15px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

.website-showcase .title-box h4 {
    transform: skewX(20deg);
    font-weight: 600;
    color: white;
    margin: 0;
    font-size: 1.2rem;
}

.website-showcase .title-box a {
    color: white;
    text-decoration: none;
}

.website-showcase .title-box a:hover {
    color: #FFD700;
}

/* Website Showcase Spacer */
.website-showcase .title-box + div {
    height: 60px;
}

/* Responsive adjustments for website showcase */
@media (max-width: 991px) {
    .website-showcase .title-box {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .website-showcase .title-box + div {
        height: 20px;
    }
}

@media (max-width: 767px) {
    .website-showcase .title-box {
        padding: 10px 20px;
    }
    
    .website-showcase .title-box h4 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .website-showcase .title-box {
        padding: 8px 15px;
    }
    
    .website-showcase .title-box h4 {
        font-size: 0.9rem;
    }
}

/* Additional utility classes */
.text-white {
    color: white !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.fw-bold {
    font-weight: bold !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.text-center {
    text-align: center !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.rounded {
    border-radius: 0.375rem !important;
}

.shadow {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.transition {
    transition: all 0.15s ease-in-out !important;
}

/* Z-index utilities */
.z-1 {
    z-index: 1 !important;
}

.z-10 {
    z-index: 10 !important;
}

.z-20 {
    z-index: 20 !important;
}

.z-30 {
    z-index: 30 !important;
}

.z-1000 {
    z-index: 1000 !important;
}

/* Background utilities */
.bg-white {
    background-color: white !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Border utilities */
.border {
    border: 1px solid #dee2e6 !important;
}

.border-0 {
    border: 0 !important;
}

/* Text color utilities */
.text-danger {
    color: #dc3545 !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-dark {
    color: #212529 !important;
}

/* Font weight utilities */
.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* Font size utilities */
.fs-1 {
    font-size: 2.5rem !important;
}

.fs-2 {
    font-size: 2rem !important;
}

.fs-3 {
    font-size: 1.75rem !important;
}

.fs-4 {
    font-size: 1.5rem !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.fs-6 {
    font-size: 1rem !important;
}

.fs-sm {
    font-size: 0.875rem !important;
}

.fs-xs {
    font-size: 0.75rem !important;
}

/* Line height utilities */
.lh-1 {
    line-height: 1 !important;
}

.lh-sm {
    line-height: 1.25 !important;
}

.lh-base {
    line-height: 1.5 !important;
}

.lh-lg {
    line-height: 2 !important;
}

/* Letter spacing utilities */
.ls-1 {
    letter-spacing: 0.1em !important;
}

.ls-2 {
    letter-spacing: 0.2em !important;
}

.ls-3 {
    letter-spacing: 0.3em !important;
}

/* Text shadow utilities */
.text-shadow {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}

.text-shadow-lg {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7) !important;
}

/* Box shadow utilities */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Transform utilities */
.scale-1 {
    transform: scale(1) !important;
}

.scale-105 {
    transform: scale(1.05) !important;
}

.scale-11 {
    transform: scale(1.1) !important;
}

.translate-y-0 {
    transform: translateY(0) !important;
}

.translate-y-n2 {
    transform: translateY(-0.5rem) !important;
}

.translate-y-n5 {
    transform: translateY(-1.25rem) !important;
}

/* Opacity utilities */
.opacity-0 {
    opacity: 0 !important;
}

.opacity-25 {
    opacity: 0.25 !important;
}

.opacity-50 {
    opacity: 0.5 !important;
}

.opacity-75 {
    opacity: 0.75 !important;
}

.opacity-100 {
    opacity: 1 !important;
}

/* Visibility utilities */
.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

/* Cursor utilities */
.cursor-pointer {
    cursor: pointer !important;
}

.cursor-default {
    cursor: default !important;
}

/* User select utilities */
.user-select-none {
    user-select: none !important;
}

.user-select-auto {
    user-select: auto !important;
}

/* Pointer events utilities */
.pointer-events-none {
    pointer-events: none !important;
}

.pointer-events-auto {
    pointer-events: auto !important;
}

/* Object fit utilities */
.object-fit-cover {
    object-fit: cover !important;
}

.object-fit-contain {
    object-fit: contain !important;
}

.object-fit-fill {
    object-fit: fill !important;
}

/* Object position utilities */
.object-position-center {
    object-position: center !important;
}

.object-position-top {
    object-position: top !important;
}

.object-position-bottom {
    object-position: bottom !important;
}

.object-position-left {
    object-position: left !important;
}

.object-position-right {
    object-position: right !important;
}

/* Background size utilities */
.bg-size-cover {
    background-size: cover !important;
}

.bg-size-contain {
    background-size: contain !important;
}

.bg-size-auto {
    background-size: auto !important;
}

/* Background position utilities */
.bg-position-center {
    background-position: center !important;
}

.bg-position-top {
    background-position: top !important;
}

.bg-position-bottom {
    background-position: bottom !important;
}

.bg-position-left {
    background-position: left !important;
}

.bg-position-right {
    background-position: right !important;
}

/* Background repeat utilities */
.bg-repeat {
    background-repeat: repeat !important;
}

.bg-no-repeat {
    background-repeat: no-repeat !important;
}

.bg-repeat-x {
    background-repeat: repeat-x !important;
}

.bg-repeat-y {
    background-repeat: repeat-y !important;
}

/* Background attachment utilities */
.bg-fixed {
    background-attachment: fixed !important;
}

.bg-scroll {
    background-attachment: scroll !important;
}

.bg-local {
    background-attachment: local !important;
}

/* Background clip utilities */
.bg-clip-border {
    background-clip: border-box !important;
}

.bg-clip-padding {
    background-clip: padding-box !important;
}

.bg-clip-content {
    background-clip: content-box !important;
}

.bg-clip-text {
    background-clip: text !important;
}

/* Background origin utilities */
.bg-origin-border {
    background-origin: border-box !important;
}

.bg-origin-padding {
    background-origin: padding-box !important;
}

.bg-origin-content {
    background-origin: content-box !important;
}

/* Background blend mode utilities */
.bg-blend-multiply {
    background-blend-mode: multiply !important;
}

.bg-blend-screen {
    background-blend-mode: screen !important;
}

.bg-blend-overlay {
    background-blend-mode: overlay !important;
}

.bg-blend-darken {
    background-blend-mode: darken !important;
}

.bg-blend-lighten {
    background-blend-mode: lighten !important;
}

.bg-blend-color-dodge {
    background-blend-mode: color-dodge !important;
}

.bg-blend-color-burn {
    background-blend-mode: color-burn !important;
}

.bg-blend-hard-light {
    background-blend-mode: hard-light !important;
}

.bg-blend-soft-light {
    background-blend-mode: soft-light !important;
}

.bg-blend-difference {
    background-blend-mode: difference !important;
}

.bg-blend-exclusion {
    background-blend-mode: exclusion !important;
}

.bg-blend-hue {
    background-blend-mode: hue !important;
}

.bg-blend-saturation {
    background-blend-mode: saturation !important;
}

.bg-blend-color {
    background-blend-mode: color !important;
}

.bg-blend-luminosity {
    background-blend-mode: luminosity !important;
}

/* Mix blend mode utilities */
.mix-blend-multiply {
    mix-blend-mode: multiply !important;
}

.mix-blend-screen {
    mix-blend-mode: screen !important;
}

.mix-blend-overlay {
    mix-blend-mode: overlay !important;
}

.mix-blend-darken {
    mix-blend-mode: darken !important;
}

.mix-blend-lighten {
    mix-blend-mode: lighten !important;
}

.mix-blend-color-dodge {
    mix-blend-mode: color-dodge !important;
}

.mix-blend-color-burn {
    mix-blend-mode: color-burn !important;
}

.mix-blend-hard-light {
    mix-blend-mode: hard-light !important;
}

.mix-blend-soft-light {
    mix-blend-mode: soft-light !important;
}

.mix-blend-difference {
    mix-blend-mode: difference !important;
}

.mix-blend-exclusion {
    mix-blend-mode: exclusion !important;
}

.mix-blend-hue {
    mix-blend-mode: hue !important;
}

.mix-blend-saturation {
    mix-blend-mode: saturation !important;
}

.mix-blend-color {
    mix-blend-mode: color !important;
}

.mix-blend-luminosity {
    mix-blend-mode: luminosity !important;
}

/* Isolation utilities */
.isolation-auto {
    isolation: auto !important;
}

.isolation-isolate {
    isolation: isolate !important;
}

/* Backdrop filter utilities */
.backdrop-blur-none {
    backdrop-filter: blur(0) !important;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px) !important;
}

.backdrop-blur {
    backdrop-filter: blur(8px) !important;
}

.backdrop-blur-md {
    backdrop-filter: blur(12px) !important;
}

.backdrop-blur-lg {
    backdrop-filter: blur(16px) !important;
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px) !important;
}

.backdrop-blur-2xl {
    backdrop-filter: blur(40px) !important;
}

.backdrop-blur-3xl {
    backdrop-filter: blur(64px) !important;
}

/* Backdrop brightness utilities */
.backdrop-brightness-0 {
    backdrop-filter: brightness(0) !important;
}

.backdrop-brightness-50 {
    backdrop-filter: brightness(0.5) !important;
}

.backdrop-brightness-75 {
    backdrop-filter: brightness(0.75) !important;
}

.backdrop-brightness-90 {
    backdrop-filter: brightness(0.9) !important;
}

.backdrop-brightness-95 {
    backdrop-filter: brightness(0.95) !important;
}

.backdrop-brightness-100 {
    backdrop-filter: brightness(1) !important;
}

.backdrop-brightness-105 {
    backdrop-filter: brightness(1.05) !important;
}

.backdrop-brightness-110 {
    backdrop-filter: brightness(1.1) !important;
}

.backdrop-brightness-125 {
    backdrop-filter: brightness(1.25) !important;
}

.backdrop-brightness-150 {
    backdrop-filter: brightness(1.5) !important;
}

.backdrop-brightness-200 {
    backdrop-filter: brightness(2) !important;
}

/* Backdrop contrast utilities */
.backdrop-contrast-0 {
    backdrop-filter: contrast(0) !important;
}

.backdrop-contrast-50 {
    backdrop-filter: contrast(0.5) !important;
}

.backdrop-contrast-75 {
    backdrop-filter: contrast(0.75) !important;
}

.backdrop-contrast-100 {
    backdrop-filter: contrast(1) !important;
}

.backdrop-contrast-125 {
    backdrop-filter: contrast(1.25) !important;
}

.backdrop-contrast-150 {
    backdrop-filter: contrast(1.5) !important;
}

.backdrop-contrast-200 {
    backdrop-filter: contrast(2) !important;
}

/* Backdrop grayscale utilities */
.backdrop-grayscale-0 {
    backdrop-filter: grayscale(0) !important;
}

.backdrop-grayscale {
    backdrop-filter: grayscale(1) !important;
}

/* Backdrop hue rotate utilities */
.backdrop-hue-rotate-0 {
    backdrop-filter: hue-rotate(0deg) !important;
}

.backdrop-hue-rotate-15 {
    backdrop-filter: hue-rotate(15deg) !important;
}

.backdrop-hue-rotate-30 {
    backdrop-filter: hue-rotate(30deg) !important;
}

.backdrop-hue-rotate-60 {
    backdrop-filter: hue-rotate(60deg) !important;
}

.backdrop-hue-rotate-90 {
    backdrop-filter: hue-rotate(90deg) !important;
}

.backdrop-hue-rotate-180 {
    backdrop-filter: hue-rotate(180deg) !important;
}

/* Backdrop invert utilities */
.backdrop-invert-0 {
    backdrop-filter: invert(0) !important;
}

.backdrop-invert {
    backdrop-filter: invert(1) !important;
}

/* Backdrop opacity utilities */
.backdrop-opacity-0 {
    backdrop-filter: opacity(0) !important;
}

.backdrop-opacity-5 {
    backdrop-filter: opacity(0.05) !important;
}

.backdrop-opacity-10 {
    backdrop-filter: opacity(0.1) !important;
}

.backdrop-opacity-20 {
    backdrop-filter: opacity(0.2) !important;
}

.backdrop-opacity-25 {
    backdrop-filter: opacity(0.25) !important;
}

.backdrop-opacity-30 {
    backdrop-filter: opacity(0.3) !important;
}

.backdrop-opacity-40 {
    backdrop-filter: opacity(0.4) !important;
}

.backdrop-opacity-50 {
    backdrop-filter: opacity(0.5) !important;
}

.backdrop-opacity-60 {
    backdrop-filter: opacity(0.6) !important;
}

.backdrop-opacity-70 {
    backdrop-filter: opacity(0.7) !important;
}

.backdrop-opacity-75 {
    backdrop-filter: opacity(0.75) !important;
}

.backdrop-opacity-80 {
    backdrop-filter: opacity(0.8) !important;
}

.backdrop-opacity-90 {
    backdrop-filter: opacity(0.9) !important;
}

.backdrop-opacity-95 {
    backdrop-filter: opacity(0.95) !important;
}

.backdrop-opacity-100 {
    backdrop-filter: opacity(1) !important;
}

/* Backdrop saturate utilities */
.backdrop-saturate-0 {
    backdrop-filter: saturate(0) !important;
}

.backdrop-saturate-50 {
    backdrop-filter: saturate(0.5) !important;
}

.backdrop-saturate-100 {
    backdrop-filter: saturate(1) !important;
}

.backdrop-saturate-150 {
    backdrop-filter: saturate(1.5) !important;
}

.backdrop-saturate-200 {
    backdrop-filter: saturate(2) !important;
}

/* Backdrop sepia utilities */
.backdrop-sepia-0 {
    backdrop-filter: sepia(0) !important;
}

.backdrop-sepia {
    backdrop-filter: sepia(1) !important;
}

/* Backdrop drop shadow utilities */
.backdrop-drop-shadow-none {
    backdrop-filter: drop-shadow(0 0 0 transparent) !important;
}

.backdrop-drop-shadow-sm {
    backdrop-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05)) !important;
}

.backdrop-drop-shadow {
    backdrop-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important;
}

.backdrop-drop-shadow-md {
    backdrop-filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important;
}

.backdrop-drop-shadow-lg {
    backdrop-filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important;
}

.backdrop-drop-shadow-xl {
    backdrop-filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important;
}

.backdrop-drop-shadow-2xl {
    backdrop-filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important;
}

/* Backdrop drop shadow color utilities */
.backdrop-drop-shadow-red-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(239, 68, 68, 0.5)) !important;
}

.backdrop-drop-shadow-blue-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(59, 130, 246, 0.5)) !important;
}

.backdrop-drop-shadow-green-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(34, 197, 94, 0.5)) !important;
}

.backdrop-drop-shadow-yellow-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(234, 179, 8, 0.5)) !important;
}

.backdrop-drop-shadow-purple-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(168, 85, 247, 0.5)) !important;
}

.backdrop-drop-shadow-pink-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(236, 72, 153, 0.5)) !important;
}

.backdrop-drop-shadow-indigo-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(99, 102, 241, 0.5)) !important;
}

.backdrop-drop-shadow-orange-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(249, 115, 22, 0.5)) !important;
}

.backdrop-drop-shadow-teal-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(20, 184, 166, 0.5)) !important;
}

.backdrop-drop-shadow-cyan-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(6, 182, 212, 0.5)) !important;
}

.backdrop-drop-shadow-lime-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(132, 204, 22, 0.5)) !important;
}

.backdrop-drop-shadow-emerald-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(16, 185, 129, 0.5)) !important;
}

.backdrop-drop-shadow-amber-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.5)) !important;
}

.backdrop-drop-shadow-rose-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(244, 63, 94, 0.5)) !important;
}

.backdrop-drop-shadow-violet-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(139, 92, 246, 0.5)) !important;
}

.backdrop-drop-shadow-fuchsia-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(217, 70, 239, 0.5)) !important;
}

.backdrop-drop-shadow-sky-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(14, 165, 233, 0.5)) !important;
}

.backdrop-drop-shadow-slate-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(100, 116, 139, 0.5)) !important;
}

.backdrop-drop-shadow-gray-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(107, 114, 128, 0.5)) !important;
}

.backdrop-drop-shadow-zinc-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(113, 113, 122, 0.5)) !important;
}

.backdrop-drop-shadow-neutral-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(115, 115, 115, 0.5)) !important;
}

.backdrop-drop-shadow-stone-500\/50 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(120, 113, 108, 0.5)) !important;
}

.backdrop-drop-shadow-red-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(239, 68, 68, 0.75)) !important;
}

.backdrop-drop-shadow-blue-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(59, 130, 246, 0.75)) !important;
}

.backdrop-drop-shadow-green-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(34, 197, 94, 0.75)) !important;
}

.backdrop-drop-shadow-yellow-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(234, 179, 8, 0.75)) !important;
}

.backdrop-drop-shadow-purple-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(168, 85, 247, 0.75)) !important;
}

.backdrop-drop-shadow-pink-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(236, 72, 153, 0.75)) !important;
}

.backdrop-drop-shadow-indigo-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(99, 102, 241, 0.75)) !important;
}

.backdrop-drop-shadow-orange-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(249, 115, 22, 0.75)) !important;
}

.backdrop-drop-shadow-teal-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(20, 184, 166, 0.75)) !important;
}

.backdrop-drop-shadow-cyan-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(6, 182, 212, 0.75)) !important;
}

.backdrop-drop-shadow-lime-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(132, 204, 22, 0.75)) !important;
}

.backdrop-drop-shadow-emerald-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(16, 185, 129, 0.75)) !important;
}

.backdrop-drop-shadow-amber-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.75)) !important;
}

.backdrop-drop-shadow-rose-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(244, 63, 94, 0.75)) !important;
}

.backdrop-drop-shadow-violet-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(139, 92, 246, 0.75)) !important;
}

.backdrop-drop-shadow-fuchsia-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(217, 70, 239, 0.75)) !important;
}

.backdrop-drop-shadow-sky-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(14, 165, 233, 0.75)) !important;
}

.backdrop-drop-shadow-slate-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(100, 116, 139, 0.75)) !important;
}

.backdrop-drop-shadow-gray-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(107, 114, 128, 0.75)) !important;
}

.backdrop-drop-shadow-zinc-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(113, 113, 122, 0.75)) !important;
}

.backdrop-drop-shadow-neutral-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(115, 115, 115, 0.75)) !important;
}

.backdrop-drop-shadow-stone-500\/75 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(120, 113, 108, 0.75)) !important;
}

/* Backdrop drop shadow color utilities with full opacity */
.backdrop-drop-shadow-red-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(239, 68, 68, 1)) !important;
}

.backdrop-drop-shadow-blue-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(59, 130, 246, 1)) !important;
}

.backdrop-drop-shadow-green-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(34, 197, 94, 1)) !important;
}

.backdrop-drop-shadow-yellow-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(234, 179, 8, 1)) !important;
}

.backdrop-drop-shadow-purple-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(168, 85, 247, 1)) !important;
}

.backdrop-drop-shadow-pink-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(236, 72, 153, 1)) !important;
}

.backdrop-drop-shadow-indigo-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(99, 102, 241, 1)) !important;
}

.backdrop-drop-shadow-orange-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(249, 115, 22, 1)) !important;
}

.backdrop-drop-shadow-teal-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(20, 184, 166, 1)) !important;
}

.backdrop-drop-shadow-cyan-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(6, 182, 212, 1)) !important;
}

.backdrop-drop-shadow-lime-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(132, 204, 22, 1)) !important;
}

.backdrop-drop-shadow-emerald-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(16, 185, 129, 1)) !important;
}

.backdrop-drop-shadow-amber-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 1)) !important;
}

.backdrop-drop-shadow-rose-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(244, 63, 94, 1)) !important;
}

.backdrop-drop-shadow-violet-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(139, 92, 246, 1)) !important;
}

.backdrop-drop-shadow-fuchsia-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(217, 70, 239, 1)) !important;
}

.backdrop-drop-shadow-sky-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(14, 165, 233, 1)) !important;
}

.backdrop-drop-shadow-slate-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(100, 116, 139, 1)) !important;
}

.backdrop-drop-shadow-gray-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(107, 114, 128, 1)) !important;
}

.backdrop-drop-shadow-zinc-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(113, 113, 122, 1)) !important;
}

.backdrop-drop-shadow-neutral-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(115, 115, 115, 1)) !important;
}

.backdrop-drop-shadow-stone-500 {
    backdrop-filter: drop-shadow(0 1px 2px rgba(120, 113, 108, 1)) !important;
}

/* ===== CSS CLASSES CÒN THIẾU CHO BACKGROUND IMAGES VÀ COLORS ===== */

/* Product Info Section Background */
.product-info-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 700px;
    height: auto;
    padding: 70px 0;
    overflow: visible;
}

/* Product Section Background Image */
.product-section-bg-image {
    background-image: url('../images/bg-section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Product Info Box Background */
.product-info-box-bg {
    background-image: url('../images/red-bg-texture.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

/* Website Showcase Styles */
.website-showcase-bg {
    background-image: url('images/red-texture-bg.png');
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* History Section Background */
.history-section-bg {
    background-color: #f8f9fa;
}

/* Capability Section Background */
.capability-section-bg {
    background-image: url('../images/bg-section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Capability Section Overlay */
.capability-section-overlay {
    background: rgba(0,0,0,0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Capability Section Container */
.capability-section-container {
    position: relative;
    z-index: 2;
}

/* Capability Section Title */
.capability-section-title {
    color: #ffffff;
}

/* Capability Icon Color */
.capability-icon-color {
    color: #FFD700;
}

/* Contact Section Title */
.contact-section-title {
    color: #cc0000;
}

/* Contact Info Title */
.contact-info-title {
    color: #cc0000;
}

/* Contact Item Icon */
.contact-item-icon {
    color: #cc0000;
}

/* Contact Item Link */
.contact-item-link {
    color: #cc0000;
}

/* History Section Title */
.history-section-title {
    color: #cc0000;
}

/* Timeline Year */
.timeline-year {
    color: #cc0000;
}

/* Website Showcase Container */
.website-showcase-container {
    position: relative;
    z-index: 2;
}

/* Website Showcase Title Box */
.website-showcase-title-box {
    position: absolute;
    top: -20px;
    left: -40px;
    background: linear-gradient(135deg, #cc0000, #a00000);
    padding: 15px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

/* Website Showcase Title Text */
.website-showcase-title-text {
    transform: skewX(20deg);
    font-weight: 600;
    color: white;
    margin: 0;
    font-size: 1.2rem;
}

/* Website Showcase Title Link */
.website-showcase-title-link {
    color: white;
    text-decoration: none;
}

.website-showcase-title-link:hover {
    color: #FFD700;
}

/* Website Showcase Spacer */
.website-showcase-spacer {
    height: 60px;
}

/* Website Showcase Image */
.website-showcase-image {
    border: 8px solid white;
    max-width: 90%;
}

/* Footer Logo */
.footer-logo {
    max-height: 200px;
}

/* Social Icon Size */
.social-icon-size {
    width: 36px;
    height: 36px;
}

/* Footer Links Spacing */
.footer-links-spacing {
    margin-top: -30px !important;
}

/* Hero Background Layer */
.hero-bg-layer {
    top: 0;
    left: 0;
    z-index: 1;
}

/* Hero Overlay Layer */
.hero-overlay-layer {
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

/* Hero Content Layer */
.hero-content-layer {
    z-index: 20;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Hero Text Wrapper */
.hero-text-wrapper {
    margin-top: 0;
    margin-left: 30px;
    position: relative;
    z-index: 21;
}

/* Capability Overlay Layer */
.capability-overlay-layer {
    top: 0;
    left: 0;
}

/* Additional Background Colors */
.bg-red {
    background-color: #cc0000 !important;
}

.bg-gold {
    background-color: #FFD700 !important;
}

.bg-orange {
    background-color: #FFA500 !important;
}

.bg-dark-red {
    background-color: #a00000 !important;
}

.bg-light-gray {
    background-color: #f8f9fa !important;
}

.bg-white-transparent {
    background-color: rgba(255, 255, 255, 0.85) !important;
}

.bg-black-transparent {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

/* Additional Text Colors */
.text-gold {
    color: #FFD700 !important;
}

.text-orange {
    color: #FFA500 !important;
}

.text-dark-red {
    color: #a00000 !important;
}

/* Gradient Backgrounds */
.bg-gradient-red {
    background: linear-gradient(135deg, #cc0000, #a00000) !important;
}

.bg-gradient-gold {
    background: linear-gradient(to right, #FFD700, #FFA500) !important;
}

.bg-gradient-overlay {
    background: linear-gradient(0deg, rgba(76, 0, 0, 0.9) 0%, rgba(101, 48, 48, 0.7) 30%, rgba(119, 82, 82, 0.4) 60%, rgba(119, 82, 82, 0) 80%) !important;
}

/* Border Colors */
.border-red {
    border-color: #cc0000 !important;
}

.border-gold {
    border-color: #FFD700 !important;
}

.border-orange {
    border-color: #FFA500 !important;
}

/* Shadow Colors */
.shadow-red {
    box-shadow: 0 4px 8px rgba(204, 0, 0, 0.3) !important;
}

.shadow-gold {
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3) !important;
}

/* Hover Effects */
.hover-red:hover {
    color: #cc0000 !important;
}

.hover-gold:hover {
    color: #FFD700 !important;
}

.hover-bg-red:hover {
    background-color: #cc0000 !important;
}

.hover-bg-gold:hover {
    background-color: #FFD700 !important;
}

/* Focus States */
.focus-red:focus {
    border-color: #cc0000 !important;
    box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.25) !important;
}

.focus-gold:focus {
    border-color: #FFD700 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25) !important;
}

/* Active States */
.active-red.active {
    background-color: #cc0000 !important;
    border-color: #cc0000 !important;
}

.active-gold.active {
    background-color: #FFD700 !important;
    border-color: #FFD700 !important;
}

/* Disabled States */
.disabled-red:disabled {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    border-color: #dee2e6 !important;
}

.disabled-gold:disabled {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    border-color: #dee2e6 !important;
}

/* Loading States */
.loading-red {
    background: linear-gradient(90deg, #f8f9fa 25%, #cc0000 50%, #f8f9fa 75%) !important;
    background-size: 200% 100% !important;
    animation: loading 1.5s infinite !important;
}

.loading-gold {
    background: linear-gradient(90deg, #f8f9fa 25%, #FFD700 50%, #f8f9fa 75%) !important;
    background-size: 200% 100% !important;
    animation: loading 1.5s infinite !important;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Pulse Animations */
.pulse-red {
    animation: pulse-red 2s infinite;
}

.pulse-gold {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(204, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(204, 0, 0, 0);
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Glow Effects */
.glow-red {
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.5);
}

.glow-gold {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Text Glow */
.text-glow-red {
    text-shadow: 0 0 10px rgba(204, 0, 0, 0.5);
}

.text-glow-gold {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Border Glow */
.border-glow-red {
    border: 2px solid #cc0000;
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.5);
}

.border-glow-gold {
    border: 2px solid #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Gradient Text */
.text-gradient-red {
    background: linear-gradient(45deg, #cc0000, #a00000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Striped Backgrounds */
.bg-striped-red {
    background: repeating-linear-gradient(
        45deg,
        #cc0000,
        #cc0000 10px,
        #a00000 10px,
        #a00000 20px
    );
}

.bg-striped-gold {
    background: repeating-linear-gradient(
        45deg,
        #FFD700,
        #FFD700 10px,
        #FFA500 10px,
        #FFA500 20px
    );
}

/* Checkered Backgrounds */
.bg-checkered-red {
    background-image: 
        linear-gradient(45deg, #cc0000 25%, transparent 25%),
        linear-gradient(-45deg, #cc0000 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #cc0000 75%),
        linear-gradient(-45deg, transparent 75%, #cc0000 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.bg-checkered-gold {
    background-image: 
        linear-gradient(45deg, #FFD700 25%, transparent 25%),
        linear-gradient(-45deg, #FFD700 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #FFD700 75%),
        linear-gradient(-45deg, transparent 75%, #FFD700 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Polka Dot Backgrounds */
.bg-polka-red {
    background-image: radial-gradient(circle, #cc0000 2px, transparent 2px);
    background-size: 20px 20px;
}

.bg-polka-gold {
    background-image: radial-gradient(circle, #FFD700 2px, transparent 2px);
    background-size: 20px 20px;
}

/* Diagonal Stripes */
.bg-diagonal-red {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        #cc0000 10px,
        #cc0000 20px
    );
}

.bg-diagonal-gold {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        #FFD700 10px,
        #FFD700 20px
    );
}

/* Zigzag Backgrounds */
.bg-zigzag-red {
    background: 
        linear-gradient(45deg, transparent 33.333%, #cc0000 33.333%, #cc0000 66.667%, transparent 66.667%),
        linear-gradient(-45deg, transparent 33.333%, #cc0000 33.333%, #cc0000 66.667%, transparent 66.667%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px;
}

.bg-zigzag-gold {
    background: 
        linear-gradient(45deg, transparent 33.333%, #FFD700 33.333%, #FFD700 66.667%, transparent 66.667%),
        linear-gradient(-45deg, transparent 33.333%, #FFD700 33.333%, #FFD700 66.667%, transparent 66.667%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px;
}

/* Herringbone Backgrounds */
.bg-herringbone-red {
    background: 
        linear-gradient(45deg, #cc0000 25%, transparent 25%) -10px 0,
        linear-gradient(45deg, transparent 75%, #cc0000 75%) -10px 0,
        linear-gradient(45deg, #cc0000 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #cc0000 75%);
    background-size: 20px 20px;
}

.bg-herringbone-gold {
    background: 
        linear-gradient(45deg, #FFD700 25%, transparent 25%) -10px 0,
        linear-gradient(45deg, transparent 75%, #FFD700 75%) -10px 0,
        linear-gradient(45deg, #FFD700 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #FFD700 75%);
    background-size: 20px 20px;
}

/* Chevron Backgrounds */
.bg-chevron-red {
    background: 
        linear-gradient(45deg, transparent 50%, #cc0000 50%),
        linear-gradient(-45deg, transparent 50%, #cc0000 50%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px;
}

.bg-chevron-gold {
    background: 
        linear-gradient(45deg, transparent 50%, #FFD700 50%),
        linear-gradient(-45deg, transparent 50%, #FFD700 50%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px;
}

/* Diamond Backgrounds */
.bg-diamond-red {
    background: 
        linear-gradient(45deg, #cc0000 25%, transparent 25%),
        linear-gradient(-45deg, #cc0000 25%, transparent 25%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px;
}

.bg-diamond-gold {
    background: 
        linear-gradient(45deg, #FFD700 25%, transparent 25%),
        linear-gradient(-45deg, #FFD700 25%, transparent 25%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px;
}

/* Hexagon Backgrounds */
.bg-hexagon-red {
    background: 
        linear-gradient(60deg, #cc0000 25%, transparent 25.5%, transparent 75%, #cc0000 75%, #cc0000),
        linear-gradient(120deg, #cc0000 25%, transparent 25.5%, transparent 75%, #cc0000 75%, #cc0000);
    background-size: 20px 20px;
}

.bg-hexagon-gold {
    background: 
        linear-gradient(60deg, #FFD700 25%, transparent 25.5%, transparent 75%, #FFD700 75%, #FFD700),
        linear-gradient(120deg, #FFD700 25%, transparent 25.5%, transparent 75%, #FFD700 75%, #FFD700);
    background-size: 20px 20px;
}

/* Triangle Backgrounds */
.bg-triangle-red {
    background: 
        linear-gradient(45deg, #cc0000 25%, transparent 25%),
        linear-gradient(-45deg, #cc0000 25%, transparent 25%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px;
}

.bg-triangle-gold {
    background: 
        linear-gradient(45deg, #FFD700 25%, transparent 25%),
        linear-gradient(-45deg, #FFD700 25%, transparent 25%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px;
}

/* Circle Backgrounds */
.bg-circle-red {
    background-image: radial-gradient(circle, #cc0000 2px, transparent 2px);
    background-size: 20px 20px;
}

.bg-circle-gold {
    background-image: radial-gradient(circle, #FFD700 2px, transparent 2px);
    background-size: 20px 20px;
}

/* Square Backgrounds */
.bg-square-red {
    background-image: 
        linear-gradient(45deg, #cc0000 25%, transparent 25%),
        linear-gradient(-45deg, #cc0000 25%, transparent 25%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px;
}

.bg-square-gold {
    background-image: 
        linear-gradient(45deg, #FFD700 25%, transparent 25%),
        linear-gradient(-45deg, #FFD700 25%, transparent 25%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px;
}

/* Submenu Fix - Đảm bảo submenu hiển thị đẹp */
.desktop-nav .submenu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #ffffff !important;
    min-width: 250px !important;
    max-width: 300px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    padding: 10px 0 !important;
    z-index: 1000 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
}

.desktop-nav .has-submenu:hover .submenu,
.desktop-nav li.has-submenu:hover .submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.desktop-nav .submenu ul {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.desktop-nav .submenu li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.desktop-nav .submenu a {
    display: block !important;
    padding: 14px 24px !important;
    color: #222 !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.desktop-nav .submenu a:hover {
    background: #f8f9fa !important;
    color: #cc0000 !important;
    padding-left: 25px !important;
}

.desktop-nav .submenu a:last-child {
    border-bottom: none !important;
}

/* Thêm CSS với độ ưu tiên cao hơn để ghi đè header.css */
.custom-header .desktop-nav .submenu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #ffffff !important;
    min-width: 250px !important;
    max-width: 300px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    padding: 10px 0 !important;
    z-index: 1000 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
}

.custom-header .desktop-nav .has-submenu:hover .submenu,
.custom-header .desktop-nav li.has-submenu:hover .submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.custom-header .desktop-nav .submenu ul {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.custom-header .desktop-nav .submenu li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.custom-header .desktop-nav .submenu a {
    display: block !important;
    padding: 14px 24px !important;
    color: #222 !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.custom-header .desktop-nav .submenu a:hover {
    background: #f8f9fa !important;
    color: #cc0000 !important;
    padding-left: 25px !important;
}

.custom-header .desktop-nav .submenu a:last-child {
    border-bottom: none !important;
}

/* Import base styles */
@import url('xe-may.css');

/* Hồ sơ năng lực section */
.capacity-section {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
}

.capacity-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.capacity-decoration {
    width: 80px;
    height: 4px;
    background: #ffffff;
    margin: 0 auto;
}

.capacity-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.capacity-icon {
    font-size: 3rem;
    color: #ffffff;
}

.capacity-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.capacity-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.capacity-description {
    opacity: 0.8;
}

.capacity-divider {
    width: 100px;
    height: 2px;
    background: #ffffff;
    margin: 0 auto 2rem;
}

.capacity-services-title {
    font-size: 1.3rem;
    opacity: 0.9;
}





/* Contact section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg-circle-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(204, 0, 0, 0.05);
    border-radius: 50%;
}

.contact-bg-circle-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(204, 0, 0, 0.03);
    border-radius: 50%;
}

.contact-badge {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    padding: 8px 20px;
    border-radius: 25px;
}

.contact-badge-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #cc0000;
    position: relative;
}

.contact-decoration {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #cc0000 0%, #990000 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.contact-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(204, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.1) 0%, rgba(153, 0, 0, 0.1) 100%);
    border-radius: 0 20px 0 60px;
}

.contact-header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-header-text {
    color: #cc0000;
    font-size: 1.4rem;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon-text {
    font-size: 1rem;
    color: white;
}

.contact-label {
    color: #333;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: #666;
    font-size: 1.05rem;
    font-weight: 500;
}

.contact-link {
    color: #cc0000;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #990000;
}

/* Service section */
.service-header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.service-header-text {
    color: #cc0000;
    font-size: 1.2rem;
}

.service-item {
    background: rgba(204, 0, 0, 0.05);
    border-radius: 10px;
    border-left: 4px solid #cc0000;
}

.service-item-icon {
    color: #cc0000;
    font-size: 1.1rem;
}

.service-item-text {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    border-radius: 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-bg-circle-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-bg-circle-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

/* Submenu fixes */
.desktop-nav .submenu {
    display: none !important;
}

.custom-header .desktop-nav .submenu {
    display: none !important;
}

.desktop-nav .nav-item:hover .submenu {
    display: block !important;
}

.custom-header .desktop-nav .nav-item:hover .submenu {
    display: block !important;
}

@media (max-width: 991px) {
    .submenu {
        display: none;
    }
}

/* Contact Section Styles */
.contact-section-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg-decoration-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(204, 0, 0, 0.05);
    border-radius: 50%;
}

.contact-bg-decoration-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(204, 0, 0, 0.03);
    border-radius: 50%;
}

.contact-badge {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
}

.contact-badge-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #cc0000;
    position: relative;
}

.contact-title-decoration {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #cc0000 0%, #990000 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.contact-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(204, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    height: 100%;
}

.contact-card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.1) 0%, rgba(153, 0, 0, 0.1) 100%);
    border-radius: 0 20px 0 60px;
}

.contact-header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-header-text {
    color: #cc0000;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.contact-item-icon i {
    font-size: 1rem;
    color: white;
}

.contact-label {
    color: #333;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.contact-value {
    color: #666;
    font-size: 1.05rem;
    font-weight: 500;
}

.contact-link {
    color: #cc0000;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #990000;
}

.service-item {
    background: rgba(204, 0, 0, 0.05);
    border-radius: 10px;
    border-left: 4px solid #cc0000;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.service-item-icon {
    color: #cc0000;
    font-size: 1.1rem;
    margin-right: 0.75rem;
}

.service-item-text {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.cta-section {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    border-radius: 25px;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 3rem;
}

.cta-bg-decoration-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-bg-decoration-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.cta-btn-primary {
    border-radius: 30px;
    padding: 15px 35px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
}

.cta-btn-secondary {
    border-radius: 30px;
    padding: 15px 35px;
    font-weight: 600;
    border-width: 2px;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    transform: translateY(-3px);
}

.hours-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.hours-item-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.hours-item-icon i {
    font-size: 1rem;
    color: white;
}

.hours-label {
    color: #333;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.hours-value {
    color: #666;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Website Showcase Section */
.website-showcase-bg {
    background-image: url('../images/red-texture-bg.png');
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* Capacity Section Styles */
.capacity-section-bg {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
}
.capacity-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.capacity-title-decoration {
    width: 80px;
    height: 4px;
    background: #ffffff;
    margin: 0 auto;
}
.capacity-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}
.capacity-card:hover {
    transform: translateY(-5px);
}
.capacity-icon {
    font-size: 3rem;
    color: #ffffff;
}
.capacity-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.capacity-label {
    font-size: 1.1rem;
    opacity: 0.9;
}
.capacity-description {
    opacity: 0.8;
}
.capacity-service-title {
    font-size: 1.3rem;
    opacity: 0.9;
}
.capacity-service-icon {
    color: #ffffff;
}
.capacity-service-text {
    font-size: 0.95rem;
}
