:root {
    --primary-color: #2C5AA0;
    --secondary-color: #f39c12;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --yellow: #FFD700;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --light-blue: #f0f7ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header */
.top-header {
    background: #f8f8f8;
    border-bottom: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-light);
}

.top-header span {
    display: inline-block;
    margin-right: 20px;
}

/* Main Header */
.main-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    font-size: 32px;
}

/* Search Container */
.search-container {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 8px 20px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 0;
    font-size: 14px;
}

.search-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 18px;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 30px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s;
}

.icon-item:hover {
    color: var(--primary-color);
}

.icon-item i {
    font-size: 20px;
}

.cart-count {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    position: absolute;
    margin-top: -25px;
    margin-left: 10px;
}

/* ======================== NAVBAR STYLES ======================== */

/* Navbar Top Row Container */
.navbar-top {
    padding: 8px 0 0 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1050;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo - Left */
.navbar-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Search - Center */
.navbar-search {
    flex: 1 1 auto;
    min-width: 250px;
}

.search-form {
    width: 100%;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 25px;
    padding: 10px 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.search-wrapper:focus-within {
    border-color: #2C5AA0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.15);
}

.search-wrapper i {
    color: #000;
    font-size: 16px;
    margin-right: 10px;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #333;
    padding: 0;
}

.search-input::placeholder {
    color: #000;
    font-size: 14px;
}

/* Actions - Right (Login & Cart) */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.action-btn i {
    font-size: 16px;
}

.login-btn {
    color: #333;
    border: 1px solid #ddd;
    background-color: #fff;
}

.login-btn:hover {
    color: #2C5AA0;
    border-color: #2C5AA0;
    background-color: #f0f7ff;
}

.cart-btn {
    color: #fff;
    background-color: #2C5AA0;
}

.cart-btn:hover {
    color: #fff;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

.mobile-toggle:hover {
    background-color: #f0f0f0;
    color: #2C5AA0;
}

/* Navigation Menu Wrapper - Below top row */
.navbar-menu-wrapper {
    background-color: #fff;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: center;
}

.navbar-menu {
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
}



.navbar-menu::-webkit-scrollbar {
    display: none;
}

/* Fix for desktop dropdowns being clipped */
@media (min-width: 992px) {
    .navbar-menu {
        overflow: visible;
        justify-content: center;
    }
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    /* Prevent internal wrapping */
}

.menu-link:hover {
    color: #2C5AA0;
    border-bottom-color: #2C5AA0;
    background-color: #f8f9fa;
}

.menu-link i {
    font-size: 14px;
    display: none;
}

/* ===== DROPDOWN MENU STYLES ===== */
.menu-item-group {
    position: relative;
    display: inline-block;
}

.menu-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 320px;
    /* Increased to accommodate submenus */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    padding: 8px 0;
}

.menu-item-group:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== NESTED DROPDOWN STYLES (3rd Level) ===== */
.submenu-group {
    position: relative;
    width: 100%;
}

.submenu-item {
    display: flex;
    align-items: center;
    /* justify-content: space-between; - Removed to fix alignment */
    gap: 12px;
    padding: 12px 18px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    cursor: pointer;
}

.submenu-item i.fa-angle-right {
    font-size: 12px;
    color: #999;
    margin-left: auto;
    /* Push to right */
}

/* Nested Dropdown Container */
.submenu-dropdown {
    position: absolute;
    top: -5px;
    /* Align slightly higher */
    left: 100%;
    /* Show to the right */
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    padding: 8px 0;
    border-left: 1px solid #f0f0f0;
}

.submenu-group:hover .submenu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.product-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    transition: all 0.2s;
}

.product-item:hover {
    background-color: #f0f7ff;
    color: #2C5AA0;
    padding-left: 24px;
}

.product-item i {
    display: none;
}



/* Original submenu styles updates */
.submenu-item:first-child {
    padding-top: 14px;
}

.submenu-item:last-child {
    padding-bottom: 14px;
}

.submenu-item i:not(.fa-angle-right) {
    display: none;
}

.submenu-item>i:first-child {
    color: #2C5AA0;
    font-size: 14px;
    min-width: 16px;
    text-align: center;
}

.submenu-item:hover {
    background-color: #f0f7ff;
    color: #2C5AA0;
    padding-left: 24px;
}

.submenu-item:hover>i:first-child {
    color: #1a4d7f;
}

/* Mobile Menu Dropdown Styles */
.mobile-menu-item {
    position: relative;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-link:hover {
    background-color: #f0f7ff;
    color: #2C5AA0;
}

.mobile-menu-link i:first-child {
    color: #2C5AA0;
    margin-right: auto;
}

.mobile-menu-link i:last-child {
    font-size: 12px;
    color: #999;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-link.active i:last-child {
    transform: rotate(-180deg);
}

.mobile-menu-dropdown {
    max-height: 0;
    overflow: hidden;
    background-color: #f8f9fa;
    transition: max-height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-dropdown.show {
    max-height: 1000px;
    /* Increased to accommodate nested items */
}

.mobile-submenu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px 10px 50px;
    text-decoration: none;
    color: #555;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.mobile-submenu-item.active i:last-child {
    transform: rotate(-180deg);
    transition: transform 0.3s;
}

.mobile-submenu-item i {
    color: #2C5AA0;
    font-size: 12px;
    min-width: 14px;
    text-align: center;
}

.mobile-submenu-item:hover {
    background-color: #e8f0ff;
    color: #2C5AA0;
    padding-left: 56px;
}

.mobile-product-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 70px;
    /* More indentation */
    text-decoration: none;
    color: #666;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.mobile-product-item:hover {
    background-color: #f0f7ff;
    color: #2C5AA0;
}

/* Mobile Menu Overlay */
.navbar-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    padding-top: 0;
}

