/* Tablet Header - Optimized for 768px-1199px screens */

/* Tablet Header Container */
.header-tablet {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247, 150, 83, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 70px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.header-tablet.scrolled {
    background: rgba(247, 150, 83, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Tablet Header Content */
.header-tablet-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    width: 100%;
    box-sizing: border-box;
}

/* Tablet Logo */
.header-tablet-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.header-tablet-logo:hover {
    transform: scale(1.02);
}

.header-tablet-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

/* Tablet Navigation - Condensed */
.header-tablet-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.header-tablet-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center;
}

.header-tablet-nav-item {
    position: relative;
}

.header-tablet-nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 0.3px;
    position: relative;
    border-radius: 4px;
}

.header-tablet-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.header-tablet-nav-link::after {
    content: '';
    position: absolute;
    top: 43%;
    right: 4%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateY(-5px);
}

.header-tablet-nav-link:hover::after {
    /* width: 70%; */
}

/* Tablet Dropdown */
.header-tablet-dropdown {
    position: relative;
}

.header-tablet-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-tablet-dropdown-toggle::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.header-tablet-dropdown:hover .header-tablet-dropdown-toggle::after {
    /* transform: rotate(180deg); */
}

.header-tablet-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #fff;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 10001;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.header-tablet-dropdown:hover .header-tablet-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
    display: block !important;
}

.header-tablet-dropdown-item {
    display: block;
}

.header-tablet-dropdown-link {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.header-tablet-dropdown-link:hover {
    background: #f8f9fa;
    color: #f79653;
    border-left-color: #f79653;
    padding-left: 20px;
}

/* Tablet CTA Button */
.header-tablet-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-tablet-cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.header-tablet-cta-button:hover {
    background: #fff;
    color: #f79653;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Tablet Body Padding */
body {
    padding-top: 70px;
}

/* Tablet Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-tablet-dropdown-menu {
    animation: slideInDown 0.3s ease;
}
