.home-body {
    min-height: 100vh;
    background: linear-gradient(160deg, #f1f5ff 0%, #0b3b8a 100%);
    color: #0b1226;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* generic responsive container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    nav ul {
        flex-direction: column;
    }
    body {
        font-size: 14px;
    }
}

/* ========== RESPONSIVE HERO SECTION ========== */

.hero-container {
    width: 100%;
    max-width: 1600px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 90;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo styling - Desktop left, Mobile top */
.hero-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.02);
}

/* Slider styling - Desktop right, Mobile center */
.hero-slider {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* use aspect ratio so the box scales with width */
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 50;
    animation: rgbGlow 4s infinite;
    border: 3px solid rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
    /* use contain so portrait images don't crop vertically; will letterbox instead */
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000; /* dark backdrop when image is narrow */
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    border-radius: 20px;
}

.slide.active {
    opacity: 1;
}

.slide.fade {
    opacity: 1;
}

/* Slider navigation buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 60;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 65;
}

/* Top Right Logo */
.top-right-logo {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 95;
    padding: 5px;
}

.top-right-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 4px;
}

.taskbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: linear-gradient(90deg, #0f172a 0%, #0b1226 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    overflow: visible;
}

@media (max-width: 600px) {
    .taskbar {
        height: 65px;
        padding: 0 15px;
    }
    /* shrink slider for small phones */
    .slider-container {
        aspect-ratio: 4 / 3;
    }
}

.taskbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.taskbar-logo {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-name {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 120px;
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 13px;
        min-width: 100px;
    }
}

@media (max-width: 600px) {
    .brand-name {
        font-size: 11px;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 10px;
        min-width: 70px;
    }
}

.taskbar-right {
    position: relative;
    z-index: 102;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ============================================
   MENU TOGGLE BUTTON - DESKTOP + MOBILE
   ============================================ */

.menu-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 103;
    min-width: 45px;
    min-height: 45px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.menu-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle-btn:active {
    background: rgba(255, 255, 255, 0.2);
}

/* Hamburger Icon */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    height: 18px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Desktop: Show three dots (vertical menu) */
@media (min-width: 769px) {
    .hamburger-icon {
        flex-direction: row;
        gap: 3px;
    }
    
    .hamburger-icon span {
        width: 4px;
        height: 4px;
        margin: 0 2px;
    }
}

/* ============================================
   DROPDOWN MENU
   ============================================ */

.dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    min-width: 180px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    pointer-events: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background: rgba(102, 126, 234, 0.2);
    padding-left: 24px;
}

.header-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    min-width: 180px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    pointer-events: none;
    overflow: hidden;
}

.header-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.menu-list li {
    margin: 0;
}

.menu-list a {
    display: block;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-list li:last-child a {
    border-bottom: none;
}

.menu-list a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.menu-list a:active {
    background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   MENU OVERLAY (MOBILE)
   ============================================ */

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 9998;
    transition: background 0.3s ease;
}

.menu-overlay.active {
    display: block;
    background: rgba(0, 0, 0, 0.4);
}

/* ============================================
   MOBILE RESPONSIVE (max-width: 768px)
*/

/* Donation form: professional, two-column, responsive */
.donation-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 20px;
}

.donation-card {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    background: var(--card-bg);
    color: #0b1226;
    padding: 28px;
    border-radius: 14px;
    box-shadow: var(--shadow-1);
    align-items: start;
}