.navbar-mobile-menu.show {
    display: block;
}

.navbar-mobile-menu .navbar-menu {
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.navbar-mobile-menu .menu-link {
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    border-bottom-color: #e9ecef;
}

.navbar-mobile-menu .menu-link:hover {
    background-color: #f8f9fa;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .navbar-container {
        gap: 10px;
        padding: 0 12px;
    }

    .navbar-search {
        min-width: 200px;
    }

    .search-wrapper {
        padding: 8px 14px;
    }

    .search-input {
        font-size: 13px;
    }

    .search-input::placeholder {
        font-size: 12px;
    }

    .navbar-actions {
        gap: 8px;
        display: flex;
    }

    .action-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .action-btn i {
        font-size: 14px;
    }

    .btn-text {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hide menu on mobile by default */
    .navbar-menu-wrapper {
        display: none;
    }

    /* Mobile menu overlay */
    .navbar-mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 999;
        overflow-y: auto;
    }

    .navbar-mobile-menu.show {
        display: block;
    }

    .navbar-mobile-menu .navbar-container {
        padding: 0;
    }

    .navbar-mobile-menu .navbar-menu {
        flex-direction: column;
        gap: 0;
    }

    .navbar-mobile-menu .menu-link {
        padding: 16px 20px;
        border-bottom: 1px solid #e9ecef;
        border-bottom-color: #e9ecef;
    }

    .navbar-mobile-menu .menu-link:hover {
        background-color: #f8f9fa;
    }
}

@media (max-width: 768px) {
    .navbar-top {
        padding: 8px 0;
    }

    .navbar-container {
        gap: 8px;
        padding: 0 10px;
    }

    .logo-img {
        height: 40px;
    }

    .navbar-search {
        min-width: 150px;
    }

    .search-wrapper {
        padding: 6px 12px;
    }

    .search-wrapper i {
        font-size: 14px;
        margin-right: 8px;
    }

    .search-input {
        font-size: 12px;
    }

    .action-btn {
        padding: 6px 8px;
    }
}

@media (max-width: 576px) {
    .navbar-container {
        gap: 6px;
        padding: 0 8px;
    }

    .logo-img {
        height: 36px;
    }

    .navbar-search {
        min-width: 120px;
    }

    .search-wrapper {
        padding: 6px 10px;
    }

    .search-wrapper i {
        font-size: 12px;
        margin-right: 6px;
    }

    .search-input {
        font-size: 11px;
    }

    .search-input::placeholder {
        font-size: 11px;
    }

    .action-btn {
        padding: 4px 6px;
        font-size: 11px;
    }

    .action-btn i {
        font-size: 12px;
    }

    .mobile-toggle {
        padding: 6px 8px;
        font-size: 18px;
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    .mobile-toggle {
        display: none !important;
    }

    .navbar-mobile-menu {
        display: none !important;
    }

    .navbar-menu-wrapper {
        display: block !important;
    }

    .navbar-search {
        flex: 1 1 auto;
    }
}

/* Hero Section */

.hero-section {
    width: 100%;
    padding: 0;
}

.hero-carousel {
    border-radius: 16px;
    overflow: hidden;
    /* Box shadow is moved to class in blade file but failsafe here */
}

.hero-slide {
    position: relative;
    min-height: 400px;
    /* Reduced from 500px for compact feel */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: transform 0.6s ease;
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 250px;
        border-radius: 12px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.85) 0%, rgba(45, 90, 61, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 40px;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-highlight {
    color: #FFD700;
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.price-label {
    background: #FFD700;
    color: black;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
}

.hero-btn {
    background: linear-gradient(135deg, #FF6B35, #ff8c5a);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Carousel Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    color: #000;
}

.hero-carousel .carousel-control-prev {
    left: 20px;
}

.hero-carousel .carousel-control-next {
    right: 20px;
}

/* Modern Stats Section */
.stats-section-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f7 100%);
    padding: 10px 0;
    margin: 10px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-card-modern {
    background: white;
    padding: 15px 10px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid #2C5AA0;
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2C5AA0, #1e4a8a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.stat-label {
    font-size: 15px;
    color: #666;
    margin: 8px 0 0 0;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    background: #f0f0f0;
    padding: 40px 0;
    margin: 30px 0;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0;
}

.stat-card p {
    color: #fff;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.view-all {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.view-all:hover {
    gap: 10px;
}

/* Brands Section - Modern Product Carousel */
.brands-section {
    padding: 50px 0;
    background: #ffffff;
}

.section-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header-top h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.view-all-link {
    color: #2C5AA0;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all-link:hover {
    gap: 10px;
    color: #1e4a8a;
}

.products-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 5px;
    padding-top: 15px;
}

.products-carousel-wrapper::-webkit-scrollbar {
    height: 6px;
}

.products-carousel-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.products-carousel-wrapper::-webkit-scrollbar-thumb {
    background: #2C5AA0;
    border-radius: 10px;
}

.products-carousel-wrapper::-webkit-scrollbar-thumb:hover {
    background: #1e4a8a;
}

.products-carousel {
    display: flex;
    gap: 20px;
    min-width: 100%;
}

.product-carousel-item {
    flex: 0 0 280px;
    min-width: 280px;
}

.product-card-modern {
    background: white;
    border: 1px solid rgba(229, 231, 235, 0.5);
    /* Tailwind gray-200 */
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.product-card-modern:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #2C5AA0;
    transform: translateY(-4px);
}

.product-image-wrapper {
    position: relative;
    background: #f8f9fa;
    height: 220px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: 1px solid #ddd;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wishlist-btn:hover {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
    transform: scale(1.1);
}

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
    min-height: 32px;
}

.product-description {
    font-size: 12px;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 12px;
}

.product-rating i {
    color: #FFB800;
    font-size: 12px;
}

.rating-number {
    color: #666;
    font-weight: 500;
}

.product-price-section {
    margin-bottom: 12px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.price-current {
    font-size: 16px;
    font-weight: 700;
    color: #FF6B35;
}

.price-original {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    display: inline-block;
    background: #e8f4f8;
    color: #2C5AA0;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.product-actions {
    margin-bottom: 12px;
}

.btn-add-options {
    width: 100%;
    background: #2C5AA0;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-add-options:hover {
    background: #1e4a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(44, 90, 160, 0.3);
}

.options-count {
    font-size: 11px;
    opacity: 0.9;
}

.similar-products-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    color: #2C5AA0;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
    transition: all 0.3s;
    margin-top: auto;
}

.similar-products-link:hover {
    color: #FF6B35;
    gap: 8px;
}

.similar-products-link i {
    font-size: 10px;
}

/* Modern Stats Section */
.stats-section-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f7 100%);
    padding: 20px 0;
    margin: 20px 0;
}

