* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pallid-yellow: #FFC107;
    --pallid-yellow-dark: #e6a800;
    --pallid-yellow-light: #fff3cd;
    --pallid-black: #000000;
    --pallid-black-light: #1a1a1a;
    --pallid-white: #ffffff;
    --pallid-gray: #f8f9fa;
    --pallid-gray-dark: #343a40;
    --pallid-gray-light: #e9ecef;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-yellow: 0 5px 20px rgba(255, 193, 7, 0.3);
    --navbar-height: 120px;
    --navbar-top-height: 40px;
    --navbar-main-height: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--pallid-gray);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--pallid-white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 3px solid var(--pallid-yellow);
    animation: fadeInDown 0.5s ease;
}

.navbar.scrolled {
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.navbar.scrolled .nav-main {
    background: var(--pallid-black);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .nav-top-bar {
    height: 35px;
    padding: 5px 0;
}

/* ===== TOP BAR ===== */
.nav-top-bar {
    background: var(--pallid-yellow);
    color: var(--pallid-white);
    padding: 8px 0;
    font-size: 0.85rem;
    height: var(--navbar-top-height);
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info a,
.contact-info span {
    color: var(--pallid-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.contact-info a:hover {
    color: var(--pallid-yellow);
    transform: translateY(-2px);
}

.contact-info i {
    color: var(--pallid-yellow);
    font-size: 0.8rem;
}

.social-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-info span {
    margin-right: 5px;
    font-size: 0.8rem;
    color: var(--pallid-gray-light);
}

.social-info a {
    color: var(--pallid-white);
    text-decoration: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-info a:hover {
    background: var(--pallid-yellow);
    color: var(--pallid-black);
    transform: translateY(-2px) rotate(360deg);
}

/* ===== MAIN NAVBAR ===== */
.nav-main {
    padding: 10px 0;
    height: var(--navbar-main-height);
    display: flex;
    align-items: center;
    background: var(--pallid-black);
}

.main-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* ===== LOGO STYLES ===== */
.nav-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-logo .logo-link:hover {
    transform: scale(1.02);
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-pallid {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--pallid-white);
    line-height: 1.2;
    position: relative;
}

.logo-pallid::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--pallid-yellow);
    transition: var(--transition-smooth);
}

.logo-link:hover .logo-pallid::after {
    width: 100%;
}

.logo-safari {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pallid-yellow);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===== DESKTOP CONTACT ===== */
.nav-contact {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.contact-phone {
    text-decoration: none;
    color: var(--pallid-black);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--pallid-yellow);
    border-radius: 50px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.contact-phone i {
    color: var(--pallid-yellow);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-phone:hover {
    background: var(--pallid-yellow);
    color: var(--pallid-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

.contact-phone:hover i {
    color: var(--pallid-black);
}

/* ===== MOBILE TOGGLE BUTTON ===== */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 5px;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--pallid-black);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--pallid-yellow);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
    background: var(--pallid-yellow);
}

/* ===== NAVIGATION MENU ===== */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--pallid-white);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
}

/* Active Link Indicator */
.nav-link.active {
    color: var(--pallid-yellow);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--pallid-yellow);
    border-radius: 3px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { width: 0; }
    to { width: 100%; }
}

/* Link Hover Effect */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--pallid-yellow);
    transition: var(--transition-smooth);
    border-radius: 3px;
}

.nav-link:hover {
    color: var(--pallid-yellow);
}

.nav-link:hover::before {
    width: 100%;
}

/* Dropdown Arrow */
.nav-link i {
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* ===== DROPDOWN STYLES ===== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* Desktop hover effect - Moved to media query */
@media (min-width: 993px) {
    .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(10px);
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--pallid-white);
    min-width: 260px;
    border-radius: 10px;
    padding: 0.8rem 0;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    z-index: 1000;
    border-top: 3px solid var(--pallid-yellow);
    list-style: none;
}

.dropdown-menu li {
    list-style: none;
    padding: 0;
}

