/* ===== HEADER/NAVBAR CSS - BAŞKENT PSİKOLOJİ AKADEMİSİ ===== */
/* Temiz ve modern header tasarımı */

/* Ana Header Container */
.header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
    border-bottom: 2px solid #dc143c;
    padding: 0;
    margin: 0;
}

/* Body scroll lock when mobile menu open */
body.no-scroll { overflow: hidden; }

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

/* Logo Bölümü */
.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo a {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

/* Navigation Bölümü */
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1; /* Logo ile buttons arasında kalan alanı kapla */
    position: static; /* Overlap'ı önlemek için absolute kaldırıldı */
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #dc143c;
    background: rgba(220, 20, 60, 0.1);
}

/* Dropdown Menü - Modern Glassmorphism Style */
.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 20px;
    width: 850px;
    max-width: 95vw;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 
                0 0 0 1px rgba(220, 20, 60, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    pointer-events: none;
    padding: 28px;
    margin-top: 8px;
    overflow: hidden;
    box-sizing: border-box;
}

.dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #dc143c 20%, 
        #ff1744 50%, 
        #dc143c 80%, 
        transparent 100%);
    border-radius: 20px 20px 0 0;
}

/* Hover ile otomatik açma devre dışı: sadece JS class'larıyla açılır (bkz: .hover-active) */

/* JS ile açıldığında modern animasyon */
.dropdown.hover-active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
    animation: dropdownSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.dropdown .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Hover ile ikon döndürme devre dışı: sadece .hover-active durumunda döner */

.dropdown.hover-active .fa-chevron-down {
    transform: rotate(180deg);
}

/* Mega menu (moved from inline) */
.mega-menu { min-width: 800px; max-width: 1000px; padding: 1.5rem; }
.mega-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
@media (max-width: 900px) {
  .mega-menu { min-width: 0; max-width: 100vw; }
  .mega-categories { grid-template-columns: 1fr; gap: 1rem; }
}
/* Category Sections - Modern Design */
.category-section { 
    display: flex; 
    flex-direction: column; 
}

.category-header { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    margin-bottom: 1rem; 
    padding-bottom: 0.75rem; 
    border-bottom: 2px solid #dc143c; 
    position: relative;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #dc143c, #ff1744);
    border-radius: 2px;
}

.category-icon { 
    width: 28px; 
    height: 28px; 
    color: #dc143c; 
    font-size: 1.3rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 8px;
    padding: 4px;
}

.category-title { 
    font-weight: 700; 
    color: #fff; 
    font-size: 1.1rem; 
    letter-spacing: 0.3px;
}

.category-educations { 
    display: flex; 
    flex-direction: column; 
    gap: 0.6rem; 
}

.edu-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 0.9rem; 
    padding: 0.8rem; 
    border-radius: 12px; 
    color: #ddd; 
    text-decoration: none; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    min-height: 60px;
}

.edu-item:hover { 
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.12), rgba(220, 20, 60, 0.05)); 
    color: #fff; 
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.15);
}

.edu-thumb { 
    width: 36px; 
    height: 36px; 
    border-radius: 10px; 
    overflow: hidden; 
    background: linear-gradient(135deg, #dc143c, #ff1744);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.edu-item:hover .edu-thumb {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.5);
}

.edu-thumb img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
}

.edu-text { 
    flex: 1; 
    min-width: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.edu-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.category-footer { 
    margin-top: 1.2rem; 
}

.category-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.6rem; 
    color: #dc143c; 
    font-weight: 600; 
    font-size: 0.9rem; 
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(220, 20, 60, 0.08);
}

.category-link:hover { 
    color: #ff1744; 
    background: rgba(220, 20, 60, 0.15);
    transform: translateX(4px);
}

.dropdown-menu .footer-link { 
    margin-top: 1.5rem; 
    display: block; 
    text-align: center; 
    padding: 1rem; 
    border-top: 1px solid rgba(220, 20, 60, 0.2); 
    color: #dc143c; 
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(220, 20, 60, 0.05));
    transition: all 0.3s ease;
}

.dropdown-menu .footer-link:hover {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), rgba(220, 20, 60, 0.1));
    transform: translateY(-2px);
}

/* Two-stage mega menu layout - Modern Style */
.mega-container { 
    display: grid; 
    grid-template-columns: 260px 1fr; 
    gap: 1.5rem; 
    align-items: start;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.mega-sidebar { 
    display: flex; 
    flex-direction: column; 
    gap: 6px; 
    border-right: 1px solid rgba(220, 20, 60, 0.15); 
    padding-right: 1.5rem; 
    position: relative;
}

.mega-sidebar::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(220, 20, 60, 0.2) 20%, 
        rgba(220, 20, 60, 0.4) 50%, 
        rgba(220, 20, 60, 0.2) 80%, 
        transparent 100%);
}