/* ... (skipping unchanged parts) ... */

/* Modern Stats Section */
.stats-section-modern {
    background: transparent;
    /* Cleaner look */
    padding: 30px 0;
    margin: 20px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Responsive Grid */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        gap: 16px;
    }
}

.stat-card-modern {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* Tailwind shadow-md */
    border: 1px solid rgba(229, 231, 235, 0.5);
    /* Tailwind gray-200 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    height: 100%;
}

.stat-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* Tailwind shadow-lg */
    border-color: #2C5AA0;
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    background: #eff6ff;
    /* Tailwind blue-50 */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C5AA0;
    font-size: 24px;
    transition: all 0.3s;
}

.stat-card-modern:hover .stat-icon-wrapper {
    background: #2C5AA0;
    color: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    /* Tailwind gray-900 */
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    /* Tailwind gray-500 */
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.025em;
}


/* Categories/Brands Section Styling */
.categories-section {
    padding: 40px 0;
}

.category-card,
.brand-card {
    background: white;
    border: 1px solid #f3f4f6;
    /* Tailwind gray-100 */
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.brand-card {
    padding: 20px;
    aspect-ratio: 1/1;
    /* Square for brands */
}

.category-card:hover,
.brand-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
    border-color: #e5e7eb;
}

.category-card img,
.brand-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.category-card:hover img,
.brand-card:hover img {
    transform: scale(1.05);
}