.dropdown-menu > li > a {
    text-decoration: none;
    color: var(--pallid-black);
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.dropdown-menu > li > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--pallid-yellow);
    /*color: var(--pallid-black);*/
    transform: scaleY(0);
    transition: var(--transition-smooth);
}

.dropdown-menu > li > a:hover {
    background: var(--pallid-gray);
    padding-left: 2rem;
    color: var(--pallid-yellow);
}

.dropdown-menu > li > a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu i {
    width: 20px;
    color: var(--pallid-yellow);
    font-size: 0.9rem;
}

.dropdown-divider {
    height: 1px;
    background: var(--pallid-gray);
    margin: 10px 0;
}

/* ===== DROPDOWN SUBMENU STYLES ===== */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
    color: var(--pallid-black);
    text-decoration: none;
    transition: var(--transition-smooth);
    border-radius: 5px;
}

.dropdown-submenu > a:hover {
    background: var(--pallid-gray);
    color: var(--pallid-yellow);
}

.dropdown-submenu > a i:last-child {
    font-size: 0.7rem;
    transition: var(--transition-smooth);
}

/* Desktop submenu hover - Moved to media query */
@media (min-width: 993px) {
    .dropdown-submenu:hover > .dropdown-submenu-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .dropdown-submenu:hover > a i:last-child {
        transform: rotate(90deg);
    }
}

.dropdown-submenu-menu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    background: var(--pallid-white);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
    list-style: none;
    z-index: 1001;
    border-top: 3px solid var(--pallid-yellow);
}

.dropdown-submenu-menu li {
    padding: 0;
}

.dropdown-submenu-menu a {
    color: var(--pallid-black);
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    border-radius: 5px;
}

.dropdown-submenu-menu a:hover {
    background: var(--pallid-gray);
    color: var(--pallid-yellow);
    padding-left: 2rem;
}

.dropdown-submenu-menu i {
    width: 18px;
    color: var(--pallid-yellow);
    font-size: 0.8rem;
}

/* ===== BOOK NOW BUTTON ===== */
.book-btn,
.btn-nav-cta {
    background: var(--pallid-yellow);
    color: var(--pallid-black) !important;
    padding: 0.7rem 1.8rem !important;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--pallid-yellow);
    transition: var(--transition-smooth) !important;
    display: inline-block;
    text-decoration: none;
}

.book-btn i,
.btn-nav-cta i {
    margin-right: 0.3rem;
}

