@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #0b1c39;
    --accent-red: #ff6b6b;
    --accent-gradient: linear-gradient(135deg, #ff6b6b, #ee5253);
    --text-dark: #111827; 
    --text-light: #6b7280; 
    --bg-light: #f9fafb;
    --card-bg: #ffffff;
    --container-width: 1280px;
}

body {
    margin: 0;
    background-color: var(--bg-light);
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* User can copy text now */
}

/* --- Container Utility --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

/* --- Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Top Bar --- */
.top-bar {
    background-color: #061021;
    color: #e0e0e0;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-left-info {
    display: flex;
    gap: 25px;
}
.top-left-info a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}
.top-left-info a:hover {
    color: #ffffff;
}
.top-left-info a i {
    color: #ff6b6b !important;
    margin-right: 8px;
    font-size: 14px;
}
.top-right-social a {
    color: #e0e0e0;
    margin-left: 15px;
    transition: color 0.3s;
}
.top-right-social a:hover {
    color: var(--accent-red);
}

/* --- Navigation --- */
.main-nav {
    background-color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}
.nav-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    order: 0;
}
.nav-logo span {
    color: var(--accent-red);
}
.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.nav-menu li {
    margin-left: 30px;
    position: relative;
}
.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: color 0.3s ease;
}
.nav-menu a i {
    font-size: 16px;
    color: #b2bec3;
    transition: color 0.3s ease;
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--accent-red);
}
.nav-menu a:hover i, .nav-menu a.active i {
    color: var(--accent-red);
}

/* --- Dropdown Menu Styles --- */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    z-index: 1100;
    border-top: 3px solid var(--accent-red);
    animation: fadeInY 0.3s ease;
}
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 150px;
    background: transparent;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    margin: 0;
    padding: 0;
}
.dropdown-menu a {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    display: block;
    border-bottom: 1px solid #f3f4f6;
}
.dropdown-menu a:last-child {
    border-bottom: none;
}
.dropdown-menu a:hover {
    background-color: #f9fafb;
    color: var(--accent-red);
    padding-left: 25px;
}
@keyframes fadeInY {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Hamburger Menu --- */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-blue);
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Page Header --- */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), #1e272e);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}
.page-header h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* --- Search Bar --- */
.search-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
}
.search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}
.search-box {
    width: 100%;
    padding: 18px 60px 18px 30px;
    font-size: 16px;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.search-box:focus {
    box-shadow: 0 10px 25px -5px rgba(255, 107, 107, 0.25), 0 5px 10px -5px rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.2);
}
.search-icon-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.4);
    cursor: pointer;
    transition: transform 0.2s;
}
.search-icon-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

/* --- Quick Actions Bar --- */
.quick-actions-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 50; 
}
.quick-btn {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
    background: white;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.quick-btn i {
    color: #9ca3af;
    font-size: 14px;
    transition: color 0.2s;
}
.quick-btn:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background-color: #fff1f2;
}
.quick-btn:hover i {
    color: var(--accent-red);
}
.quick-btn.active {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}
.quick-btn.active i {
    color: white;
}

/* --- Category Popup --- */
.category-popup {
    position: absolute;
    top: 120px; 
    left: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    z-index: 2000;
    border: 1px solid #f3f4f6;
}
@media (min-width: 1024px) {
    .category-popup {
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
    }
}
.category-popup.show {
    display: grid;
    animation: slideDown 0.2s ease-out;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px) translateX(-50%); }
    to { opacity: 1; transform: translateY(0) translateX(-50%); }
}
@media (max-width: 1023px) {
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}
.category-popup .filter-button {
    padding: 8px 12px;
    font-size: 13px;
    text-align: center;
    border-radius: 50px; 
    background: transparent; 
    border: 1px solid #e5e7eb; 
    color: var(--text-dark);
    margin: 0;
    cursor: pointer;
    transition: all 0.2s;
}
.category-popup .filter-button:hover, 
.category-popup .filter-button.active {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
}

/* --- CARD STYLES --- */
.card-container {
    display: grid;
    width: 100%;
    gap: 16px; 
    box-sizing: border-box;
    padding-bottom: 20px;
    margin-top: 20px;
}
.card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: transparent; 
    border: none;
    box-shadow: none;
    cursor: pointer;
    overflow: visible;
    transition: transform 0.2s ease;
}
.card-img-wrapper {
    width: 100%;
    height: 180px; 
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #f3f4f6; 
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    margin-bottom: 6px; 
}
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card:hover .card-img-wrapper {
    box-shadow: 0 10px 25px -5px rgba(255, 107, 107, 0.25), 0 5px 10px -5px rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.2); 
}
.card:hover img {
    transform: skewX(-2deg) scale(1.05); 
}
.card h6 {
    padding: 0 0 26px 6px;
    margin: 0;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    background: transparent; 
    text-align: left;
    letter-spacing: -0.02em; 
    transition: color 0.2s ease;
    text-decoration: none !important;
}
.card:hover h6 {
    color: var(--accent-red);
    text-decoration: none;
}

/* --- PREMIUM ICON --- */
.card-icon-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}
.icon-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 12px;
}
.icon-premium { 
    background: var(--accent-gradient);
    color: white;
}

/* --- PAGINATION --- */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 20px 0 60px;
}
.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}
.page-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}
.page-btn:hover {
    background-color: #f3f4f6;
    color: var(--accent-red);
}
.page-btn.active {
    background: var(--accent-gradient);
    color: white;
}
.page-btn.dots {
    cursor: default;
    background: transparent;
    color: #9ca3af;
}
.page-arrow {
    background: var(--primary-blue);
    color: white;
    width: 38px;
    height: 38px;
}
.page-arrow:hover {
    background: var(--accent-red);
    color: white;
}
.page-arrow:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

