:root {
    --header-bg: #2d3194;
    --header-text: #fff;
    --accent: #ed1925;
    --accent-hover: #c41623;
    --accent-rgb: 59, 130, 246;
    --secondary: #2d3194;
    --secondary-hover: #252a7a;
    --muted: #6b7280;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border-light: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Be Vietnam Pro", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
    background: #fff;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.6;
}

/* Top header */
#top-header {
    background: var(--header-bg);
    color: var(--header-text);
    font-size: 0.925rem;
    padding: 0.75rem 0;
}

#top-header a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

#top-header a:hover {
    color: var(--accent);
    transform: scale(1.05);
}

#top-header .header-links {
    gap: 1.5rem;
}

#top-header .header-links i {
}

#top-header .social-links {
    gap: 1rem;
}

#top-header .social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

#top-header .social-links a:hover:not(.dropdown-item) {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

/* Main header */
#header {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-logo img {
    max-height: 80px;
}

/* Search - Modern design */
.header-search {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-wrapper:focus-within {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(237, 25, 37, 0.1);
}

.header-search .form-select {
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    max-width: 180px;
}

.header-search .form-control {
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 0.75rem 3.5rem 0.75rem 1rem;
    flex: 1;
    font-weight: 400;
    color: var(--text-primary);
}

.header-search .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.header-search .btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
    background: var(--accent);
    color: #fff;
    border: 0;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 10;
}

.header-search .btn:hover {
    background: var(--accent-hover);
    transform: translateY(-50%) scale(1.05);
}

/* Account icons */
.header-ctn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.header-ctn a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.header-ctn a:hover {
    color: var(--accent);
    border: none;
}

.header-ctn a[data-bs-toggle="dropdown"]:focus,
.header-ctn a[data-bs-toggle="dropdown"]:hover {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.header-ctn .qty {
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    margin-left: 0.35rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.header-ctn .qty.cart-updated {
    animation: cartPulse 0.6s ease-in-out;
}

@keyframes cartPulse {
    0% {
        transform: scale(1);
        background: var(--accent);
    }
    50% {
        transform: scale(1.2);
        background: #28a745;
    }
    100% {
        transform: scale(1);
        background: var(--accent);
    }
}

/* Cart dropdown */
.cart-dropdown {
    width: 380px;
    max-width: 90vw;
    max-height: 70vh;
    overflow-y: auto;
}

.product-widget {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.product-widget:last-child {
    border-bottom: none;
}

.product-img img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid var(--border-light);
}

.product-body {
    flex: 1;
    min-width: 0;
}

.product-body h3 {
    font-size: 0.8rem;
    margin: 0 0 0.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-body h3 a {
    color: var(--text-primary);
    text-decoration: none;
}

.product-body h3 a:hover {
    color: var(--accent);
}

.product-body .product-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    margin: 0;
}

.product-body .product-price .qty {
    color: var(--text-secondary);
    font-weight: 500;
}

.product-widget .delete {
    background: transparent;
    border: 0;
    color: #999;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-widget .delete:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.cart-summary {
    border-top: 1px solid var(--border-light);
    padding: 0.75rem 0 0.5rem;
    margin: 0.5rem 0 0;
}

.cart-summary small {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.cart-summary h5 {
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* Cart dropdown buttons */
.cart-dropdown .btn {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.cart-dropdown .btn-outline-primary {
    border-color: var(--border-light);
    color: var(--text-secondary);
    background: #fff;
}

.cart-dropdown .btn-outline-primary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.05);
}

.cart-dropdown .btn-success {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.cart-dropdown .btn-success:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.3);
}

.cart-dropdown .empty-cart {
    color: var(--text-secondary);
    font-style: italic;
}

/* Navigation */
#navigation {
    background: var(--header-bg);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

/* Mega menu */
.dropdown-mega {
    position: static;
}

.dropdown-menu.mega-menu {
    width: 100%;
    /*margin-top: 8px;
    border: 0;
    border-radius: 12px;*/
    background: #fff;
    left: 50% !important;
    transform: translateX(-50%) !important;
    max-width: 1320px;
    /*border: 2px solid var(--border-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);*/
}

.mega-menu .col-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-light);
}

.mega-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.mega-menu a:hover {
    color: var(--accent);
    background: var(--light-bg);
    padding-left: 1rem;
}

/* Cart dropdown mobile fix */
@media (max-width: 767.98px) {
    .cart-dropdown {
        position: fixed !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
        top: 100px !important;
        width: 320px !important;
        max-width: 90vw !important;
        z-index: 1050;
    }
}

/* Offcanvas mobile menu */
.offcanvas {
    border: none;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.offcanvas-header {
    border-bottom: 1px solid var(--border-light);
    /*padding: 1.5rem 1.25rem;*/
    padding: 5px 20px;
    background: var(--light-bg);
}

.offcanvas-title {
    font-weight: 600;
    color: var(--text-primary);
}

.offcanvas-body {
    padding: 1.5rem 1.25rem;
}

.offcanvas-footer {
    border-top: 1px solid var(--border-light);
    padding: 1.25rem;
    background: var(--light-bg);
}

/* Mobile menu links */
.offcanvas .list-unstyled a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    display: block;
    transition: all 0.3s ease;
}

.offcanvas .list-unstyled a:hover {
    color: var(--accent);
    background: var(--light-bg);
    padding-left: 1rem;
}

