/* SHAFX Technologies - Main CSS */
:root {
    --oxford-blue: #002147;
    --maize-yellow: #FFCC00;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    --white: #ffffff;
    --border-color: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
}

html,
body {
    height: 100%;
}

/* ==================== VERTICAL NAVBAR ==================== */
.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 80px;
    height: 100vh;
    background: linear-gradient(180deg, #001a33 0%, var(--oxford-blue) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-logo {
    width: 50px;
    height: 50px;
    background: var(--maize-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--oxford-blue);
    margin-bottom: 40px;
    font-size: 12px;
    text-align: center;
}

.navbar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
    align-items: center;
}

.navbar-item {
    position: relative;
}

.navbar-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
}

.navbar-link:hover {
    background: var(--maize-yellow);
    color: var(--oxford-blue);
    transform: translateY(-2px);
}

.navbar-link.active {
    background: var(--maize-yellow);
    color: var(--oxford-blue);
}

.navbar-link svg {
    width: 24px;
    height: 24px;
}

.navbar-tooltip {
    position: absolute;
    left: 80px;
    background: var(--oxford-blue);
    color: var(--maize-yellow);
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 12px;
    margin-left: 10px;
}

.navbar-item:hover .navbar-tooltip {
    opacity: 1;
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
    margin-left: 80px;
    min-height: 100vh;
    background: var(--light-gray);
}

/* ==================== HEADER ==================== */
.header {
    background: linear-gradient(135deg, var(--oxford-blue) 0%, #003366 100%);
    color: var(--white);
    padding: 40px 60px;
    text-align: center;
}

.header h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
    font-size: 18px;
    opacity: 0.95;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--oxford-blue) 0%, #003d73 100%);
    color: var(--white);
    padding: 100px 60px;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--maize-yellow);
    color: var(--oxford-blue);
}

.btn-primary:hover {
    background: #ffdd33;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 204, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--maize-yellow);
    border: 2px solid var(--maize-yellow);
}

.btn-secondary:hover {
    background: var(--maize-yellow);
    color: var(--oxford-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--white);
    color: var(--oxford-blue);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: transparent;
    transform: translateY(-2px);
}

/* ==================== CONTENT SECTIONS ==================== */
.content-section {
    padding: 80px 60px;
    background: var(--white);
    margin: 20px;
    border-radius: 8px;
}

.section-title {
    font-size: 36px;
    color: var(--oxford-blue);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--maize-yellow);
    border-radius: 2px;
}

/* ==================== SERVICE CATALOG ==================== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 33, 71, 0.15);
    border-color: var(--maize-yellow);
}

.service-card-header {
    background: linear-gradient(135deg, var(--oxford-blue) 0%, #003d73 100%);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.service-card-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-card-body {
    padding: 25px;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--maize-yellow);
    margin-bottom: 15px;
}

.service-price span {
    font-size: 18px;
    color: var(--dark-gray);
}

.service-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 20px;
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--maize-yellow);
    font-weight: bold;
}

.ratings {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 18px;
    color: #ddd;
}

.star.filled {
    color: var(--maize-yellow);
}

.rating-count {
    color: #999;
    font-size: 14px;
}

.service-btn {
    width: 100%;
}

/* ==================== COMMENTS SECTION ==================== */
.comments-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.comments-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--oxford-blue);
    margin-bottom: 20px;
}

.comment {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 4px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
    color: var(--oxford-blue);
}

.comment-date {
    font-size: 12px;
    color: #999;
}

.comment-text {
    color: #555;
    line-height: 1.6;
}

.comment-form {
    margin-top: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 4px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--oxford-blue);
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maize-yellow);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

/* ==================== AUTH PAGES ==================== */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, var(--oxford-blue) 0%, #003d73 100%);
}