/* --- Floating Buttons --- */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transition: opacity 0.3s ease;
}
.floating-container.hide {
    display: none;
}
.contact-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.float-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 20px;
}
.float-btn:hover {
    background: var(--accent-red);
    transform: scale(1.1) translateX(-5px);
}
.scroll-top-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
    opacity: 0; 
    pointer-events: none;
    transform: translateY(20px);
}
.scroll-top-btn.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.scroll-top-btn:hover {
    background: var(--accent-gradient);
    transform: translateY(-3px);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: auto;
    border-top: 4px solid var(--accent-red);
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}
.footer-logo span {
    color: var(--accent-red);
}
.footer-desc {
    color: #b2bec3;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}
.social-icon:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    color: white;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #b2bec3;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}
.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #b2bec3;
    font-size: 14px;
}
.contact-info i {
    color: var(--accent-red);
    margin-top: 4px;
}
.contact-info a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    gap: 10px;
}
.contact-info a:hover {
    color: var(--accent-red);
}
.copyright-area {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 50px;
    color: #636e72;
    font-size: 13px;
}

/* --- Contact Page Layout --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-bottom: 60px;
}
.contact-info-side {
    padding-right: 20px;
    border-right: 1px solid #eee;
}
.contact-form-side {
    padding-left: 20px;
}
.info-item { margin-bottom: 30px; }
.info-item h3 { color: var(--primary-blue); margin-bottom: 10px; font-size: 18px; }
.info-item p { color: var(--text-light); font-size: 15px; }

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 0; 
}
.form-group label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: block;
}
.form-group input, .form-group textarea {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent-red);
    outline: none;
}
.required-star {
    color: var(--accent-red);
}
.submit-btn {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Captcha Highlight Style */
.captcha-highlight {
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 15px;
    border-radius: 8px;
}
.captcha-group input {
    width: 50%;
    display: inline-block;
}
.error-text {
    color: red;
    font-size: 12px;
    margin-left: 10px;
}

/* Form Success/Error Message */
.form-message {
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    display: none; 
    font-size: 14px;
    text-align: center;
}
.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #34d399;
}
.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

/* --- Content Pages (Terms/Privacy) --- */
.content-card {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-bottom: 60px;
}
.section-title {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}
.text-content {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(11, 28, 57, 0.8);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}
.modal-content {
    background-color: var(--bg-light); 
    margin: auto;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.modal-content img#modalImage {
    width: 100%;
    object-fit: cover;
}
.modal_body { padding: 25px; } 
.modal_title { font-size: 28px; color: var(--primary-blue); margin-bottom: 5px; }
.modal_sub_text { color: var(--accent-red); font-weight: 600; margin-bottom: 10px; }
.close {
    position: absolute; top: 15px; right: 15px;
    background: rgba(0,0,0,0.6); color: white;
    width: 35px; height: 35px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    cursor: pointer; z-index: 10; transition: background 0.3s;
}
.close:hover { background: var(--accent-red); }

/* --- MODAL SOCIAL ICONS --- */
.chat-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.modal-social-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.modal-social-btn:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}

/* --- Responsive Media Queries --- */
@media (min-width: 1280px) {
    .card-container { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .card-container { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .card-container { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .contact-info-side { border-right: none; border-bottom: 1px solid #eee; padding-bottom: 30px; }
}
@media (max-width: 767px) {
    .hamburger { display: block; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        width: 70%;
        gap: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        background-color: #ffffff;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        padding: 40px 30px;
        box-sizing: border-box;
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px;
        border-right: 1px solid rgba(0,0,0,0.05);
        overflow-y: auto;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 10px 0; width: 100%; }
    .nav-menu a { 
        font-size: 16px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }
    .nav-menu a.active {
        color: var(--accent-red);
        padding-left: 10px;
        border-left: 3px solid var(--accent-red);
        border-bottom: none;
    }
    .nav-menu li.dropdown:hover .dropdown-menu {
        display: block;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
        border-top: none;
        border-left: 2px solid var(--accent-red);
        background: #f9fafb;
        animation: none;
    }
    .dropdown-menu a {
        padding-left: 30px;
        font-size: 14px;
    }
    .card-container { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 8px; 
    }
    .card-img-wrapper { height: 130px; }
    .card h6 { 
        font-size: 14px; 
        text-align: left;
    }
    .contact-wrapper { grid-template-columns: 1fr; gap: 30px; padding: 30px; }
    .contact-info-side { border-right: none; border-bottom: 1px solid #eee; padding-bottom: 30px; padding-right: 0; }
    .contact-form-side { padding-left: 0; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-group { margin-bottom: 20px; }
    .nav-logo { font-size: 24px; }
    .nav-container { justify-content: space-between; padding: 0 10px;} 
    .top-bar-content { flex-direction: column; gap: 5px; text-align: center; }
    .floating-container { right: 15px; bottom: 15px; }
    .footer-col { margin-bottom: 30px; }
    .quick-actions-bar {
        justify-content: flex-start; 
        overflow-x: auto; 
        padding-bottom: 5px; 
        flex-wrap: nowrap; 
        gap: 10px;
        margin-left: -20px; 
        margin-right: -20px;
        padding-left: 20px; 
        padding-right: 20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .quick-actions-bar::-webkit-scrollbar { display: none; }
    .quick-btn { flex-shrink: 0; }
    .category-popup {
        top: 120px; 
        width: auto; 
        left: 20px;
        right: 20px;
        transform: none; 
    }
}
@media (max-width: 400px) {
    .top-left-info {
        flex-direction: column;
        gap: 5px;
        align-items: center;
        width: 100%;
    }
    
    .top-right-social {
        margin-top: 5px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}