.mega-cat-item { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding: 12px 14px; 
    border-radius: 12px; 
    color: #bbb; 
    text-decoration: none; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    font-weight: 500; 
    font-size: 14px;
    border: 1px solid transparent; 
    background: transparent;
    position: relative;
}

.mega-cat-item:hover { 
    background: linear-gradient(135deg, rgba(220,20,60,0.08), rgba(255,23,68,0.05)); 
    color: #fff; 
    transform: translateX(4px);
    border-color: rgba(220,20,60,0.2);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.15);
}

.mega-cat-item.active { 
    background: linear-gradient(135deg, rgba(220,20,60,0.18), rgba(220,20,60,0.08)); 
    color: #fff; 
    border-color: rgba(220,20,60,0.35); 
    box-shadow: 0 0 0 1px rgba(220,20,60,0.2),
                inset 0 0 20px rgba(220, 20, 60, 0.08);
    transform: translateX(0);
}

.mega-cat-item.active::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, #dc143c, #ff1744);
    border-radius: 0 2px 2px 0;
}

.mega-content { 
    position: relative; 
    min-height: 280px; 
    max-height: 450px; 
    overflow-y: auto; 
    overflow-x: hidden;
    padding: 4px 8px 8px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(220, 20, 60, 0.5) transparent;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.mega-content::-webkit-scrollbar {
    width: 6px;
}

.mega-content::-webkit-scrollbar-track {
    background: transparent;
}

.mega-content::-webkit-scrollbar-thumb {
    background: rgba(220, 20, 60, 0.4);
    border-radius: 10px;
}

.mega-content::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 20, 60, 0.6);
}