.auth-form {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.auth-form h2 {
    color: var(--oxford-blue);
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
}

.auth-form .form-group input {
    padding: 12px;
    font-size: 15px;
}

.auth-form .btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.auth-links a {
    color: var(--oxford-blue);
    text-decoration: none;
    font-weight: 600;
}

.auth-links a:hover {
    color: var(--maize-yellow);
}

/* ==================== ABOUT SECTION ==================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    color: var(--maize-yellow);
    font-size: 20px;
    margin-bottom: 15px;
}

.about-text p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--maize-yellow);
}

.feature-box h4 {
    color: var(--oxford-blue);
    margin-bottom: 10px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--oxford-blue);
    color: var(--white);
    padding: 40px 60px;
    margin-left: 80px;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: var(--maize-yellow);
    text-decoration: none;
    margin: 0 15px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* ===== Tablet & Large Mobile (768px - 1023px) ===== */
@media (max-width: 1023px) {
    .navbar {
        width: 70px;
        padding: 20px 0;
    }

    .navbar-logo {
        width: 45px;
        height: 45px;
        margin-bottom: 30px;
        font-size: 10px;
    }

    .navbar-menu {
        gap: 15px;
    }

    .navbar-link {
        width: 45px;
        height: 45px;
    }

    .navbar-link svg {
        width: 20px;
        height: 20px;
    }

    .navbar-tooltip {
        display: none;
    }

    .main-content {
        margin-left: 70px;
    }

    .footer {
        margin-left: 70px;
    }

    .header,
    .hero,
    .content-section {
        padding: 50px 30px;
    }

    .header h1 {
        font-size: 36px;
    }

    .hero {
        padding: 60px 30px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card-header h3 {
        font-size: 20px;
    }

    .service-price {
        font-size: 28px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 15px;
    }

    .auth-form {
        padding: 40px;
        width: 90%;
        max-width: 350px;
    }
}

/* ===== Medium Mobile (600px - 767px) ===== */
@media (max-width: 767px) {
    .navbar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        flex-direction: row;
        padding: 10px 0;
        z-index: 1001;
        margin-top: auto;
    }

    .navbar-logo {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        margin-right: 10px;
        font-size: 9px;
    }

    .navbar-menu {
        flex-direction: row;
        gap: 10px;
        flex: 1;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 10px;
    }

    .navbar-item {
        flex-shrink: 0;
    }

    .navbar-link {
        width: 40px;
        height: 40px;
    }

    .navbar-link svg {
        width: 18px;
        height: 18px;
    }

    .main-content {
        margin-left: 0;
        margin-bottom: 60px;
        min-height: calc(100vh - 60px);
    }

    .footer {
        margin-left: 0;
        padding: 30px 20px;
    }

    .header {
        padding: 30px 15px;
    }

    .header h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .header p {
        font-size: 14px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .content-section {
        padding: 30px 15px;
        margin: 15px;
        border-radius: 6px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }

    .service-card-header {
        padding: 15px;
    }

    .service-card-header h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .service-card-body {
        padding: 15px;
    }

    .service-price {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .service-price span {
        font-size: 14px;
    }

    .service-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .service-features li {
        padding: 6px 0;
        font-size: 13px;
        padding-left: 20px;
    }

    .ratings {
        margin: 12px 0;
        padding: 12px 0;
    }

    .star {
        font-size: 14px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-text h3 {
        font-size: 18px;
    }

    .about-text p {
        font-size: 13px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-box {
        padding: 15px;
    }

    .feature-box h4 {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
    }

    .auth-container {
        min-height: calc(100vh - 60px);
        padding: 20px;
    }

    .auth-form {
        padding: 30px;
        width: 100%;
        max-width: 350px;
    }

    .auth-form h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .auth-form .form-group input {
        padding: 10px;
        font-size: 14px;
    }

    .auth-form .btn {
        padding: 10px;
        margin-top: 8px;
    }

    .auth-links {
        font-size: 12px;
        margin-top: 15px;
    }

    .comment-form {
        padding: 15px;
        margin-top: 15px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .form-group input,
    .form-group textarea {
        padding: 8px;
        font-size: 13px;
    }

    .form-group textarea {
        min-height: 80px;
    }
}

/* ===== Small Mobile (480px - 599px) ===== */
@media (max-width: 599px) {
    .navbar {
        height: 50px;
    }

    .navbar-logo {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }

    .navbar-menu {
        gap: 5px;
        padding: 0 5px;
    }

    .navbar-link {
        width: 35px;
        height: 35px;
        border-radius: 5px;
    }

    .navbar-link svg {
        width: 16px;
        height: 16px;
    }

    .main-content {
        margin-bottom: 50px;
        min-height: calc(100vh - 50px);
    }

    .header {
        padding: 20px 12px;
    }

    .header h1 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .header p {
        font-size: 12px;
    }

    .hero {
        padding: 30px 12px;
    }

    .hero h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .content-section {
        padding: 20px 12px;
        margin: 10px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }

    .service-card {
        overflow: visible;
    }

    .service-card-header {
        padding: 12px;
    }

    .service-card-header h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .service-card-body {
        padding: 12px;
    }

    .service-price {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .service-price span {
        font-size: 12px;
    }

    .service-description {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .service-features {
        margin-bottom: 12px;
    }

    .service-features li {
        padding: 4px 0;
        font-size: 12px;
        padding-left: 18px;
    }

    .ratings {
        margin: 10px 0;
        padding: 10px 0;
        gap: 5px;
    }

    .stars {
        gap: 2px;
    }

    .star {
        font-size: 14px;
    }

    .rating-count {
        font-size: 12px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-text h3 {
        font-size: 16px;
    }

    .about-text p {
        font-size: 12px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-box {
        padding: 12px;
    }

    .feature-box h4 {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
        width: 100%;
    }

    .auth-container {
        min-height: calc(100vh - 50px);
        padding: 15px;
    }

    .auth-form {
        padding: 20px;
        width: 100%;
        max-width: none;
    }

    .auth-form h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .auth-form .form-group label {
        font-size: 12px;
    }

    .auth-form .form-group input {
        padding: 8px;
        font-size: 13px;
    }

    .auth-form .btn {
        padding: 8px;
        margin-top: 6px;
        font-size: 13px;
    }

    .auth-links {
        font-size: 11px;
        margin-top: 12px;
    }

    .comment {
        margin-bottom: 15px;
        padding: 12px;
    }

    .comment-form {
        padding: 12px;
        margin-top: 12px;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .form-group label {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .form-group input,
    .form-group textarea {
        padding: 7px;
        font-size: 12px;
    }

    .form-group textarea {
        min-height: 70px;
    }

    .footer {
        padding: 20px 12px;
    }

    .footer-links {
        margin-top: 15px;
    }

    .footer-links a {
        margin: 0 10px;
        font-size: 12px;
    }
}

/* ===== Extra Small Mobile (below 480px) ===== */
@media (max-width: 479px) {
    .navbar {
        height: 45px;
    }

    .navbar-logo {
        width: 32px;
        height: 32px;
        margin-right: 6px;
        font-size: 8px;
    }

    .navbar-menu {
        gap: 3px;
        padding: 0 3px;
    }

    .navbar-link {
        width: 32px;
        height: 32px;
    }

    .navbar-link svg {
        width: 15px;
        height: 15px;
    }

    .main-content {
        margin-bottom: 45px;
        min-height: calc(100vh - 45px);
    }

    .header {
        padding: 15px 10px;
    }

    .header h1 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .header p {
        font-size: 11px;
    }

    .hero {
        padding: 25px 10px;
    }

    .hero h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .content-section {
        padding: 15px 10px;
        margin: 8px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .service-grid {
        gap: 10px;
    }

    .service-card-header {
        padding: 10px;
    }

    .service-card-header h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .service-card-body {
        padding: 10px;
    }

    .service-price {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .service-description {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .service-features li {
        padding: 3px 0;
        font-size: 11px;
    }

    .ratings {
        margin: 8px 0;
        padding: 8px 0;
    }

    .star {
        font-size: 13px;
    }

    .about-text h3 {
        font-size: 15px;
    }

    .about-text p {
        font-size: 11px;
    }

    .about-features {
        gap: 10px;
    }

    .feature-box {
        padding: 10px;
    }

    .feature-box h4 {
        font-size: 12px;
    }

    .btn {
        padding: 7px 14px;
        font-size: 12px;
    }

    .auth-form {
        padding: 15px;
    }

    .auth-form h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .auth-form .form-group input {
        padding: 7px;
        font-size: 12px;
    }

    .auth-form .btn {
        padding: 7px;
        margin-top: 5px;
    }

    .auth-links {
        font-size: 10px;
    }

    .footer {
        padding: 15px 10px;
    }

    .footer-links a {
        margin: 0 8px;
        font-size: 11px;
    }
}

/* ==================== SEARCH FEATURE ==================== */

/* Search Bar Container */
.search-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.search-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 80px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    min-width: 200px;
}

.search-input {
    width: 100%;
    padding: 10px 15px;
    padding-right: 40px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--maize-yellow);
    box-shadow: 0 0 8px rgba(255, 204, 0, 0.3);
}

.search-input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.search-clear-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 18px;
    display: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-clear-btn:hover {
    color: var(--dark-gray);
}

.search-input.active~.search-clear-btn {
    display: flex;
}

/* Suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggestion-item:hover {
    background: var(--light-gray);
}

.suggestion-type {
    font-size: 12px;
    color: #999;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 3px;
    min-width: 50px;
    text-align: center;
}

/* Search Results */
.search-results {
    margin-left: 80px;
    padding: 20px;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--maize-yellow);
    padding-bottom: 15px;
}

.search-results-header h2 {
    color: var(--oxford-blue);
    font-size: 24px;
}

.search-results-count {
    color: #666;
    font-size: 14px;
    background: var(--light-gray);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Search Result Item */
.search-result-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-result-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--maize-yellow);
}

.search-result-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--oxford-blue);
    margin-bottom: 8px;
}

.search-result-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #666;
}

.search-result-type {
    display: inline-block;
    background: rgba(0, 33, 71, 0.1);
    color: var(--oxford-blue);
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 500;
    text-transform: capitalize;
}

.search-result-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.search-result-details {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #999;
}

.search-result-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Search Filters */
.search-filters {
    margin-left: 80px;
    padding: 20px;
    margin-bottom: 20px;
}

.filters-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-item label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.filter-item input[type="checkbox"] {
    cursor: pointer;
}

.filter-item label:hover {
    background: var(--light-gray);
    border-color: var(--maize-yellow);
}

.filter-item input[type="checkbox"]:checked+label {
    background: rgba(255, 204, 0, 0.1);
    border-color: var(--maize-yellow);
    color: var(--oxford-blue);
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-results-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--oxford-blue);
}

.no-results p {
    margin-bottom: 20px;
}

/* Responsive Search */
@media (max-width: 1023px) {
    .search-bar {
        margin-left: 70px;
    }

    .search-results {
        margin-left: 70px;
    }

    .search-filters {
        margin-left: 70px;
    }
}

@media (max-width: 767px) {
    .search-bar {
        margin-left: 0;
        flex-wrap: wrap;
    }

    .search-input-wrapper {
        width: 100%;
        min-width: auto;
    }

    .search-results {
        margin-left: 0;
        padding: 15px;
    }

    .search-filters {
        margin-left: 0;
        padding: 15px;
    }

    .filters-group {
        gap: 10px;
    }

    .filter-item label {
        padding: 6px 10px;
        font-size: 13px;
    }
}