/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0056b3;
    /* Industrial Blue */
    --accent-color: #ffc107;
    /* Safety Yellow */
    --text-dark: #212529;
    --text-body: #495057;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    background-color: var(--white);
    /* overflow-x removed to allow sticky positioning to work properly */
}

/* Button Styles */
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 8px 15px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 4px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    color: #fff;
    background-color: #004494;
    border-color: #004085;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: 1300px;
    /* Increased from default */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

/* Nav Wrapper acts as the flex container for Nav + Actions */
.nav-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
    /* Prevent line break */
    font-size: 15px;
    /* Slightly smaller font */
}

/* Lang Switcher Dropdown - FIXED */
.lang-switcher {
    position: relative;
    display: inline-block;
    padding-bottom: 0;
    /* Remove padding */
}

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: white;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* Improved shadow */
    z-index: 1000;
    border-radius: 4px;
    border: 1px solid #ebebeb;
    padding: 5px 0;
    /* Add padding inside dropdown */
}

/* This is critical for hover stability - invisible bridge */
.lang-switcher::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    /* Bridge gap between button and top: 100% dropdown */
    height: 10px;
}

.lang-dropdown a {
    color: var(--text-body);
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background-color 0.2s;
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn:hover {
    background-color: #004494;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: block;
    position: relative;
    overflow: hidden;
    color: var(--white);
    background-color: #0c0c0c !important;
    /* Base color: Nearly black */
}

.hero-bg-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
    /* Sits over image */
}

.hero-content {
    position: relative;
    z-index: 3;
    /* Sits over overlay */
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1,
.hero-content p,
.hero-content .btn {
    margin-top: 0;
    /* Prevent margin collapse */
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero .btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    transition: var(--transition);
}

.hero .btn:hover {
    background-color: #e0a800;
    transform: scale(1.05);
}

/* Section Common */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #adb5bd;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.text-btn {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.text-btn:hover {
    gap: 8px;
}

