/* ===== CSS VARIABLES - TRAVEL GREEN THEME ===== */
:root {
    --primary: #2e7d32;
    --secondary: #1b5e20;
    --accent: #ff9800;
    --light: #f8f9fa;
    --dark: #263238;
    --success: #4caf50;
    --warning: #ffb300;
    --danger: #f44336;
    --gray: #607d8b;
    --light-gray: #eceff1;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Social Media Brand Colors */
    --facebook: #1877f2;
    --twitter: #1da1f2;
    --instagram: #e4405f;
    --youtube: #ff0000;
    --linkedin: #0a66c2;
    --whatsapp: #25d366;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f7fa;
    color: var(--dark);
    line-height: 1.6;
}

/* ===== APP CONTAINER ===== */
.app-container {
    max-width: 480px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* ===== HEADER STYLES ===== */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.desktop-header {
    display: none;
}

.menu-toggle {
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.user-actions i {
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.user-actions i:hover {
    transform: scale(1.1);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== SEARCH BAR ===== */
.search-bar {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.search-bar:focus-within {
    background: rgba(255, 255, 255, 0.3);
}

.search-bar i {
    margin-right: 10px;
}

.search-bar input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    outline: none;
    font-size: 16px;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.mobile-search-bar {
    margin: 15px;
    background: white;
    border-radius: 30px;
    padding: 10px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-search-bar i {
    color: var(--primary);
}

.mobile-search-bar input {
    color: var(--dark);
}

.mobile-search-bar input::placeholder {
    color: var(--gray);
}

/* ===== MAIN CONTENT ===== */
main {
    padding: 20px 15px 80px;
}

/* ===== SECTION TITLE ===== */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 18px;
    font-weight: 600;
}

.section-title a {
    color: var(--primary);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

/* ===== CATEGORIES ===== */
.categories {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    margin-bottom: 20px;
    scrollbar-width: none;
}

.categories::-webkit-scrollbar {
    display: none;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    cursor: pointer;
    transition: var(--transition);
}

.category:hover {
    transform: translateY(-2px);
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: var(--transition);
    color: var(--primary);
}

.category.active .category-icon {
    background: var(--primary);
    color: white;
}

.category-name {
    font-size: 12px;
    text-align: center;
    color: var(--gray);
    font-weight: 500;
}

.category.active .category-name {
    color: var(--primary);
    font-weight: 600;
}

/* ===== CARD STYLES - ORIGINAL GRID STYLE ===== */
.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--light-gray);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-img {
    height: 160px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-location {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.card-location i {
    margin-right: 5px;
    font-size: 12px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.price {
    font-weight: 700;
    color: var(--primary);
}

.price-currency {
    font-size: 12px;
}

.rating {
    display: flex;
    align-items: center;
    color: var(--warning);
    font-size: 14px;
}

.rating span {
    color: var(--gray);
    margin-left: 5px;
}

/* ===== GRID STYLES - ORIGINAL LAYOUT ===== */
.content-grid {
    display: block;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* ===== ITINERARY BUILDER ===== */
.itinerary-builder {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.itinerary-builder::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
}

.itinerary-builder h3 {
    margin-bottom: 10px;
    font-size: 18px;
    position: relative;
}

.itinerary-builder p {
    margin-bottom: 15px;
    opacity: 0.9;
    position: relative;
}

.btn {
    background: white;
    color: var(--primary);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* ===== BOTTOM NAVIGATION ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gray);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 10px;
}

.nav-item.active {
    color: var(--primary);
    background-color: rgba(46, 125, 50, 0.1);
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

/* ===== SIDEBAR STYLES ===== */
.sidebar {
    display: none;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    color: white;
    z-index: 200;
    transition: var(--transition);
    padding: 20px 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-sidebar-logo {
    display: flex;
    align-items: center;
}

.mobile-sidebar-close {
    font-size: 24px;
    cursor: pointer;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    flex: 1;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-item:hover, .sidebar-item.active {
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-item i {
    font-size: 20px;
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

.sidebar-item span {
    font-weight: 500;
}

/* ===== ENHANCED SOCIAL MEDIA ICONS ===== */
.sidebar-social {
    margin: 25px 0 15px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.1);
}

/* Individual Social Media Brand Colors */
.social-icon.facebook {
    background: linear-gradient(135deg, var(--facebook), #166ada);
}

.social-icon.twitter {
    background: linear-gradient(135deg, var(--twitter), #1a91da);
}

.social-icon.instagram {
    background: linear-gradient(135deg, var(--instagram), #c13584);
}

.social-icon.youtube {
    background: linear-gradient(135deg, var(--youtube), #cc0000);
}

.social-icon.linkedin {
    background: linear-gradient(135deg, var(--linkedin), #004182);
}

.social-icon.whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), #128c7e);
}

/* Social Media Section Title */
.social-section-title {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    padding: 10px 0;
}

.copyright p {
    margin: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 199;
    display: none;
}

.overlay.active {
    display: block;
}

/* ===== SOS BUTTON ===== */
.sos-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--danger);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(208, 0, 0, 0.4);
    z-index: 90;
    cursor: pointer;
    animation: pulse 2s infinite;
    transition: var(--transition);
    font-weight: bold;
    font-size: 12px;
    gap: 2px;
}

.sos-button:hover {
    transform: scale(1.05);
}

.sos-button i {
    font-size: 18px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(208, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(208, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(208, 0, 0, 0);
    }
}

/* ===== TABLET STYLES (768px - 1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
    .app-container {
        max-width: 100%;
        margin: 0;
        box-shadow: none;
    }

    /* Hide mobile elements */
    .mobile-header {
        display: none;
    }
    
    .mobile-search-bar {
        display: none;
    }
    
    .mobile-sidebar {
        display: block; /* Keep mobile sidebar for tablet */
    }

    /* Show desktop elements with mobile-style header for tablet */
    .desktop-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 25px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .desktop-logo {
        display: none;
    }

    .sidebar {
        display: none;
    }

    main {
        padding: 25px 25px 90px;
    }

    /* Content Grid - Tablet */
    .content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .grid-2 {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Desktop Search Bar - Centered and wider for tablet */
    .desktop-search-bar {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        margin: 0;
    }

    /* Section Title */
    .section-title h2 {
        font-size: 20px;
    }

    /* Card adjustments */
    .card {
        margin-bottom: 0;
    }

    /* Categories */
    .categories {
        justify-content: flex-start;
    }

    /* Itinerary Builder */
    .itinerary-builder {
        padding: 25px;
    }

    /* SOS Button Position */
    .sos-button {
        bottom: 100px;
        right: 25px;
    }

    /* Bottom Navigation stays visible on tablet */
    .bottom-nav {
        display: flex;
    }

    /* Tablet-specific header adjustments */
    .desktop-header {
        justify-content: flex-start; /* Align items to start to accommodate menu toggle */
        position: relative; /* Needed for absolute positioning of search bar */
    }

    .desktop-header .menu-toggle {
        display: block; /* Show menu toggle in tablet */
        font-size: 20px;
        cursor: pointer;
        transition: var(--transition);
        margin-right: 20px;
    }

    .desktop-header .menu-toggle:hover {
        transform: scale(1.1);
    }

    .desktop-header .logo {
        margin-right: auto; /* Push logo to center */
    }

    .desktop-header .user-actions {
        margin-left: auto; /* Push user actions to right */
    }

    /* Enhanced Social Icons for Tablet */
    .sidebar-social {
        gap: 15px;
        margin: 30px 0 20px;
    }

    .social-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 20px;
    }
}

/* ===== LAPTOP STYLES (1024px and above) ===== */
@media (min-width: 1024px) {
    .app-container {
        max-width: 100%;
        margin: 0;
        box-shadow: none;
        display: grid;
        grid-template-columns: 250px 1fr;
        grid-template-rows: auto 1fr;
        grid-template-areas: 
            "sidebar header"
            "sidebar main";
        min-height: 100vh;
    }

    /* Hide mobile and tablet elements */
    .mobile-header {
        display: none;
    }
    
    .mobile-search-bar {
        display: none;
    }
    
    .bottom-nav {
        display: none;
    }
    
    .mobile-sidebar {
        display: none;
    }

    /* Show desktop elements */
    .desktop-header {
        grid-area: header;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: relative; /* Needed for absolute positioning of search bar */
    }

    .desktop-logo {
        display: none;
    }

    .sidebar {
        grid-area: sidebar;
        display: block;
        background: linear-gradient(180deg, var(--primary), var(--secondary));
        color: white;
        padding: 20px 15px;
        position: sticky;
        top: 0;
        height: 100vh;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    /* Enhanced Social Icons for Desktop Sidebar */
    .sidebar .sidebar-social {
        margin: 30px 0 20px;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .sidebar .social-icons-container {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .sidebar .social-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 18px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .sidebar .social-section-title {
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .sidebar .sidebar-footer {
        margin-top: auto;
    }

    main {
        grid-area: main;
        padding: 30px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding-bottom: 30px;
    }

    /* Content Grid - Laptop/Desktop */
    .content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .grid-2 {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    /* Desktop Search Bar - Centered and wider for laptop */
    .desktop-search-bar {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        margin: 0;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .card {
        margin-bottom: 0;
    }

    .categories {
        justify-content: center;
    }

    .itinerary-builder {
        padding: 30px;
    }

    .sos-button {
        bottom: 30px;
        right: 30px;
    }

    /* Hide menu toggle in desktop view */
    .desktop-header .menu-toggle {
        display: none;
    }
}

/* ===== DESKTOP LARGE STYLES (1440px and above) ===== */
@media (min-width: 1440px) {
    .app-container {
        grid-template-columns: 280px 1fr;
    }

    main {
        padding: 40px;
    }

    .content-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    .grid-2 {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    /* Desktop Search Bar - Even wider for large desktops */
    .desktop-search-bar {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        margin: 0;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .itinerary-builder {
        padding: 35px;
    }

    /* Larger sidebar */
    .sidebar {
        padding: 25px 20px;
    }

    .sidebar-item {
        padding: 18px 15px;
        font-size: 15px;
    }

    .sidebar-item i {
        font-size: 22px;
    }

    /* Enhanced Social Icons for Large Desktop */
    .sidebar-social {
        gap: 15px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        font-size: 20px;
    }
}

/* ===== COMMUNITY SECTION ===== */
.community-post {
    display: flex;
    margin-bottom: 20px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    margin-right: 10px;
    flex-shrink: 0;
}

.post-content {
    flex: 1;
}

.post-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.post-user {
    font-weight: 600;
}

.post-time {
    color: var(--gray);
    font-size: 12px;
}

.post-text {
    margin-bottom: 10px;
}

.post-image {
    height: 200px;
    width: 100%;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
}

.post-actions {
    display: flex;
    gap: 15px;
}

.post-action {
    display: flex;
    align-items: center;
    color: var(--gray);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.post-action:hover {
    color: var(--primary);
}

.post-action i {
    margin-right: 5px;
}

/* ===== TAB CONTENT ===== */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== PROFILE SECTION ===== */
.profile-header {
    text-align: center;
    padding: 30px 15px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-gray);
    margin: 0 auto 15px;
    background-size: cover;
    background-position: center;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-weight: 700;
    font-size: 18px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

/* ===== BADGE STYLES ===== */
.badge {
    background: var(--light-gray);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    position: relative;
}

@media (min-width: 768px) {
    .modal-content {
        max-width: 600px;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: var(--gray);
}

.modal-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

/* ===== ITINERARY MODAL ===== */
.itinerary-day {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.day-title {
    font-weight: 600;
}

.day-activities {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.activity {
    display: flex;
    align-items: center;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 8px;
}

.activity-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 14px;
}

.activity-details {
    flex: 1;
}

.activity-name {
    font-weight: 500;
    font-size: 14px;
}

.activity-time {
    font-size: 12px;
    color: var(--gray);
}

.activity-actions {
    display: flex;
    gap: 5px;
}

.activity-actions i {
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
}

.activity-actions i:hover {
    color: var(--primary);
}

.add-activity {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px dashed var(--gray);
    border-radius: 8px;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.add-activity:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== BOOKING MODAL ===== */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.booking-summary {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--gray);
}

/* ===== GUIDE PROFILE MODAL ===== */
.guide-profile {
    text-align: center;
}

.guide-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--light-gray);
    margin: 0 auto 15px;
    background-size: cover;
    background-position: center;
}

.guide-details {
    margin-bottom: 20px;
}

.guide-languages, .guide-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 10px 0;
}

/* ===== NOTIFICATION MODAL ===== */
.notification-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.notification-item:hover {
    background: var(--light-gray);
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.notification-text {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.notification-time {
    color: var(--gray);
    font-size: 12px;
}

.notification-unread {
    background: rgba(58, 134, 255, 0.1);
}

/* ===== VERIFICATION BADGE ===== */
.verified-badge {
    display: inline-flex;
    align-items: center;
    background: var(--success);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    margin-left: 5px;
}

.verified-badge i {
    font-size: 8px;
    margin-right: 3px;
}

/* ===== MAP PREVIEW ===== */
.map-preview {
    height: 120px;
    width: 100%;
    background: var(--light-gray);
    border-radius: 8px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

/* ===== FILTER SECTION ===== */
.filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    margin-bottom: 15px;
    scrollbar-width: none;
}

.filters::-webkit-scrollbar {
    display: none;
}

.filter {
    padding: 8px 15px;
    background: var(--light-gray);
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.filter.active {
    background: var(--primary);
    color: white;
}

/* ===== LOADING ANIMATION ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== AUTH MODAL ===== */
.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 20px;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.auth-tab.active {
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--light-gray);
}

.divider {
    text-align: center;
    margin: 15px 0;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--light-gray);
    z-index: 1;
}

.divider span {
    background: white;
    padding: 0 10px;
    position: relative;
    z-index: 2;
    color: var(--gray);
}

.form-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.form-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* ===== CATEGORY FILTERED CONTENT ===== */
.category-section {
    display: none;
}

.category-section.active {
    display: block;
}

/* ===== DIMA HASAO SPECIFIC STYLES ===== */
.dima-hasao-highlight {
    color: #2E8B57;
    font-weight: 600;
}

.welcome-banner {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

.welcome-banner h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.welcome-banner p {
    color: var(--gray);
    font-size: 16px;
}

/* ===== SCROLLBAR STYLING ===== */
.sidebar::-webkit-scrollbar,
.mobile-sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-track,
.mobile-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb,
.mobile-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover,
.mobile-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}