/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* css/search-box.css */
/* Professional Search Box Styles */
.search-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 650px;
    height: 40px;
    transition: all 0.3s ease;
}

.search-form {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 5px;
    height: 100%;
    min-height: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.search-form:focus-within {
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.2);
    border-color: #3498db;
    background: white;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    outline: none;
    color: #333;
    border-radius: 30px 0 0 30px;
    line-height: normal;
}

.search-input::placeholder {
    color: #95a5a6;
    opacity: 1;
}

.search-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    cursor: pointer;
    padding: 0 15px;
    height: 100%;
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.search-button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-1px);
}

.search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.search-icon svg {
    width: 18px;
    height: 18px;
}

.search-text {
    display: inline-block;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 5px;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s;
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.search-result-item:hover {
    background-color: #f8f9fa;
    color: #3498db;
    border-left-color: #3498db;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-highlight {
    font-weight: bold;
    background-color: #fff8c6;
    padding: 0 2px;
    border-radius: 2px;
}

.search-result-content {
    padding: 5px;
}

.search-result-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #1a0dab;
}

.search-result-content p {
    font-size: 0.9rem;
    color: #4d5156;
    margin-bottom: 5px;
    line-height: 1.4;
}

.search-result-url {
    color: #006621;
    font-size: 0.8rem;
    display: block;
    margin-top: 3px;
}

.search-loading {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    padding: 15px;
    text-align: center;
    margin-top: 5px;
}

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-results {
    padding: 15px;
    color: #7f8c8d;
    text-align: center;
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1001;
    display: none;
    margin-top: -1px;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
    text-decoration: none;
    display: block;
}

.suggestion-item:hover, 
.suggestion-item.selected {
    background-color: #f5f5f5;
}

.suggestion-highlight {
    font-weight: bold;
    color: #3498db;
}

.search-pagination {
    margin-top: 20px;
    padding: 15px;
    border-top: 1px solid #eee;
    text-align: center;
}

.show-more-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 1280px) {
    .search-container {
        width: 630px;
    }
    
    .search-button {
        padding: 8px 10px;
    }
}

@media (max-width: 1024px) {
    .search-container {
        width: 420px;
		margin-left: 25px;
    }
}

@media (max-width: 912px) {
    .search-container {
        width: 350px;
        margin-left: 20px;
    }
}

@media (max-width: 853px) {
    .search-container {
        width: 315px;
        margin-left: 15px;
    }
}

@media (max-width: 820px) {
    .search-container {
        width: 278px;
        margin-left: 18px;
    }
}