/* About Section */
.about {
    background-color: var(--bg-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 20px;
}

.about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #ddd;
    border-radius: 10px;
    background: url('../images/hero_bg.png') center/cover;
    /* Reusing hero for demo */
    box-shadow: var(--shadow-lg);
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.step-card {
    flex: 1;
    min-width: 200px;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

.step-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: #adb5bd;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #3e444a;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding: 25px 0;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 30px));
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }

    /* Mobile Header & Menu Drawer */
    .navbar {
        height: 70px;
        position: relative;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        /* Full width items */
        padding: 30px 20px 80px;
        /* Extra bottom padding for scroll */
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid #eee;
        overflow-y: auto;
        gap: 0;
        /* Handle gap via margins */
        z-index: 999;
    }

    .nav-wrapper.active {
        transform: translateX(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        text-align: center;
        width: 100%;
        margin-bottom: 30px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 20px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        color: var(--text-dark);
        border-radius: 8px;
    }

    .nav-links li a:hover {
        background-color: #f8f9fa;
        color: var(--primary-color);
    }

    .nav-links a::after {
        display: none;
        /* Remove underline effect on mobile */
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .lang-switcher {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .lang-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
        font-size: 16px;
        background: #f8f9fa;
    }

    .lang-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        text-align: center;
        margin-top: 10px;
        background: transparent;
    }

    .lang-dropdown a {
        padding: 12px;
        font-size: 16px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 16px;
    }

    /* Footer Adjustments */
    .copyright {
        padding-bottom: 80px;
        /* Extra space for mobile bottom bars */
    }

    /* Floating Cart Adjustment for Mobile */
    .float-cart-btn {
        bottom: 90px !important;
        /* Move up significantly to avoid bottom bars */
        right: 20px !important;
    }

    .cart-panel {
        bottom: 160px !important;
        /* Panel must also move up */
        right: 20px !important;
        width: auto !important;
        left: 20px !important;
        /* Full width minus padding on mobile */
    }

    /* Page Content Adjustments */
    .hero {
        height: auto;
        min-height: 50vh;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Adjust overlay to match the new zero-padding container */
    .hero::before {
        background: rgba(0, 0, 0, 0.35);
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
    }

    /* Use content padding instead of container padding for spacing */
    .hero-content {
        padding: 60px 20px;
        top: 0;
        transform: none;
        /* In mobile, let content flow naturally or use padding */
    }

    /* Remove Header Shadow on Mobile but keep sticky */
    header {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #eee;
        position: sticky;
        top: 0;
        z-index: 1000;
        background-color: white;
    }

    /* 当菜单打开时，header固定在顶部 */
    header.menu-open {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
    }

    /* 菜单打开时给body添加padding，防止内容跳动 */
    body.menu-open {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-image {
        height: 300px;
        width: 100%;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        width: 100%;
        max-width: 400px;
    }

    /* Mobile Updates - User Request */
    .stat-item h3 {
        font-size: 24px;
        /* Even smaller stats font for mobile */
    }

    .stats {
        padding: 40px 0;
        /* Reduced padding */
    }

    .stats-grid {
        gap: 15px;
        /* Reduce spacing */
    }

    .support-grid {
        grid-template-columns: 1fr;
        /* Stack support columns */
        gap: 20px;
    }

    .category-desktop-wrapper {
        display: none;
    }

    .category-mobile-wrapper {
        display: block !important;
    }

    .hero {
        margin-top: 0;
    }

    /* Product Grid Mobile - 2 Column */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Fix container overflow on mobile */
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Fix section overflow */
    .section-padding {
        overflow-x: hidden;
    }

    /* Ensure select dropdown doesn't overflow */
    .category-mobile-wrapper {
        max-width: 100%;
        box-sizing: border-box;
    }

    .product-card {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .product-image {
        height: 140px;
        /* Smaller image height */
        font-size: 30px;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h3 {
        font-size: 16px;
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-info p {
        font-size: 12px;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        /* Standard property for compatibility */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Custom Dropdown Styling */
    .custom-dropdown {
        position: relative;
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        background-color: #fff;
        font-size: 16px;
        color: var(--text-dark);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .dropdown-toggle:hover {
        border-color: var(--primary-color);
    }

    .custom-dropdown.open .dropdown-toggle {
        border-color: var(--primary-color);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .dropdown-toggle i {
        font-size: 12px;
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }

    .custom-dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-top: none;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 100;
        max-height: 250px;
        overflow-y: auto;
    }

    .dropdown-menu.show {
        display: block;
        animation: slideDown 0.2s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-item {
        padding: 14px 16px;
        font-size: 15px;
        color: var(--text-body);
        cursor: pointer;
        transition: all 0.2s ease;
        border-bottom: 1px solid #f5f5f5;
    }

    .dropdown-item:last-child {
        border-bottom: none;
        border-radius: 0 0 10px 10px;
    }

    .dropdown-item:hover {
        background-color: #f8f9fa;
        color: var(--primary-color);
    }

    .dropdown-item.active {
        background-color: var(--primary-color);
        color: white;
    }
}

/* Force hide ThinkPHP Trace */
#think_page_trace,
.think-trace,
#think_page_trace_open {
    display: none !important;
}

/* Page Header Fix */
.page-header {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

/* Contact Form Styles */
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #004494;
}

/* Lang Switcher Dropdown */
.lang-switcher {
    position: relative;
    margin-left: 20px;
    display: inline-block;
}

.lang-btn {
    background-color: transparent;
    border: 1px solid #eee;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn:hover {
    background-color: #f8f9fa;
}

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: white;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 4px;
    border: 1px solid #eee;
    margin-top: 5px;
}

.lang-dropdown a {
    color: var(--text-body);
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background-color 0.2s;
}

.lang-dropdown a:hover {
    background-color: #f1f3f5;
    color: var(--primary-color);
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

.lang-dropdown a.active {
    font-weight: bold;
    color: var(--primary-color);
    background-color: #f8f9fa;
}

/* Custom Modal Styles - Improved Premium Look */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-box {
    background: #ffffff;
    width: 440px;
    max-width: 90%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    overflow: hidden;
    position: relative;
}

.modal-overlay.show .modal-box {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f3f5;
    font-weight: 700;
    font-size: 18px;
    background: #fff;
    color: #1a1d23;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close-icon {
    color: #adb5bd;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close-icon:hover {
    background: #f8f9fa;
    color: #495057;
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px 24px;
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
}

#modal-msg {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Add warning icon for confirm type if needed, but here we just style the text */
#modal-msg::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ff9800;
    font-size: 24px;
}

.modal-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 15px;
    transition: all 0.3s;
    outline: none;
}

.modal-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.modal-footer {
    padding: 16px 24px;
    background: #fcfcfd;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid #f1f3f5;
}

.modal-btn {
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-btn.cancel {
    background: #f1f3f5;
    color: #495057;
}

.modal-btn.cancel:hover {
    background: #e9ecef;
    color: #212529;
}

.modal-btn.confirm {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.25);
}

.modal-btn.confirm:hover {
    background: #004494;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 86, 179, 0.35);
}

.modal-btn.confirm:active {
    transform: translateY(0);
}