.mega-panel { 
    display: none; 
    animation: panelFadeIn 0.3s ease-in-out;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.mega-panel.active { 
    display: block; 
    overflow: hidden;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-educations { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px 14px; 
    width: 100%;
    box-sizing: border-box;
}

.category-educations > * {
    box-sizing: border-box;
}

.edu-item { 
    padding: 10px; 
    border-radius: 10px;
    transition: all 0.3s ease;
}

.edu-item:hover {
    background: rgba(220, 20, 60, 0.05);
    transform: translateY(-2px);
}

.category-footer { 
    margin-top: 1rem; 
}

@media (max-width: 900px) {
  /* Dropdown menü genişliği */
  .dropdown .dropdown-menu {
    width: 100%;
    max-width: 100vw;
    left: 0;
    right: 0;
    transform: translateX(0) translateY(-10px) scale(0.95);
    padding: 1.5rem;
  }
  
  .dropdown.hover-active .dropdown-menu {
    transform: translateX(0) translateY(0) scale(1);
  }
  
  /* Mega menu container */
  .mega-container { 
    grid-template-columns: 1fr; 
    gap: 1rem;
  }
  
  /* Sidebar mobil düzeni */
  .mega-sidebar { 
    border-right: 0; 
    border-bottom: 2px solid rgba(220, 20, 60, 0.3); 
    padding-right: 0; 
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .mega-sidebar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #dc143c 25%, 
        #ff1744 50%, 
        #dc143c 75%, 
        transparent 100%);
  }
  
  /* Kategori itemler mobil */
  .mega-cat-item {
    padding: 1rem 1.25rem;
    margin: 0.4rem 0;
    border-radius: 10px;
  }
  
  .mega-cat-item.active::before {
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    border-radius: 0 10px 10px 0;
  }
  
  /* Eğitim kartları mobil */
  .category-educations {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .edu-item {
    padding: 1rem;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  
  .edu-thumb {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
  }
  
  .edu-title {
    font-size: 0.9rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
  }
  
  /* Header bilgisi */
  .category-header {
    padding-bottom: 0.6rem;
  }
  
  .category-title {
    font-size: 1rem;
  }
  
  .category-icon {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 0 0 auto;
}

.btn-payment,
.btn-login {
    padding: 9px 18px;
    border: none;
    border-radius: 22px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-payment {
    background: linear-gradient(45deg, #dc143c, #ff1744);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.btn-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

.btn-login {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-login:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.call-btn {
    background: linear-gradient(45deg, #dc143c, #ff1744);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
    .header { position: relative; }
    .header .container { gap: 1rem; height: 70px; }
    .logo img { height: 50px; }
    .nav-menu { gap: 0; }
    .nav-menu li a { font-size: 17px; line-height: 1.25; padding: 14px 20px; }
    .btn-payment, .btn-login { padding: 10px 20px; font-size: 13px; }
    .dropdown .dropdown-menu { min-width: 0; padding: 12px 0; }

    /* Tablet ve mobilde hamburger menü aktif olsun */
    .hamburger { display: flex; position: relative; z-index: 1002; cursor: pointer; }
    .nav {
        position: fixed;
        top: 70px; /* header height */
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
        border-top: 1px solid #dc143c;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, transform 0.25s ease;
        z-index: 1001;
        box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
        display: none;
    }
    .nav.active { transform: translateY(0); opacity: 1; visibility: visible; display: block !important; pointer-events: auto; }
    .nav-menu { flex-direction: column; gap: 0; padding: 8px 0 20px; }
    .nav-menu li { width: 100%; }
    .nav-menu li a { padding: 15px 25px; border-bottom: 1px solid rgba(220, 20, 60, 0.1); justify-content: space-between; font-size: 16px; }
    .nav-menu li:last-child a { border-bottom: none; }
    .dropdown .dropdown-menu { position: static; transform: none; opacity: 0; visibility: hidden; max-height: 0; overflow: hidden; background: rgba(220, 20, 60, 0.08); margin: 0; padding: 0; border: none; border-radius: 0; box-shadow: none; transition: max-height 0.28s ease, opacity 0.2s ease; pointer-events: auto; width: 100%; }
    .dropdown.mobile-active .dropdown-menu { opacity: 1; visibility: visible; max-height: 1000px; padding: 6px 0 10px; }
    .dropdown-menu a { padding: 12px 20px !important; font-size: 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .mega-container { display: block; }
    .mega-sidebar { border-right: 0; padding: 0; }
    .mega-cat-item { padding: 12px 20px; border-radius: 0; }
    .mega-content { padding: 4px 10px 10px; }
    .mega-content { max-height: 60vh; overflow-y: auto; }
    .category-educations { display: flex; flex-direction: column; gap: 6px; }
    .edu-item { padding: 8px 10px; }
    .edu-thumb { width: 28px; height: 28px; }
    .category-footer { padding: 6px 10px 0; }
    .nav-buttons { flex-direction: column; width: 100%; padding: 14px 20px 20px; gap: 10px; border-top: 1px solid rgba(220, 20, 60, 0.15); }
    .btn-payment, .btn-login { width: 100%; justify-content: center; padding: 12px 20px; font-size: 15px; }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .header {
        padding: 0;
        margin: 0;
        top: 0;
    }
    
    .header .container {
        grid-template-columns: auto 1fr auto;
        height: 70px;
        padding: 0 15px;
        margin: 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav {
        position: fixed;
        top: 70px; /* header height at mobile */
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
        border-top: 1px solid #dc143c;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, transform 0.25s ease;
        z-index: 9999;
        box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
        display: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        pointer-events: none;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        display: block !important;
        pointer-events: auto;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        padding: 15px 25px;
        border-bottom: 1px solid rgba(220, 20, 60, 0.1);
        justify-content: space-between;
        font-size: 16px;
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        background: rgba(220, 20, 60, 0.1);
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        transition: all 0.3s ease;
        pointer-events: auto;
        width: 100%;
    }
    
    .dropdown.mobile-active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: none;
        padding: 1rem 0;
    }
    
    .mega-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mega-sidebar {
        border-right: 0;
        border-bottom: 2px solid rgba(220, 20, 60, 0.3);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    
    .mega-cat-item {
        padding: 1rem 1.25rem;
        margin: 0.3rem 0;
        border-radius: 8px;
    }
    
    .mega-cat-item.active::before {
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
    }
    
    .mega-content {
        max-height: none;
        overflow-y: visible;
    }
    
    .category-educations {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .edu-item {
        padding: 1rem;
        flex-direction: row;
        align-items: center;
    }
    
    .edu-thumb {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .edu-title {
        font-size: 0.88rem;
        line-height: 1.4;
    }
    
    .dropdown-menu a {
        padding: 12px 25px !important;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
        padding: 20px 25px;
        gap: 10px;
    }
    
    .btn-payment,
    .btn-login {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .header .container {
        padding: 0 10px;
        min-height: 60px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .nav {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .nav-menu {
        padding: 0 1rem;
    }
    
    .nav-buttons {
        padding: 1rem;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}