@media (max-width: 768px) {
    .search-container {
        width: 100%;
        height: 40px;
        margin: 15px 0;
        margin-left: 10px;
        order: 3;
    }
    
    .search-form {
        border-radius: 5px;
        min-height: 40px;
    }
    
    .search-input {
        border-radius: 5px 0 0 5px;
    }
    
    .search-button {
        border-radius: 0 5px 5px 0;
    }
}


		/* Navigation Styles */
		.navbar {
    		background-color: white;
    		padding: 10px 0;
    		position: sticky;
    		top: 0;
    		box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    		z-index: 1000;
		}

		.navbar-container {
    		display: flex;
    		justify-content: space-between;
    		align-items: center;
		}

		.navbar-brand {
    		display: flex;
    		align-items: center;
    		text-decoration: none;
		}

		.logo-img {
    		height: 40px;
    		margin-right: 10px;
		}

		.brand-name {
    		font-weight: 700;
    		font-size: 1.25rem;
    		background: linear-gradient(to right, #e74c3c, #3498db);
    		-webkit-background-clip: text;
    		background-clip: text;
    		color: transparent;
    		text-shadow: 1px 1px 3px rgba(0,0,0,0.1);            
		}

		.navbar-nav {
    		display: flex;
    		list-style: none;
            margin: 100;
            padding: 100;
		}
	
		.nav-item {
		    margin-left: 20px;
		    display: flex;        /* <--- ubah li jadi flex container */
		    align-items: center;  /* <--- isi dalam li rata tengah */
		}

		.nav-link {
    		color: #333;
    		text-decoration: none;
    		font-weight: 500;
    		transition: color 0.3s;
		}
		
		.nav-link:hover {
            color: #2c8a4a;
        }

		.nav-link.active {
    		color: #3498db;
    		font-weight: 600;
		}

		.navbar-toggler {
    		display: none;
    		background: none;
    		border: none;
    		font-size: 1.25rem;
    		cursor: pointer;
		}
        
        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 0 20px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 30px;
        }

        .footer-links li {
            margin: 0 15px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .copyright {
            color: #ecf0f1;
            font-size: 0.9rem;
        }
        

		/* Ads Container */
		.ads-container {
    		background-color: #f8f9fa;
    		border: 1px dashed #ccc;
    		padding: 20px;
    		text-align: center;
    		margin: 40px 0;
    		border-radius: 5px;
		}     
        
		@media (max-width: 768px) {    
    		.navbar-container {
        		flex-direction: column;
        		align-items: flex-start;
    		}

    		.navbar-nav {
        		flex-direction: column;
        		width: 100%;
        		display: none;
        		margin-top: 15px;
    		}

    		.nav-item {
        		margin: 0;
        		padding: 10px 0;
        		border-bottom: 1px solid #eee;
    		}

    		.navbar-toggler {
        		display: block;
        		position: absolute;
        		right: 15px;
        		top: 15px;
    		}

    		.navbar-nav.active {
        		display: flex;
    		}
		}
    
        /* Additional CSS for articles page */
        .articles-container {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .articles-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .articles-title {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .articles-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, #e74c3c, #3498db);
            border-radius: 3px;
        }
        
        .articles-subtitle {
            color: #7f8c8d;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .article-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        
        .article-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .article-content {
            padding: 20px;
        }
        
        .article-title {
            font-size: 1.25rem;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .article-excerpt {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .read-more {
            display: inline-block;
            background-color: #f8f9fa;
            color: #3498db;
            border: 1px solid #3498db;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 0.9em;
            cursor: pointer;
            margin-top: 10px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .read-more:hover {
            background-color: #3498db;
            color: white;
        }
        
        @media (max-width: 768px) {
            .article-grid {
                grid-template-columns: 1fr;
            }
            
            .articles-title {
                font-size: 1.8rem;
            }
        }
        
/* Disclaimer Global Styles */
.disclaimer-global {
    background-color: #f8f9fa;
    border-left: 4px solid #e63946;
    padding: 1.25rem;
    margin: 2rem 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.disclaimer-global p {
    color: #495057;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.disclaimer-global a {
    color: #e63946;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.disclaimer-global a:hover {
    color: #c1121f;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .disclaimer-global {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .disclaimer-global p {
        font-size: 0.8rem;
    }
}

/* Dark Mode Compatibility */
@media (prefers-color-scheme: dark) {
    .disclaimer-global {
        background-color: #2b2d42;
        border-left-color: #ef233c;
    }
    
    .disclaimer-global p {
        color: #edf2f4;
    }
    
    .disclaimer-global a {
        color: #ef233c;
    }
    
    .disclaimer-global a:hover {
        color: #d90429;
    }
}

.disclaimer-title {
    color: #e63946;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Dark Mode Compatibility for Title */
@media (prefers-color-scheme: dark) {
    .disclaimer-title {
        color: #ef233c;
    }
}




/* Container untuk meta dan share */
.meta-share-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
    width: 100%;
}

.meta {
    color: #7f8c8d;
    font-size: 14px;
}

/* Default: sembunyikan tombol share (mobile & tablet) */
.share-article-container {
    display: none;
}

/* Tampilkan hanya di desktop (&#8805;992px) */
@media (min-width: 992px) {
    .share-article-container {
        display: flex;
        align-items: center;
    }
}

.share-label {
    margin-right: 12px;
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

/* Tombol Share */
.share-container {
    display: inline-block;
    position: relative;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    outline: none;
    padding: 0;
}

.share-button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-button img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.share-button.active img {
    transform: rotate(45deg);
}

/* Dropdown Share */
.share-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    transform: scale(0.95);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 420px;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.share-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.share-dropdown h3 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-weight: 600;
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8f9fa;
    border: 1px solid transparent;
    min-width: 60px;
}

.share-option:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #e9ecef;
}

.share-option img {
    width: 22px;
    height: 22px;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.share-option:hover img {
    transform: scale(1.15);
}

.share-option span {
    font-size: 11px;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.copy-link-container {
    grid-column: 2 / 5;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.copy-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: auto;
    min-width: 140px;
    border: 1px solid #e9ecef;
}

.copy-link:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.copy-link img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    object-fit: contain;
}

.copy-link span {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
}

/* Notifikasi */
.share-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ecc71;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
    animation: fadeIn 0.5s, fadeOut 0.5s 2.5s forwards;
    z-index: 1000;
    font-size: 14px;
    font-weight: 500;
}

.share-notification img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    object-fit: contain;
}

@keyframes fadeIn {
    from { opacity: 0; bottom: 0; }
    to { opacity: 1; bottom: 20px; }
}

@keyframes fadeOut {
    from { opacity: 1; bottom: 20px; }
    to { opacity: 0; bottom: 0; }
}

/* Responsif */
@media (max-width: 768px) {
    .share-dropdown {
        width: 360px;
        right: -20px;
        padding: 20px;
    }

    .share-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .copy-link-container {
        grid-column: 1 / -1;
    }

    .meta-share-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .share-dropdown {
        width: 320px;
        right: -40px;
        padding: 15px;
    }

    .share-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .meta-share-container {
        align-items: center;
    }

    .share-option {
        padding: 8px 4px;
    }

    .share-option img {
        width: 20px;
        height: 20px;
    }

    .share-option span {
        font-size: 10px;
    }

    .copy-link {
        min-width: 120px;
        padding: 8px 16px;
    }

    .copy-link span {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .share-dropdown {
        width: 300px;
        right: -30px;
    }

    .share-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Honeypot field styling */
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}


/* Secondary Navigation Styles */
.secondary-nav {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 0;
    border-bottom: 1px solid #465c78;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.secondary-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #3498db 50%, transparent 100%);
}

.secondary-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
}

.secondary-nav-link {
    color: #ecf0f1;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    border-right: 1px solid #465c78;
    display: flex;
    align-items: center;
    gap: 8px;
}

.secondary-nav-link:last-child {
    border-right: none;
}

.secondary-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

.secondary-nav-link:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #ffffff;
    text-decoration: none;
}

.secondary-nav-link:hover::before {
    width: 80%;
}

.secondary-nav-link:active {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(1px);
}

/* Mobile Dropdown Styles */
.secondary-nav-mobile {
    text-align: center;
    padding: 15px 0;
}

.secondary-nav-select {
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    background: white url(data:image/svg+xml,%3Csvg\ xmlns=\'http://www.w3.org/2000/svg\'\ width=\'16\'\ height=\'16\'\ viewBox=\'0\ 0\ 24\ 24\'\ fill=\'none\'\ stroke=\'%232c3e50\'\ stroke-width=\'2\'\ stroke-linecap=\'round\'\ stroke-linejoin=\'round\'%3E%3Cpath\ d=\'M6\ 9l6\ 6\ 6-6\'/%3E%3C/svg%3E) no-repeat right 16px;
    border: 2px solid #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
    cursor: pointer;
    appearance: none;
    background-position-x:right; background-position-y:16px; background-size:16px; transition:all 0.3s ease; box-shadow:0 2px 8px rgba(0,0,0,0.1); padding-left:16px; padding-right:16px; padding-top:12px; padding-bottom:12px; background-image:url(data:image/svg+xml,%3Csvg\ xmlns=\'http://www.w3.org/2000/svg\'\ width=\'16\'\ height=\'16\'\ viewBox=\'0\ 0\ 24\ 24\'\ fill=\'none\'\ stroke=\'%232c3e50\'\ stroke-width=\'2\'\ stroke-linecap=\'round\'\ stroke-linejoin=\'round\'%3E%3Cpath\ d=\'M6\ 9l6\ 6\ 6-6\'/%3E%3C/svg%3E); background-repeat:no-repeat
}

.secondary-nav-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.secondary-nav-select:hover {
    border-color: #bdc3c7;
}

/* Active state for current page */
.secondary-nav-link[href*="amazfit"] {
    color: #3498db;
    font-weight: 600;
}

.secondary-nav-link[href*="amazfit"]::before {
    width: 80%;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .secondary-nav-links {
        justify-content: center;
    }
    
    .secondary-nav-link {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .secondary-nav {
        padding: 0;
    }
    
    .secondary-nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0;
    }
    
    .secondary-nav-link {
        padding: 10px 12px;
        font-size: 0.8rem;
        border-right: 1px solid #465c78;
        flex: 1;
        min-width: 120px;
        justify-content: center;
        text-align: center;
    }
    
    .secondary-nav-link:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 480px) {
    .secondary-nav-link {
        padding: 8px 10px;
        font-size: 0.75rem;
        min-width: 110px;
    }
    
    .secondary-nav-select {
        max-width: 280px;
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

/* Animation for smooth transitions */
@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.secondary-nav {
    animation: navFadeIn 0.4s ease-out;
}

/* Responsive Utilities */
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* Enhanced mobile dropdown for better UX */
.secondary-nav-select option {
    padding: 8px;
    font-size: 0.9rem;
}

.secondary-nav-select option[value=""] {
    color: #7f8c8d;
    font-style: italic;
}

/* Focus styles for accessibility */
.secondary-nav-link:focus-visible {
    outline: 2px solid #3498db;
    outline-offset: -2px;
    background: rgba(52, 152, 219, 0.15);
}