.donation-form .form-row { margin-bottom: 14px; }
.donation-form .form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e6e9f8;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.donation-form .form-input:focus { border-color: #667eea; box-shadow: 0 6px 20px rgba(102,126,234,0.12); outline: none; }

.donation-summary h3 { margin-top: 0; margin-bottom: 12px; font-size: 18px; }
.donation-summary { border-left: 1px solid #f0f1f7; padding-left: 20px; }
.donation-summary .summary-amount { font-size: 18px; margin-bottom: 8px; }
.donation-summary .summary-text { color: #606778; font-size: 13px; margin-bottom: 12px; }

.amount-input-row { display:flex; flex-direction:column; gap:10px; }
.amount-suggestions { display:flex; gap:10px; flex-wrap:wrap; }
.suggest-btn { padding: 8px 12px; background: #f3f5ff; border: 1px solid #e6e9ff; border-radius: 8px; font-weight: 700; cursor: pointer; color: #0b1226; }
.suggest-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(102,126,234,0.08); }

.amount-input { width:100%; }
.pay-btn { margin-top: 12px; display:block; width:100%; }

/* Small screens: stack columns */
@media (max-width: 880px) {
    .donation-card { grid-template-columns: 1fr; }
    .donation-summary { border-left: none; padding-left: 0; }
}

@media (max-width: 420px) {
    .donation-card { padding: 18px; gap: 12px; }
    .suggest-btn { padding: 8px 10px; font-size: 13px; }
}

@media (max-width: 768px) {
    .header-dropdown {
        position: fixed;
        right: -100%;
        top: 70px;
        left: auto;
        width: 100%;
        max-width: 300px;
        border-radius: 0;
        border: none;
        border-left: 1px solid rgba(255, 255, 255, 0.15);
        height: calc(100vh - 70px);
        overflow-y: auto;
        transform: translateX(100%);
    }
    
    .header-dropdown.active {
        right: 0;
        transform: translateX(0);
    }
    
    .menu-list a {
        padding: 16px 20px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .menu-overlay {
        display: block;
    }
}

/* Dashboard toggle button */
.dash-toggle {
    position: fixed;
    left: 18px;
    top: 80px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    cursor: pointer;
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

@media (max-width: 768px) {
    .dash-toggle {
        width: 44px;
        height: 44px;
        font-size: 16px;
        left: 15px;
        top: 75px;
    }
}

@media (max-width: 600px) {
    .dash-toggle {
        width: 40px;
        height: 40px;
        font-size: 16px;
        left: 12px;
        top: 70px;
    }
}

/* Slider dots styling */
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 5px;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Desktop (>1024px) - Logo left, Slider right */
@media (min-width: 1025px) {
    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        max-width: 1400px;
    }
    
    .hero-logo {
        order: 1;
        flex-basis: 350px;
    }
    
    .hero-slider {
        order: 2;
        flex: 1;
        min-width: 500px;
    }
    
    .slider-container {
        width: 100%;
        height: 400px;
    }
}

/* Tablet (768px - 1024px) - Stack vertically */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        max-width: 600px;
    }
    
    .hero-logo img {
        width: 300px;
        height: 300px;
    }
    
    .slider-container {
        width: 100%;
        height: 340px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

/* Medium tablet (600px - 768px) */
@media (max-width: 768px) {
    .hero-container {
        padding: 0 15px;
        gap: 20px;
    }
    
    .hero-logo img {
        width: 260px;
        height: 260px;
    }
    
    .slider-container {
        width: 100%;
        height: 290px;
    }
    
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
    
    .slider-dots {
        gap: 8px;
    }
    
    .slider-dot {
        width: 9px;
        height: 9px;
    }
    
    .slider-dot.active {
        width: 25px;
    }
}

/* Small mobile (480px - 600px) */
@media (max-width: 600px) {
    .hero-container {
        padding: 0 10px;
        gap: 15px;
        margin: 20px auto;
    }
    
    .hero-logo img {
        width: 220px;
        height: 220px;
    }
    
    .slider-container {
        width: 100%;
        height: 240px;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 6px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dot.active {
        width: 20px;
    }
}

/* Extra small mobile (<480px) */
@media (max-width: 480px) {
    .hero-container {
        padding: 0 8px;
        gap: 12px;
        margin: 15px auto;
    }
    
    .hero-logo img {
        width: 180px;
        height: 180px;
    }
    
    .slider-container {
        width: 100%;
        height: 200px;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .slider-dots {
        bottom: 12px;
        gap: 5px;
    }
    
    .slider-dot {
        width: 7px;
        height: 7px;
    }
    
    .slider-dot.active {
        width: 18px;
    }
}

/* Dashboard sidebar styles */
.dashboard {
    position: fixed;
    left: -320px;
    top: 0;
    bottom: 0;
    width: 300px;
    background: linear-gradient(180deg, #ffffff, #f2f5ff);
    box-shadow: 8px 0 30px rgba(2,6,23,0.15);
    transition: left 320ms cubic-bezier(.2,.9,.2,1);
    z-index: 120;
    padding: 18px;
    overflow: auto;
}

.dashboard.open {
    left: 0;
}

@media (max-width: 600px) {
    .dashboard {
        width: 280px;
        left: -280px;
        padding: 15px;
    }
}

.dashboard-header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:18px;
    gap: 8px;
}

.dash-close {
    background:transparent;border:none;font-size:18px;cursor:pointer;padding:6px;border-radius:6px
}

.dashboard-nav a{display:block;padding:12px;border-radius:8px;color:#06203a;text-decoration:none;font-weight:700;margin-bottom:8px}
.dashboard-nav a:hover{background:rgba(6,32,58,0.06)}

.dash-overlay{position:fixed;inset:0;background:rgba(6,16,34,0.35);z-index:115;opacity:0;pointer-events:none;transition:opacity 240ms ease}
.dash-overlay.show{opacity:1;pointer-events:auto}

.content-area{padding:100px 20px 20px}
/* RGB Lighting Animation */
@keyframes rgbGlow {
    0% { box-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000, inset 0 0 20px rgba(255,0,0,0.3); }
    33% { box-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00, inset 0 0 20px rgba(0,255,0,0.3); }
    66% { box-shadow: 0 0 20px #0000ff, 0 0 40px #0000ff, inset 0 0 20px rgba(0,0,255,0.3); }
    100% { box-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000, inset 0 0 20px rgba(255,0,0,0.3); }
}

/* Logout Confirmation Modal */
.logout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.logout-modal.show {
    display: flex;
}

.logout-modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logout-modal-content h2 {
    color: #0b1226;
    margin-bottom: 12px;
    font-size: 20px;
}

.logout-modal-content p {
    color: #666;
    margin-bottom: 24px;
    font-size: 14px;
}

.logout-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.logout-modal-buttons button {
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.logout-yes-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.logout-yes-btn:hover {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.logout-no-btn {
    background: #f0f0f0;
    color: #0b1226;
    border: 1px solid #ddd;
}

.logout-no-btn:hover {
    background: #e0e0e0;
}

/* Contact bar pinned to bottom */
.contact-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: rgba(255,255,255,0.06);
    color: #0a0909;
    padding: 12px 20px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -8px 20px rgba(2,6,23,0.12);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 60;
    backdrop-filter: blur(8px);
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .contact-bar {
        padding: 10px 15px;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .contact-bar {
        padding: 10px 12px;
        gap: 6px;
    }
}

.contact-bar h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.contact-item {
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
    background: rgba(220, 38, 38, 0.15);
    padding: 5px 8px;
    border-radius: 4px;
    border: 1px solid #000;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

@media (max-width: 600px) {
    .contact-item {
        font-size: 11px;
        padding: 4px 6px;
    }
}

.contact-separator {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    flex-shrink: 0;
    background: transparent;
    padding: 4px 6px;
}

.contact-inner { display:flex; flex-direction: column; gap:6px; align-items:flex-start; }
.contact-sep { display: none; }

/* Toggle button for small devices */
.contact-toggle {
    display: none;
    position: fixed;
    right: 16px;
    bottom: 20px;
    z-index: 70;
    background: linear-gradient(135deg,#ef4444,#dc2626);
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(220,38,38,0.25);
    cursor: pointer;
    font-size: 14px;
}

.contact-toggle:hover {
    background: linear-gradient(135deg,#dc2626,#b91c1c);
}

.contact-close {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

/* Small-screen behavior: show toggle, move contact bar to bottom, collapsible */
@media (max-width: 1024px) {
    .contact-toggle { display: block; }
    .contact-close { display: block; }

    .contact-bar {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        transform: translateY(100%);
        border-radius: 12px 12px 0 0;
        padding: 14px 18px;
        max-width: 100%;
        transition: transform 280ms ease;
        flex-wrap: wrap;
    }

    .contact-bar.open {
        transform: translateY(0);
    }

    .contact-bar h2 { 
        font-size: 16px;
        order: 1;
    }
    
    .contact-close {
        order: 0;
    }
    
    .contact-item {
        font-size: 12px;
        padding: 5px 8px;
        order: 2;
    }
}

@media (max-width: 768px) {
    .contact-bar {
        padding: 12px 14px;
        gap: 8px;
    }
    
    .contact-item {
        font-size: 11px;
        padding: 4px 6px;
    }
    
    .contact-bar h2 {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .contact-bar {
        padding: 10px 12px;
        gap: 6px;
    }
    
    .contact-item {
        font-size: 10px;
        padding: 3px 5px;
    }
    
    .contact-bar h2 {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact-bar {
        padding: 8px 10px;
        gap: 5px;
    }
    
    .contact-item {
        font-size: 9px;
        padding: 2px 4px;
    }
    
    .contact-bar h2 {
        font-size: 12px;
    }
}

@media (max-width: 300px) {
    .contact-bar { max-width: 320px; padding: 8px 10px; }
    .contact-item { font-size: 8px; }
}

@media (max-width: 900px) {
    .contact-bar { top: auto; bottom: 0; }
}

/* Footer contact styling */
/* footer removed per request */