/* CSS matching the provided reference image */
:root {
    --primary-blue: #003399;
    --primary-yellow: #ffe600;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f5f7fa;
    --sidebar-bg: #1a1a2e;
    --sidebar-text: #e0e0e0;
    --sidebar-hover: #2a2a4a;
    --sidebar-border: #33334d;
}

@view-transition { navigation: auto; }
@keyframes fade-in { from { opacity: 0; transform: translateY(20px); } }
@keyframes fade-out { to { opacity: 0; transform: translateY(-20px); } }
::view-transition-old(root) { animation: 0.4s ease-in both fade-out; }
::view-transition-new(root) { animation: 0.4s ease-out both fade-in; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    font-size: 14px;
    padding: 10px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-right a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}
.top-right a:hover {
    text-decoration: underline;
}

/* Header */
.main-header {
    background-color: var(--primary-blue);
    padding: 20px 0;
    color: var(--text-light);
}
.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo i {
    font-size: 40px;
    color: var(--primary-yellow);
}
.logo h1 {
    font-size: 24px;
    color: var(--text-light);
    letter-spacing: 1px;
}
.slogan {
    color: var(--primary-yellow);
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}
.search-bar {
    display: flex;
    flex: 1;
    max-width: 400px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}
.search-bar input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 14px;
}
.search-bar button {
    background: #f0f0f0;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-size: 16px;
    color: #555;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}
.login {
    font-weight: 500;
    cursor: pointer;
}
.cart {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 24px;
    cursor: pointer;
    position: relative;
}
.cart-count {
    background: var(--primary-yellow);
    color: var(--text-dark);
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: -10px;
}

/* Nav Bar */
.nav-bar {
    background-color: #002d80;
}
.nav-bar .container {
    display: flex;
}
.category-toggle {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    font-weight: bold;
    padding: 15px 20px;
    width: 250px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    text-transform: uppercase;
}
.benefits-row {
    display: flex;
    flex: 1;
    justify-content: space-around;
    align-items: center;
    color: var(--text-light);
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.benefit-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.benefit-item i {
    font-size: 28px;
    color: var(--primary-yellow);
    transition: all 0.3s ease;
}
.benefit-item:hover .icon-bounce {
    animation: bounce 0.5s ease;
}
.benefit-item:hover .icon-spin-hover {
    animation: spin 1s linear infinite;
}
.benefit-item:hover .icon-pulse {
    animation: iconPulse 0.5s infinite alternate;
}
.benefit-item:hover .icon-shake {
    animation: shake 0.5s ease-in-out;
}
.benefit-item strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}
.benefit-item span {
    font-size: 12px;
    opacity: 0.8;
    color: #ddd;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}
@keyframes iconPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}
@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    50% { transform: rotate(-10deg); }
    75% { transform: rotate(5deg); }
}

/* Main Layout */
.main-layout {
    display: flex;
    margin-top: 0;
    gap: 20px;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: #fff;
    border-right: 1px solid var(--sidebar-border);
    border-left: 1px solid var(--sidebar-border);
    border-bottom: 1px solid var(--sidebar-border);
    align-self: flex-start;
}
.category-list {
    list-style: none;
}
.category-list li {
    border-bottom: 1px solid #f0f0f0;
}
.category-list li:last-child {
    border-bottom: none;
}
.category-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    font-size: 15px;
}
.category-list a i {
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}
.category-list a:hover, .category-list li.active a {
    background: #f8f9fa;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Landing Content */
.landing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
    padding-bottom: 60px;
}

.section-title {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }

/* Hero Section */
.hero-section {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 40px;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0, 32, 96, 0.9) 0%, rgba(0, 32, 96, 0.4) 100%);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.hero-overlay h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}
.hero-overlay p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
}
.btn-primary {
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    align-self: flex-start;
    transition: transform 0.2s, background 0.2s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    background: #e6cf00;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}
.btn-primary {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.3);
}
.btn-secondary {
    background: var(--primary-blue);
    color: var(--primary-yellow);
    border: 2px solid var(--primary-blue);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 230, 0, 0.5);
}
.btn-secondary:hover {
    background: transparent;
    color: var(--primary-blue);
}


/* Best Seller Section */
.best-seller-section {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.section-title-left {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: bold;
    text-transform: uppercase;
}
.see-more {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
}
.see-more:hover {
    color: var(--primary-blue);
}

.product-grid-v2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.product-card-v2 {
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.product-card-v2:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.image-wrapper {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect ratio */
    overflow: hidden;
}
.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-wrapper .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 1;
}
.product-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-name {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    margin-top: auto;
}
.current-price {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 16px;
}
.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 12px;
}
.discount-badge {
    background: #ff4d4d;
    color: #fff;
    font-size: 11px;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: bold;
}
.btn-buy {
    width: 100%;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 10px 0;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.btn-buy:hover {
    background: #001a4d;
}

@media (max-width: 1100px) {
    .product-grid-v2 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .product-grid-v2 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .product-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid #ff4d4d;
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}
.card .icon {
    font-size: 36px;
    margin-bottom: 15px;
}
.card h4 {
    margin-bottom: 10px;
    color: var(--primary-blue);
    font-size: 18px;
}
.card p {
    color: #666;
    line-height: 1.5;
}

/* Solution Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-card h4 {
    padding: 20px 20px 5px;
    color: var(--primary-blue);
    font-size: 20px;
}
.product-card p {
    padding: 0 20px 20px;
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* Benefits Box */
.benefits-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.check-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}
.check-list li {
    margin-bottom: 20px;
    font-size: 17px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
}
.check-list i {
    color: #28a745;
    font-size: 22px;
    margin-top: 3px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-yellow);
}
.testimonial .stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 14px;
}
.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}
.testimonial strong {
    color: var(--primary-blue);
    font-size: 16px;
}