.book-btn:hover,
.btn-nav-cta:hover {
    background: transparent !important;
    color: var(--pallid-yellow) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

.book-btn:hover::before,
.btn-nav-cta:hover::before {
    display: none;
}

.nav-cta {
    margin-left: 1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== DESKTOP RESPONSIVE STYLES ===== */
/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .main-nav-container {
        padding: 0 3rem;
    }
    
    .nav-list {
        gap: 2.2rem;
    }
}

/* Small Desktop (992px - 1199px) */
@media (min-width: 993px) and (max-width: 1199px) {
    .nav-list {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .contact-phone {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===== TABLET & MOBILE RESPONSIVE STYLES ===== */
/* Tablet (768px to 992px) */
@media (min-width: 768px) and (max-width: 992px) {
    .nav-contact {
        display: none;
    }
    
    .nav-list {
        gap: 1.2rem;
    }
    
    .nav-top-bar .top-bar-container {
        flex-direction: row;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* FIX 1: Make toggle icon white on tablet screens */
    .nav-toggle span {
        background: var(--pallid-white) !important;
    }
    
    .nav-toggle.active span {
        background: var(--pallid-yellow) !important;
    }
    
    .nav-toggle.active span:nth-child(1),
    .nav-toggle.active span:nth-child(2),
    .nav-toggle.active span:nth-child(3) {
        background: var(--pallid-yellow) !important;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background: var(--pallid-black);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 10px 0;
        color: var(--pallid-white);
    }
    
    .nav-link i {
        color: var(--pallid-yellow);
    }
    
    /* FIX 2: Improved dropdown styles for tablet */
    .dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        display: none;
        width: 100%;
        margin-top: 5px;
    }
    
    .dropdown.active > .dropdown-menu {
        display: block;
    }
    
    .dropdown.active > .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu > li > a {
        color: var(--pallid-white);
        padding: 8px 15px;
        font-size: 0.95rem;
    }
    
    .dropdown-menu > li > a i {
        color: var(--pallid-yellow);
    }
    
    .dropdown-menu > li > a:hover {
        background: rgba(255, 193, 7, 0.2);
        color: var(--pallid-yellow);
        padding-left: 20px;
    }
    
    /* FIX 3: Improved submenu styles for tablet */
    .dropdown-submenu {
        width: 100%;
    }
    
    .dropdown-submenu > a {
        padding: 8px 15px 8px 30px;
        justify-content: space-between;
        color: var(--pallid-white);
    }
    
    .dropdown-submenu > a i:first-child {
        color: var(--pallid-yellow);
    }
    
    .dropdown-submenu > a i:last-child {
        color: var(--pallid-yellow);
    }
    
    .dropdown-submenu-menu {
        position: static;
        left: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 5px 0 5px 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        display: none;
        width: 100%;
        margin: 5px 0;
    }
    
    .dropdown-submenu.active .dropdown-submenu-menu {
        display: block;
    }
    
    .dropdown-submenu.active > a i:last-child {
        transform: rotate(90deg);
    }
    
    .dropdown-submenu-menu a {
        padding: 6px 15px;
        font-size: 0.85rem;
        color: var(--pallid-white);
    }
    
    .dropdown-submenu-menu a i {
        color: var(--pallid-yellow);
    }
    
    .dropdown-submenu-menu a:hover {
        background: rgba(255, 193, 7, 0.2);
        color: var(--pallid-yellow);
        padding-left: 20px;
    }
    
    .nav-cta {
        margin-top: 20px;
        width: 100%;
    }
    
    .nav-cta .btn-nav-cta {
        display: block;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .paw-print-decoration {
        font-size: 10rem;
    }
}

/* ===== MOBILE STYLES (767px and below) ===== */
@media (max-width: 767px) {
    :root {
        --navbar-height: 120px;
        --navbar-main-height: 70px;
    }
    
    .navbar {
        padding: 0;
    }
    
    .nav-top-bar {
        display: none; 
    }
    
    .nav-main {
        padding: 0.5rem 0;
        background: black;
    }
    
    .main-nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* FIX 4: Make toggle icon white on mobile screens */
    .nav-toggle span {
        background: var(--pallid-white) !important;
    }
    
    .nav-toggle.active span {
        background: var(--pallid-yellow) !important;
    }
    
    .nav-toggle.active span:nth-child(1),
    .nav-toggle.active span:nth-child(2),
    .nav-toggle.active span:nth-child(3) {
        background: var(--pallid-yellow) !important;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--navbar-main-height);
        left: -100%;
        width: 85%;
        max-width: 400px;
        min-height: calc(100vh - var(--navbar-main-height));
        background: var(--pallid-black) !important;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        color: var(--pallid-white);
    }
    
    .nav-link i {
        color: var(--pallid-yellow);
    }
    
    .nav-link.active {
        background: linear-gradient(90deg, rgba(255, 193, 7, 0.2) 0%, transparent 100%);
        border-radius: 5px;
        color: var(--pallid-yellow);
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-item:hover .nav-link i {
        transform: none;
    }
    
    /* FIX 5: Improved dropdown in mobile */
    .dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        display: none;
        width: 100%;
        margin: 5px 0;
    }
    
    .dropdown.active > .dropdown-menu {
        display: block;
        max-height: 500px;
        padding: 0.5rem 0 0.5rem 1rem;
    }
    
    .dropdown.active > .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu > li > a {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        color: var(--pallid-white);
    }
    
    .dropdown-menu > li > a i {
        color: var(--pallid-yellow);
    }
    
    .dropdown-menu > li > a::before {
        display: none;
    }
    
    .dropdown-menu > li > a:hover {
        background: rgba(255, 193, 7, 0.2);
        color: var(--pallid-yellow);
        padding-left: 1.5rem;
    }
    
    /* FIX 6: Improved submenu in mobile */
    .dropdown-submenu {
        width: 100%;
    }
    
    .dropdown-submenu > a {
        padding: 0.8rem 1rem 0.8rem 2rem;
        justify-content: space-between;
        color: var(--pallid-white);
    }
    
    .dropdown-submenu > a i:first-child {
        color: var(--pallid-yellow);
    }
    
    .dropdown-submenu > a i:last-child {
        color: var(--pallid-yellow);
    }
    
    .dropdown-submenu-menu {
        position: static;
        left: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        display: none;
        width: 100%;
        margin: 5px 0;
    }
    
    .dropdown-submenu.active .dropdown-submenu-menu {
        display: block;
    }
    
    .dropdown-submenu.active > a i:last-child {
        transform: rotate(90deg);
    }
    
    .dropdown-submenu-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        color: var(--pallid-white);
    }
    
    .dropdown-submenu-menu a i {
        color: var(--pallid-yellow);
    }
    
    .dropdown-submenu-menu a:hover {
        background: rgba(255, 193, 7, 0.2);
        color: var(--pallid-yellow);
        padding-left: 1.5rem;
    }
    
    /* Book button in mobile */
    .nav-cta {
        margin-top: 2rem;
        width: 100%;
        margin-left: 0;
    }
    
    .book-btn,
    .btn-nav-cta {
        text-align: center;
        width: 100%;
        background: var(--pallid-yellow) !important;
        color: var(--pallid-black) !important;
        border: 2px solid var(--pallid-yellow);
    }
    
    /* Mobile contact info (show inside menu) */
    .nav-menu::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin: 2rem 0 1.5rem;
    }
    
    .nav-menu::before {
        content: '📞 +254 720 446 720';
        display: block;
        text-align: center;
        color: var(--pallid-yellow);
        font-weight: 600;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        margin-top: 2px;
        margin-bottom: 10px;
        border: 2px solid var(--pallid-yellow);
        font-size: 1rem;
    }
    
    /* Logo adjustment for mobile */
    .logo-link {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-pallid {
        font-size: 1.3rem;
    }
    
    .logo-safari {
        font-size: 0.9rem;
    }
    
    /* Hide desktop hover effects on mobile */
    .nav-item:hover .nav-link i {
        transform: none;
    }
    
    .top-bar-container {
        flex-direction: row;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
        flex-direction: row;
        gap: 8px;
    }
    
    .social-info {
        justify-content: center;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .main-nav-container {
        padding: 0 1rem;
    }
    
    .logo-link {
        gap: 5px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-pallid {
        font-size: 1.2rem;
    }
    
    .logo-safari {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        width: 90%;
        padding: 1.5rem 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    .dropdown-menu > li > a {
        font-size: 0.95rem;
    }
    
    .nav-toggle span {
        width: 25px;
    }
    
    .contact-info {
        flex-direction: row;
        gap: 8px;
    }
}

/* Very Small Mobile (360px and below) */
@media (max-width: 360px) {
    .logo-pallid {
        font-size: 1rem;
    }
    
    .logo-safari {
        font-size: 0.7rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .nav-menu {
        width: 100%;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar {
        position: relative;
        box-shadow: none;
        border-bottom: 1px solid #000;
    }
    
    .nav-top-bar,
    .nav-toggle,
    .nav-cta,
    .dropdown-menu {
        display: none;
    }
    
    .nav-menu {
        display: block;
    }
    
    .nav-list {
        display: block;
    }
    
    .nav-link {
        color: #000;
        padding: 5px;
    }
}