.category-card p {
    margin-top: 10px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

/* Featured Categories - Collage Style */
.featured-categories {
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.featured-collage {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    grid-auto-rows: 240px;
}

@media (max-width: 991px) {
    .featured-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .featured-lg,
    .featured-md,
    .featured-sm {
        grid-column: span 1;
        grid-row: span 1;
    }

    .featured-lg {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 576px) {
    .featured-collage {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .featured-item {
        height: 200px;
        width: 100%;
    }
}

.featured-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.featured-lg {
    grid-column: span 3;
    grid-row: span 2;
}

.featured-md {
    grid-column: span 3;
    grid-row: span 1;
}

.featured-sm {
    grid-column: span 3;
    grid-row: span 1;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.featured-item:hover img {
    transform: scale(1.08) rotate(0.5deg);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: white;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.overlay-content {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-item:hover .featured-overlay {
    opacity: 1;
}

.featured-item:hover .overlay-content {
    transform: translateY(0);
}

.featured-overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.featured-overlay p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.95;
    line-height: 1.4;
}

.btn-shop {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    width: fit-content;
}

.btn-shop:hover {
    opacity: 0.9;
}

/* Hot Selling Section */
.hot-selling-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.product-card-enhanced {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-enhanced:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: #2C5AA0;
    transform: translateY(-8px);
}

.product-image-enhanced {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-enhanced img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-enhanced:hover .product-image-enhanced img {
    transform: scale(1.08);
}

.badge-sale,
.badge-new {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.badge-sale {
    background: linear-gradient(135deg, #FF6B35, #ff8c5a);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #4CAF50, #66bb6a);
    color: white;
}

.wishlist-btn-enhanced {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    border: 1px solid #ddd;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.wishlist-btn-enhanced:hover {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
    transform: scale(1.12);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.product-content {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title-enhanced {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    line-height: 1.4;
    min-height: 32px;
}

.product-brand-enhanced {
    font-size: 12px;
    color: #999;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.product-rating-enhanced {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
    font-size: 12px;
}

.product-rating-enhanced i {
    color: #FFB800;
    font-size: 11px;
}

.rating-count {
    color: #999;
    font-size: 11px;
    margin-left: 3px;
}

.product-price-enhanced {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.price-current-enhanced {
    font-size: 18px;
    font-weight: 700;
    color: #FF6B35;
}

.price-original-enhanced {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.btn-add-to-cart {
    background: linear-gradient(135deg, #2C5AA0, #1e4a8a);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

.btn-add-to-cart:hover {
    background: linear-gradient(135deg, #1e4a8a, #143a6b);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

.btn-add-to-cart i {
    font-size: 12px;
}

/* Promo Banner */
/* Dental Community Section */
.dental-community-section {
    padding: 60px 0;
    background: white;
}

.community-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: left;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    grid-auto-rows: 300px;
}

.community-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.community-card:hover .card-overlay {
    opacity: 0.4;
}

.community-card:hover .card-content {
    opacity: 1;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.community-card:hover .card-image {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    transition: opacity 0.4s;
    opacity: 0.6;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    z-index: 2;
    opacity: 0.9;
    transition: opacity 0.4s;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.title-highlight {
    color: #FFD700;
    display: block;
}

.card-btn {
    background: white;
    color: #1a1a1a;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Grid Layout Variations */
.blog-card {
    grid-column: span 2;
    grid-row: span 1;
}

.shorts-card {
    grid-column: span 2;
    grid-row: span 1;
}

.magazines-card {
    grid-column: span 2;
    grid-row: span 2;
}

.guide-card {
    grid-column: span 2;
    grid-row: span 1;
}

.events-card {
    grid-column: span 2;
    grid-row: span 1;
}

/* Specific Card Color Overlays */
.blog-card .card-overlay {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.7) 0%, rgba(40, 50, 80, 0.5) 100%);
}

.shorts-card .card-overlay {
    background: linear-gradient(135deg, rgba(139, 35, 35, 0.7) 0%, rgba(178, 60, 60, 0.5) 100%);
}

.magazines-card .card-overlay {
    background: linear-gradient(135deg, rgba(25, 45, 120, 0.7) 0%, rgba(44, 90, 160, 0.5) 100%);
}

.guide-card .card-overlay {
    background: linear-gradient(135deg, rgba(101, 67, 33, 0.7) 0%, rgba(139, 90, 43, 0.5) 100%);
}

.events-card .card-overlay {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.8) 0%, rgba(0, 150, 200, 0.4) 100%);
}

/* ===== LEARNING CENTER SECTION ===== */
.learning-center-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: #2C5AA0;
    font-size: 40px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.course-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.course-image {
    position: relative;
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.course-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #2C5AA0 0%, #1a4d7f 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.course-badge.new {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
}

.course-badge.hot {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 90, 160, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.course-card:hover .course-overlay {
    opacity: 1;
}

.btn-view-course {
    background: white;
    color: #2C5AA0;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 14px;
}

.btn-view-course:hover {
    background: #FFD700;
    transform: scale(1.05);
}

.course-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 50px;
}

.course-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
    flex-grow: 1;
    line-height: 1.5;
}

.course-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    padding-bottom: 18px;
    border-bottom: 1px solid #e0e0e0;
}

.course-duration,
.course-level {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

.course-duration i,
.course-level i {
    color: #2C5AA0;
}

.course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.course-price {
    font-size: 22px;
    font-weight: 700;
    color: #2C5AA0;
}

.btn-enroll {
    background: linear-gradient(135deg, #2C5AA0 0%, #1a4d7f 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 13px;
    white-space: nowrap;
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

.btn-enroll:active {
    transform: translateY(0);
}

.btn-view-all {
    background: linear-gradient(135deg, #2C5AA0 0%, #1a4d7f 100%);
    color: white;
    border: none;
    padding: 15px 45px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(44, 90, 160, 0.3);
}

.btn-view-all i {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Responsive - Learning Center */
@media (max-width: 991px) {
    .learning-center-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .learning-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .course-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .learning-center-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 26px;
        gap: 10px;
    }

    .section-title i {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .learning-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-card {
        display: flex;
        flex-direction: row;
    }

    .course-image {
        width: 140px;
        height: 140px;
        min-width: 140px;
        border-radius: 12px 0 0 12px;
    }

    .course-content {
        padding: 15px;
    }

    .course-title {
        font-size: 16px;
        margin-bottom: 8px;
        min-height: auto;
    }

    .course-description {
        display: none;
    }

    .course-meta {
        margin-bottom: 10px;
        padding-bottom: 10px;
        gap: 10px;
    }

    .course-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .btn-view-all {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .learning-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 22px;
    }

    .course-card {
        flex-direction: column;
    }

    .course-image {
        width: 100%;
        height: 160px;
        border-radius: 12px 12px 0 0;
    }

    .course-price {
        font-size: 18px;
    }

    .btn-enroll {
        padding: 8px 16px;
        font-size: 12px;
    }
}

.promo-banner {
    padding: 40px 0;
    background: white;
}

.swiper-banner {
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
}

.promo-card {
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.promo-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.promo-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.promo-card .btn-light {
    background: white;
    color: #333;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.promo-card .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Suggest Product Section */
.suggest-product-section {
    padding: 50px 0;
    background: #f5f5f5;
}

.suggest-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.suggest-card h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.suggest-card>p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.suggest-form input,
.suggest-form textarea {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 12px;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Mobile App Section */
.mobile-app-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.mobile-app-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
}

.mobile-app-section>p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats {
    display: flex;
    gap: 40px;
}

.stats div {
    text-align: center;
}

.stats h4 {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stats p {
    color: var(--text-light);
    font-size: 14px;
}

.download-buttons {
    display: flex;
    gap: 15px;
}

.btn-store {
    background: var(--text-dark);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.btn-store:hover {
    opacity: 0.8;
}

.mobile-app-section img {
    max-height: 400px;
    object-fit: contain;
}

/* Footer - Light Blue */
.footer-section {
    background: var(--light-blue);
    padding: 50px 0 20px;
    color: var(--text-dark);
}

.footer-section h5 {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom h6 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-bottom p {
    font-size: 12px;
    margin: 0;
    line-height: 1.6;
}

.payment-partners {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icon {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-light);
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
}

.footer-copyright p {
    margin: 5px 0;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .community-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 250px;
    }

    .blog-card {
        grid-column: span 2;
    }

    .shorts-card {
        grid-column: span 2;
    }

    .magazines-card {
        grid-column: span 2;
        grid-row: span 2;
    }

    .guide-card {
        grid-column: span 2;
    }

    .events-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 300px;
        background-position: center;
    }

    .hero-content {
        padding: 30px 20px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-price {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card-modern {
        padding: 25px 20px;
        gap: 20px;
    }

    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .stat-number {
        font-size: 24px;
    }

    .featured-collage {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        grid-auto-rows: 200px;
    }

    .featured-lg {
        grid-column: span 2;
        grid-row: span 2;
    }

    .featured-md {
        grid-column: span 1;
        grid-row: span 1;
    }

    .featured-sm {
        grid-column: span 1;
        grid-row: span 1;
    }

    .featured-overlay {
        padding: 20px;
    }

    .featured-overlay h3 {
        font-size: 16px;
    }

    .featured-overlay p {
        font-size: 12px;
    }

    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 15px;
    }

    .blog-card,
    .shorts-card,
    .magazines-card,
    .guide-card,
    .events-card {
        grid-column: span 1;
        grid-row: span 1;
    }

    .magazines-card {
        grid-row: span 1;
    }

    .card-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .main-header .row {
        flex-direction: column;
    }

    .search-container {
        margin: 15px 0;
        order: 3;
    }

    .header-icons {
        justify-content: flex-start;
    }

    .menu-items {
        font-size: 12px;
        gap: 10px;
    }

    .banner-content h2 {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .suggest-card {
        padding: 25px;
    }

    .mobile-app-section {
        padding: 30px 0;
    }

    .stats {
        flex-direction: column;
        gap: 15px;
    }

    .footer-section {
        padding: 30px 0 20px;
    }
}

@media (max-width: 576px) {
    .logo {
        justify-content: center;
    }

    .top-header span {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
        text-align: center;
    }

    .menu-items {
        gap: 8px;
    }

    .menu-item {
        font-size: 11px;
    }

    .banner-content h1 {
        font-size: 20px;
    }

    .banner-content h2 {
        font-size: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card h3 {
        font-size: 12px;
    }

    .section-title {
        font-size: 18px;
    }
}

/* ======================== LOGIN PAGE STYLES ======================== */

/* ===== SIMPLIFIED AUTH PAGE WITH BACKGROUND IMAGE ===== */
.auth-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.auth-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://alveodental.com/wp-content/uploads/2020/07/Dental-Clinic02.jpg') center/cover no-repeat;
    z-index: -2;
}

.auth-background::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.auth-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.auth-logo img {
    height: 50px;
    width: auto;
}

.auth-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 420px;
}

.auth-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    width: 100%;
}

.auth-card-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    position: relative;
}

.auth-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-card-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.auth-card-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.auth-form {
    width: 100%;
}

.form-group-auth {
    margin-bottom: 20px;
}

.form-group-auth label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group-auth label i {
    color: #2C5AA0;
    font-size: 16px;
}

.input-auth {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background-color: #f8f9fa;
    color: #333;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
}

.input-auth:focus {
    outline: none;
    border-color: #2C5AA0;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.1);
}

.input-auth::placeholder {
    color: #999;
}

.btn-auth {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #2C5AA0 0%, #1a4d7f 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
    margin-top: 10px;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

.btn-auth:active {
    transform: translateY(0);
}

.divider-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #999;
    font-size: 12px;
}

.divider-auth::before,
.divider-auth::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.btn-social-auth {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.google-btn-auth:hover {
    border-color: #EA4335;
    color: #EA4335;
    background-color: #fff;
    transform: translateY(-2px);
}

.auth-footer-link {
    text-align: center;
    margin-top: 15px;
}

.auth-footer-link p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.auth-footer-link a {
    color: #2C5AA0;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s;
}

.auth-footer-link a:hover {
    color: #1a4d7f;
    text-decoration: underline;
}

.auth-bottom {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.auth-bottom i {
    color: #27ae60;
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-logo {
        top: 20px;
        left: 20px;
    }

    .auth-logo img {
        height: 40px;
    }

    .auth-card {
        padding: 30px 20px;
    }

    .auth-card-header h2 {
        font-size: 24px;
    }

    .form-group-auth {
        margin-bottom: 16px;
    }

    .input-auth {
        padding: 11px 12px;
        font-size: 16px;
    }

    .btn-auth {
        padding: 11px;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .auth-bottom {
        bottom: 15px;
        font-size: 11px;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-banner {
    background: linear-gradient(135deg, #2C5AA0 0%, #1a4d7f 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.contact-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-banner-content p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.info-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.info-card-icon.email {
    background: linear-gradient(135deg, #FF6B6B 0%, #ee5a6f 100%);
}

.info-card-icon.phone {
    background: linear-gradient(135deg, #4ECDC4 0%, #44b8a3 100%);
}

.info-card-icon.location {
    background: linear-gradient(135deg, #FFD93D 0%, #ffc107 100%);
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.contact-info-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2C5AA0;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    margin-bottom: 8px;
}

.info-link:hover {
    color: #1a4d7f;
    gap: 12px;
}

.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-container>p {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.form-group label i {
    color: #2C5AA0;
}

.form-control-contact {
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background-color: #f8f9fa;
    color: #333;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-control-contact:focus {
    outline: none;
    border-color: #2C5AA0;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.1);
}

.form-control-contact.textarea {
    resize: vertical;
    font-family: inherit;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
    font-size: 13px;
    color: #666;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2C5AA0;
}

.form-checkbox label {
    cursor: pointer;
    margin: 0;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2C5AA0 0%, #1a4d7f 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.map-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.map-container h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.map-placeholder {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.faq-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item:hover {
    border-color: #2C5AA0;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.1);
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    color: #2C5AA0;
    font-size: 18px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    background: #2C5AA0;
    color: white;
}

.faq-item.active .faq-question h4 {
    color: white;
}

.faq-item.active .faq-toggle {
    background: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.support-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.support-option {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.support-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.option-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.option-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
}

.option-icon.linkedin {
    background: linear-gradient(135deg, #0A66C2 0%, #084896 100%);
}

.option-icon.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #d63384 100%);
}

.option-icon.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d47a1 100%);
}

.support-option h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.support-option p {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.support-link {
    display: inline-block;
    color: #2C5AA0;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.support-link:hover {
    color: #1a4d7f;
    text-decoration: underline;
}

/* Responsive Contact Page */
@media (max-width: 991px) {
    .contact-banner-content h1 {
        font-size: 36px;
    }

    .contact-form-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-section,
    .faq-section,
    .support-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        padding: 50px 20px;
    }

    .contact-banner-content h1 {
        font-size: 28px;
    }

    .contact-banner-content p {
        font-size: 16px;
    }

    .contact-info-grid {
        gap: 20px;
        margin-bottom: 50px;
    }

    .form-container,
    .map-container {
        padding: 30px 20px;
    }

    .form-container h2,
    .map-container h2 {
        font-size: 22px;
    }

    .contact-form-section {
        gap: 20px;
    }

    .support-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .contact-section,
    .faq-section,
    .support-section {
        padding: 40px 0;
    }
}

/* ===== MODERN ABOUT US PAGE STYLES ===== */

/* Banner Section */
.about-banner-modern {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #2C5AA0 0%, #1a4d7f 50%, #0d2847 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: white;
}

.banner-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: -50px;
    right: -50px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: white;
    bottom: 50px;
    left: 50px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    top: 200px;
    left: 10%;
}

.banner-content-wrapper {
    position: relative;
    z-index: 2;
    animation: slideDown 0.8s ease;
}

.banner-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.banner-subtitle {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 300;
}

/* Company Overview Modern */
.company-overview-modern {
    padding: 100px 0;
    background: white;
}

.overview-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.overview-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 90, 160, 0.2);
    max-width: 100%;
    height: auto;
}

.company-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.image-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease 0.3s both;
}

.badge-icon {
    font-size: 20px;
    color: #FFD93D;
}

.badge-text {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.overview-content-side {
    animation: slideDown 0.8s ease;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #2C5AA0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-label i {
    font-size: 14px;
}

.content-heading {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro-paragraph {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-modern-list {
    margin-bottom: 35px;
}

.feature-modern-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon-modern {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2C5AA0 0%, #1a4d7f 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.detail-paragraph {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Stats Showcase */
.stats-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #f8f9fa 100%);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #2C5AA0;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

/* MVV Section Modern */
.mvv-section-modern {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title-main {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-description {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.mvv-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.mvv-card-modern {
    background: white;
    padding: 50px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

.mvv-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.mvv-card-modern.mission {
    border-top-color: #FF6B6B;
}

.mvv-card-modern.vision {
    border-top-color: #4ECDC4;
}

.mvv-card-modern.values {
    border-top-color: #FFD93D;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #2C5AA0 0%, #1a4d7f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    transition: all 0.3s;
}

.mvv-card-modern:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.mvv-card-modern h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.mvv-card-modern p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.values-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list-modern li {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.values-list-modern li:last-child {
    border-bottom: none;
}

.values-list-modern strong {
    color: #2C5AA0;
    font-weight: 600;
}

/* Why Choose Us Modern */
.why-choose-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f7ff 100%);
}

.reasons-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-card-modern {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.reason-card-modern:hover {
    transform: translateY(-8px);
    border-color: #2C5AA0;
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.12);
}

.reason-icon-modern {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #2C5AA0;
    transition: all 0.3s;
}

.reason-card-modern:hover .reason-icon-modern {
    background: #2C5AA0;
    color: white;
    transform: scale(1.15) rotate(-10deg);
}

.reason-card-modern h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.reason-card-modern p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Timeline Modern */
.timeline-modern-section {
    padding: 100px 0;
    background: white;
}

.timeline-modern {
    position: relative;
    padding: 20px 0;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2C5AA0, #1a4d7f);
    top: 0;
}

.timeline-item-modern {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item-modern:nth-child(odd) {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 40px;
    text-align: right;
}

.timeline-item-modern:nth-child(even) {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 40px;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: white;
    border: 4px solid #2C5AA0;
    font-size: 20px;
    font-weight: 700;
    color: #2C5AA0;
    box-shadow: 0 0 0 6px #f8f9fa;
}

.timeline-content-modern {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.timeline-item-modern:nth-child(odd) .timeline-content-modern {
    margin-right: -10px;
}

.timeline-item-modern:nth-child(even) .timeline-content-modern {
    margin-left: -10px;
}

.timeline-content-modern:hover {
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.15);
    transform: scale(1.02);
}

.timeline-content-modern h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content-modern p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Team Section Modern */
.team-section-modern {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(44, 90, 160, 0.15);
}

.team-image-modern {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #2C5AA0 0%, #1a4d7f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.2);
}

.team-content {
    padding: 30px;
    text-align: center;
}

.team-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.team-position {
    font-size: 14px;
    font-weight: 600;
    color: #2C5AA0;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Certifications Modern */
.certifications-modern {
    padding: 100px 0;
    background: white;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cert-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f7ff 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.cert-card:hover {
    border-color: #2C5AA0;
    transform: translateY(-8px);
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
}

.cert-card i {
    font-size: 60px;
    color: #FFD93D;
    margin-bottom: 20px;
}

.cert-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.cert-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* CTA Section Modern */
.cta-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #2C5AA0 0%, #1a4d7f 100%);
    color: white;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
}

.cta-btn.primary {
    background: white;
    color: #2C5AA0;
}

.cta-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

/* Responsive Modern About Page */
@media (max-width: 991px) {
    .overview-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .banner-title {
        font-size: 42px;
    }

    .content-heading {
        font-size: 32px;
    }

    .section-title-main {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .mvv-cards-container {
        grid-template-columns: 1fr;
    }

    .reasons-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-modern::before {
        left: 30px;
    }

    .timeline-item-modern:nth-child(odd),
    .timeline-item-modern:nth-child(even) {
        margin-left: 150px;
        margin-right: 0;
        text-align: left;
        padding-left: 40px;
        padding-right: 0;
    }

    .timeline-marker {
        left: 0;
    }

    .company-overview-modern,
    .mvv-section-modern,
    .why-choose-modern,
    .team-section-modern,
    .timeline-modern-section,
    .certifications-modern,
    .cta-section-modern {
        padding: 60px 0;
    }
}

.stat-number-about {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.stat-label-about {
    font-size: 15px;
    color: #fff;
    margin: 8px 0 0 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-banner-modern {
        min-height: 350px;
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .reasons-grid-modern,
    .team-grid-modern {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-value {
        font-size: 36px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons-modern {
        flex-direction: column;
    }

    .section-title-main {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .content-heading {
        font-size: 24px;
    }

    .timeline-modern::before {
        left: 25px;
    }
}

/* Modern Banner Section */
.banner-section-modern {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
    padding: 60px 20px;
}

.banner-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.banner-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -75px;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(30px) rotate(10deg);
    }
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Company Overview Section */
.company-overview-modern {
    padding: 80px 20px;
    background: #f8f9fa;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-image {
    position: relative;
}

.company-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.company-image:hover {
    transform: translateY(-5px);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.image-badge i {
    font-size: 1.2rem;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Stats Showcase */
.stats-showcase {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    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, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 600;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-description {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Mission Vision Values Section */
.mvv-section-modern {
    padding: 80px 20px;
    background: #fff;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mvv-card {
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mission-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.vision-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.values-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.mvv-card p {
    line-height: 1.8;
    font-size: 1rem;
    opacity: 0.95;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.why-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Timeline Section */
.timeline-modern-section {
    padding: 80px 20px;
    background: white;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 0 0 5px white, 0 0 0 10px #667eea;
}

.timeline-content {
    width: calc(50% - 50px);
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content.left {
    margin-left: 0;
    text-align: right;
}

.timeline-content.right {
    margin-left: 56%;
    text-align: left;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 8px;
    font-weight: 700;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    margin: 5px 0;
}

.timeline-content p:first-of-type {
    font-weight: 600;
    color: #333;
}

/* Team Section */
.team-section-modern {
    padding: 80px 20px;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.member-placeholder {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.team-member h3 {
    font-size: 1.3rem;
    margin: 20px 0 5px 0;
    color: #333;
    font-weight: 600;
}

.member-position {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.member-bio {
    color: #666;
    padding: 0 15px 20px 15px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.member-social {
    padding: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    border-top: 1px solid #e0e0e0;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

/* Certifications Section */
.certifications-section {
    padding: 80px 20px;
    background: white;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.cert-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.cert-card:hover {
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    transform: translateY(-10px);
}

.cert-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.cert-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.cert-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section-modern {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-content h2 {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .mvv-grid,
    .why-grid,
    .stats-grid,
    .team-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 80px;
        text-align: left !important;
    }

    .timeline-content.right {
        margin-left: 80px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .banner-shape {
        width: 150px !important;
        height: 150px !important;
    }

    .mvv-card,
    .why-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.5rem;
    }

    .overview-content h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .mvv-card,
    .why-card,
    .cert-card {
        padding: 25px 15px;
    }

    .mvv-icon,
    .why-icon {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .feature-list {
        gap: 15px;
    }

    .feature-item {
        gap: 15px;
    }
}

/* ===== CART PAGE STYLES ===== */

/* Cart Banner */
.cart-banner {
    background: linear-gradient(135deg, #2C5AA0 0%, #4ECDC4 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.cart-banner h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

/* Cart Container */
.cart-container {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: calc(100vh - 300px);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Cart Items Section */
.cart-items-section {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.cart-items-section h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-items-section h3 i {
    color: #2C5AA0;
    font-size: 24px;
}

/* Individual Cart Item */
.cart-item {
    display: grid;
    grid-template-columns: 140px 1fr 120px;
    gap: 25px;
    padding: 25px;
    border: 2px solid #f5f5f5;
    border-radius: 12px;
    margin-bottom: 18px;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.cart-item:hover {
    border-color: #2C5AA0;
    background: #f0f7ff;
    box-shadow: 0 12px 30px rgba(44, 90, 160, 0.15);
    transform: translateY(-2px);
}

.cart-item-image {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #2C5AA0 0%, #4ECDC4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.2);
    transition: all 0.3s;
}

.cart-item:hover .cart-item-image {
    transform: scale(1.05);
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-item-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.item-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    font-size: 13px;
    color: #666;
}

.item-meta strong {
    color: #333;
    font-weight: 600;
}

.item-warranty {
    background: #e7f3ff;
    color: #2C5AA0;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.item-total {
    font-size: 18px;
    font-weight: 800;
    color: #2C5AA0;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    overflow: hidden;
    transition: all 0.3s;
}

.quantity-control:hover {
    border-color: #2C5AA0;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 16px;
    color: #2C5AA0;
    transition: all 0.3s;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #f0f7ff;
    color: #1a4d7f;
}

.quantity-input {
    width: 50px;
    border: none;
    text-align: center;
    font-weight: 700;
    color: #333;
    background: white;
    font-size: 14px;
}

.quantity-input:focus {
    outline: none;
}

.btn-remove {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
}

.btn-remove:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff3838 100%);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Cart Summary */
.cart-summary {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-title i {
    font-size: 20px;
    color: #2C5AA0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
    font-weight: 500;
}

.summary-row strong {
    color: #333;
    font-weight: 700;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 800;
    color: #2C5AA0;
    border-top: 2px solid #f0f0f0;
    padding-top: 18px;
    margin-top: 18px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    padding: 18px;
    border-radius: 8px;
    margin-left: -18px;
    margin-right: -18px;
}

/* Promo Section */
.promo-section {
    background: linear-gradient(135deg, #e7f3ff 0%, #f0f7ff 100%);
    padding: 18px;
    border-radius: 10px;
    margin: 20px -18px;
    border: 2px solid #d4e7f7;
}

.promo-section label {
    font-size: 12px;
    font-weight: 700;
    color: #2C5AA0;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 10px;
    transition: all 0.3s;
    font-weight: 500;
}

.promo-input:focus {
    outline: none;
    border-color: #2C5AA0;
    background: white;
}

.btn-apply-promo {
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, #2C5AA0 0%, #1a4d7f 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-apply-promo:hover {
    box-shadow: 0 6px 18px rgba(44, 90, 160, 0.3);
    transform: translateY(-2px);
}

/* Checkout Button */
.btn-checkout {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2C5AA0 0%, #4ECDC4 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(44, 90, 160, 0.3);
}

.btn-checkout:active {
    transform: translateY(-1px);
}

.continue-shopping-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #2C5AA0;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
    padding: 12px;
}

.continue-shopping-link:hover {
    color: #1a4d7f;
    transform: translateX(-4px);
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f7ff 100%);
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
    border: 2px solid #e8eef8;
}

.benefits-title {
    font-size: 13px;
    font-weight: 800;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefits-title i {
    color: #4ECDC4;
    font-size: 16px;
}

.benefit-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    color: #2C5AA0;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 700;
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, #e7f3ff 0%, #f0f7ff 100%);
    border-left: 5px solid #2C5AA0;
    padding: 22px;
    border-radius: 12px;
    margin-bottom: 35px;
    border: 2px solid #d4e7f7;
}

.info-banner h5 {
    font-size: 14px;
    font-weight: 800;
    color: #2C5AA0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-banner h5 i {
    font-size: 16px;
}

.info-banner p {
    font-size: 13px;
    color: #0c5460;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Cart Empty */
.cart-empty {
    text-align: center;
    padding: 80px 30px;
}

.cart-empty-icon {
    font-size: 72px;
    color: #ddd;
    margin-bottom: 20px;
}

.cart-empty h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.cart-empty p {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.btn-continue-shopping {
    background: linear-gradient(135deg, #2C5AA0 0%, #4ECDC4 100%);
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn-continue-shopping:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(44, 90, 160, 0.3);
}

/* Responsive Cart */
@media (max-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-banner h1 {
        font-size: 24px;
    }

    .cart-items-section,
    .cart-summary {
        padding: 25px;
    }

    .cart-item {
        grid-template-columns: 110px 1fr;
        gap: 15px;
        padding: 18px;
    }

    .cart-item-image {
        width: 110px;
        height: 110px;
        font-size: 36px;
    }

    .cart-item-actions {
        grid-column: 2;
        align-items: flex-end;
    }

    .promo-section {
        margin: 20px -25px;
    }
}

@media (max-width: 480px) {
    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item-image {
        width: 100%;
        height: 120px;
    }

    .cart-item-actions {
        grid-column: 1;
        align-items: stretch;
    }

    .item-total {
        text-align: left;
    }

    .btn-remove {
        width: 100%;
    }
}

/* ===== PAGINATION STYLES ===== */

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination li {
    display: inline-block;
}

.pagination li a,
.pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #2C5AA0;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #ffffff;
}

.pagination li a:hover {
    border-color: #2C5AA0;
    background: #f0f7ff;
    color: #2C5AA0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.15);
}

.pagination li.active span {
    background: linear-gradient(135deg, #2C5AA0 0%, #5D8DD6 100%);
    color: #ffffff;
    border-color: #2C5AA0;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

.pagination li.disabled span {
    background: #f5f5f5;
    color: #ccc;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

.pagination li.disabled span:hover {
    transform: none;
    box-shadow: none;
    background: #f5f5f5;
    border-color: #e0e0e0;
}

.pagination .page-item.disabled .page-link {
    color: #ccc;
    pointer-events: none;
    background-color: #f5f5f5;
    border-color: #e0e0e0;
}

.pagination .page-link {
    color: #2C5AA0;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    color: #2C5AA0;
    background-color: #f0f7ff;
    border-color: #2C5AA0;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #2C5AA0 0%, #5D8DD6 100%);
    border-color: #2C5AA0;
    color: #ffffff;
}

/* Pagination container spacing */
.d-flex.justify-content-center {
    padding: 20px 0;
}