.offcanvas .list-unstyled li:last-child a {
    border-bottom: none;
}

/* Mobile menu search */
.offcanvas .input-group {
    background: var(--light-bg);
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.offcanvas .input-group:focus-within {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(237, 25, 37, 0.1);
}

.offcanvas .input-group-text {
    background: transparent !important;
    border: none;
    color: var(--text-secondary);
}

.offcanvas .form-control {
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    font-weight: 400;
}

.offcanvas .form-control:focus {
    background: transparent;
    box-shadow: none;
}

/* Category collapse button */
.offcanvas .btn {
    background: transparent;
    border: none;
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.offcanvas .btn:hover,
.offcanvas .btn:focus {
    background: var(--light-bg);
    color: var(--accent);
    box-shadow: none;
}

.offcanvas .collapse ul {
    background: var(--light-bg);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.offcanvas .collapse li {
    padding: 0.5rem 1rem !important;
    color: var(--text-secondary);
    font-weight: 400;
    border-bottom: none !important;
}

.offcanvas .collapse li:hover {
    background: rgba(237, 25, 37, 0.1);
    color: var(--accent);
}

/* Utilities */
.hover-trigger .dropdown-menu {
    display: none;
}

.hover-trigger.show-on-hover:hover > .dropdown-menu {
    display: block;
}

/* User Dropdown Fixes */
#top-header .dropdown-menu {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
}

#top-header .dropdown-item {
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#top-header .dropdown-item:hover {
    background: var(--light-bg);
    color: var(--accent);
}

#top-header .dropdown-item i {
    width: 18px;
    text-align: center;
}

/* Partners Section */
.partners-section {
    background: var(--light-bg);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.partner-logo {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.partner-logo img {
    max-height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}

/* Banner Section */
.banner-section {
    background: linear-gradient(rgba(45, 49, 148, 0.8), rgba(45, 49, 148, 0.8)),
    url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?q=80&w=1920&auto=format&fit=crop') center/cover;
    color: #fff;
    position: relative;
}

.banner-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.banner-text {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Right Sidebar */
.sidebar-right {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-light);
    position: sticky;
    top: 20px;
}

.sidebar-header {
    background: var(--secondary);
    color: #fff;
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.sidebar-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.sidebar-products {
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.sidebar-product {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.sidebar-product:hover {
    background: var(--light-bg);
}

.sidebar-product:last-child {
    border-bottom: none;
}

.sidebar-product img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.product-info h6 {
    font-size: 0.875rem;
    margin: 0 0 0.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.product-info .price {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 991.98px) {
    #header {
        padding: 5px !important;
    }

    .header-search .form-select {
        display: none;
    }

    .search-wrapper {
        margin: 0 1rem;
    }

    .header-search .form-control {
        padding-left: 1rem;
    }

    .header-ctn {
        gap: 1rem;
    }

    .header-ctn a span:not(.qty) {
        display: none;
    }

    .sidebar-right {
        display: none !important;
    }
}

/* Top header mobile specific */
@media (max-width: 767.98px) {
    #top-header .d-flex {
        justify-content: center !important;
    }

    #top-header .header-links li:not(.mobile-show) {
        display: none;
    }

    #top-header .header-links {
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    #top-header .social-links {
        gap: 1.5rem;
    }

    #top-header .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .search-wrapper {
        margin: 0 0.5rem;
    }

    .header-search .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.875rem;
    }

    .header-ctn {
        gap: 0.75rem;
    }

    #top-header .header-links {
        gap: 1.5rem;
    }

    #top-header .social-links {
        gap: 1rem;
    }
}


/* Footer Styles */
.footer {
    background: var(--header-bg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-column {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-title i {
    color: var(--accent);
    font-size: 1.1em;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* About Us Section */
.footer-about {
    max-width: 100%;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}

.footer-logo img {
    max-height: 40px;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.contact-info li:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.contact-info i {
    color: var(--accent);
    width: 18px;
    text-align: center;
}

/* Categories Section */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    border-radius: 6px;
    position: relative;
}

.footer-links a::before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 16px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* User Links Section */
.user-links {
    display: grid;
    gap: 12px;
}

.user-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.user-link:hover {
    background: rgba(237, 25, 37, 0.15);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(237, 25, 37, 0.2);
}

.user-link i {
    color: var(--accent);
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.user-link:hover i {
    transform: scale(1.1);
}

/* Map Section */
.footer-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-iframe {
    width: 100%;
    height: 280px;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.footer-map:hover .map-iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-overlay h6 {
    margin: 0 0 4px 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.map-overlay p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Social Links */
footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(237, 25, 37, 0.4);
    border-color: var(--accent);
}

/* Newsletter */
.newsletter-form {
    margin-top: 24px;
}

.newsletter-input {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.newsletter-input input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.925rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(237, 25, 37, 0.2);
}

.newsletter-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(237, 25, 37, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.925rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.925rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-column {
        margin-bottom: 32px;
    }

    .footer-title {
        font-size: 1.125rem;
        margin-bottom: 20px;
    }

    .map-iframe {
        height: 220px;
    }

    .newsletter-input {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    footer .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 32px 0 24px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .map-iframe {
        height: 200px;
    }

    .user-link {
        padding: 10px 12px;
        font-size: 0.925rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}
.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}
.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}
.footer-column:nth-child(4) {
    animation-delay: 0.4s;
}

/* Service Cards Hover Effects */
.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--accent) !important;
}