/* Policies Section */
.policies-section {
    background: #fff;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-blue);
    overflow: hidden;
}
.policy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px 30px;
    background: #f9fbfd;
    transition: background 0.3s;
}
.policy-header:hover {
    background: #f0f5fa;
}
.policy-title {
    color: var(--primary-blue);
    font-size: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.policy-icon {
    font-size: 20px;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}
.policy-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    background: #fff;
}
.policy-inner {
    padding: 20px 30px 30px;
    border-top: 1px solid #eee;
}
.policy-inner h4 {
    color: #d93025;
    margin-bottom: 15px;
    font-size: 18px;
    margin-top: 20px;
}
.policy-inner h4:first-child {
    margin-top: 0;
}
.policy-inner p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}
.policy-inner ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}
.policy-inner li {
    margin-bottom: 8px;
}

/* CTA Section */
.offer-box {
    background: var(--primary-blue);
    color: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,32,96,0.3);
}
.offer-box h3 {
    color: var(--primary-yellow);
    font-size: 26px;
    margin-bottom: 25px;
    line-height: 1.4;
}
.gifts {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 25px;
    text-align: left;
    border: 1px dashed var(--primary-yellow);
}
.gifts p {
    margin: 8px 0;
    font-size: 16px;
}
.urgency {
    font-style: italic;
    margin-bottom: 35px;
    font-size: 18px;
}
.order-form {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.order-form h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 20px;
}
.order-form input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 15px;
    transition: border-color 0.2s;
}
.order-form input:focus {
    border-color: var(--primary-blue);
}
.order-form button {
    width: 100%;
    margin-top: 10px;
}

.pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}
.float-btn:hover {
    transform: scale(1.1);
}
.messenger { background: #0084ff; }
.zalo { 
    background: #0068ff; 
    font-size: 16px;
    border: 2px solid #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .main-layout { flex-direction: column; }
    .sidebar { width: 100%; border: 1px solid var(--sidebar-border); margin-bottom: 20px; }
    .nav-bar .benefits-row { display: none; }
    .nav-bar .category-toggle { width: 100%; justify-content: center; }
    .main-header .container { flex-wrap: wrap; }
    .search-bar { order: 3; min-width: 100%; max-width: 100%; margin-top: 15px; }
    .hero-overlay h2 { font-size: 28px; }
    .offer-box { padding: 30px 20px; }
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    backdrop-filter: blur(5px);
}
.modal-content {
    background-color: #fefefe;
    margin: 5% auto; 
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}
.close-modal:hover,
.close-modal:focus {
    color: var(--primary-blue);
    text-decoration: none;
}
.modal-body {
    display: flex;
    gap: 30px;
}
.modal-gallery {
    flex: 1;
}
.modal-gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.modal-info {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}
.modal-info h2 {
    color: var(--primary-blue);
    font-size: 26px;
    margin-bottom: 15px;
}
.modal-price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ccc;
}
.modal-current-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-blue);
}
.modal-old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}
.modal-discount {
    background: #ff4d4d;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}
.modal-promotion {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}
.modal-promotion h4 {
    color: #d93025;
    margin-bottom: 10px;
    font-size: 15px;
}
.modal-promotion ul {
    list-style: none;
    padding-left: 5px;
}
.modal-promotion li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}
.modal-options h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}
.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}
.size-btn {
    border: 1px solid #ccc;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}
.size-btn input {
    display: none;
}
.size-btn.active {
    border-color: var(--primary-blue);
    background: rgba(0, 32, 96, 0.05);
    color: var(--primary-blue);
    font-weight: bold;
}
.modal-action {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: auto;
}
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}
.qty-btn {
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}
.qty-btn:hover { background: #e0e0e0; }
.quantity-selector input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    font-size: 16px;
    outline: none;
}
.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.btn-buy-large {
    flex: 1;
    background: var(--primary-yellow);
    color: var(--primary-blue);
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.3);
    transition: transform 0.2s;
}
.btn-buy-large:hover {
    transform: translateY(-2px);
}
/* Sidebar enhancements */
.category-list li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-bottom: 5px;
}
.category-list li a:hover, .category-list li.active a {
    background: var(--sidebar-hover);
    color: var(--primary-yellow);
    transform: translateX(5px);
}
.category-list li a i {
    font-size: 20px;
    transition: transform 0.3s ease;
}
.category-list li a:hover i {
    transform: scale(1.2);
}

/* Footer Styles */
.main-footer {
    background-color: #001f4d;
    color: #fff;
    padding-top: 50px;
    margin-top: 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
}
.footer-col p {
    margin-bottom: 15px;
    line-height: 1.6;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.footer-col p i {
    margin-top: 4px;
    color: var(--primary-yellow);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: var(--primary-yellow);
    color: #001f4d;
    transform: translateY(-3px) scale(1.1);
}
.footer-bottom {
    background-color: #001133;
    padding: 20px 0;
    font-size: 14px;
    color: #aaa;
}
.mt-15 { margin-top: 15px; }

@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }
    .modal-action {
        flex-direction: column;
        align-items: stretch;
    }
}
