* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0 auto;
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    background: url('no3newzealand.jpg') center/cover no-repeat fixed;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 43, 8, 0.6), rgba(12, 3, 51, 0.5));
    animation: overlayPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('no4grandcanyon.jpg') center/cover no-repeat;
    opacity: 0;
    animation: backgroundFade 20s ease-in-out infinite;
    z-index: 0;
}

.hero > nav {
    position: relative;
    z-index: 1001;
}

.hero > .destinations-container {
    position: relative;
    z-index: 2;
}

@keyframes overlayPulse {
    0%, 100% {
        background: linear-gradient(135deg, rgba(2, 43, 8, 0.6), rgba(12, 3, 51, 0.5));
    }
    50% {
        background: linear-gradient(135deg, rgba(2, 43, 8, 0.5), rgba(12, 3, 51, 0.4));
    }
}

@keyframes backgroundFade {
    0%, 45%, 100% {
        opacity: 0;
    }
    50%, 95% {
        opacity: 0.6;
    }
}

nav {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.whole {
    display: flex;
    align-items: center;
    gap: 40px;
}

.whole li {
    list-style: none;
    display: inline-block;
}

.whole li a {
    display: block;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-weight: bold;
    padding: 5px 10px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.whole li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.logo {
    border-radius: 50px;
    display: inline-block;
    box-shadow: 2px 2px 15px rgb(14, 0, 0);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}


.destinations-container {
    padding-top: 120px;
    padding-bottom: 50px;
}

.page-header {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.search-filter-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-bar input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-bar button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filters select {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.filters select:focus {
    border-color: #667eea;
}

.reset-btn {
    padding: 12px 25px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

.results-info {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.destination-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.card-title {
    flex: 1;
}

.card-title h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.card-title p {
    color: #666;
    font-size: 14px;
}

.category-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.card-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.card-highlights {
    margin-bottom: 15px;
}

.card-highlights h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.highlights-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight-tag {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: #555;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.best-time {
    font-size: 13px;
    color: #666;
}

.best-time i {
    color: #667eea;
    margin-right: 5px;
}

.learn-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.learn-more-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.no-results {
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.no-results i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}
/* Fallback Card Styles */
.fallback-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 240, 255, 0.98) 100%);
    border: 2px solid #667eea;
}

.fallback-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.fallback-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fallback-icon i {
    font-size: 100px;
    color: white;
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.fallback-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.fallback-info {
    background: #f0f7ff;
    border-left: 4px solid #667eea;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 5px;
}

.fallback-info p {
    color: #555;
    font-size: 13px;
    margin: 0;
}

.fallback-info i {
    color: #667eea;
    margin-right: 8px;
}

.fallback-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fallback-footer .learn-more-btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.primary-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 40px 5%;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: #b8b8b8;
    line-height: 1.6;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-links i {
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #b8b8b8;
    font-size: 14px;
    margin: 5px 0;
}

.footer-bottom a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #764ba2;
}

.disclaimer {
    font-size: 12px;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .site-footer {
        padding: 30px 5%;
    }
}

.secondary-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.secondary-btn:hover {
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.4);
}


.no-results h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.no-results p {
    font-size: 18px;
    opacity: 0.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chatbot Styles - Global Consistent Theme */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a2c5b 0%, #2c1810 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    z-index: 999;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(74, 44, 91, 0.7);
    background: linear-gradient(135deg, #5d3770 0%, #3d2015 100%);
}

.chatbot-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 400px;
    max-width: calc(100vw - 60px);
    height: 600px;
    max-height: calc(100vh - 180px);
    background: linear-gradient(135deg, rgba(30, 20, 40, 0.98) 0%, rgba(20, 10, 5, 0.98) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    display: none;
    flex-direction: column;
    z-index: 998;
    overflow: hidden;
}

.chatbot-modal.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #4a2c5b 0%, #2c1810 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.chatbot-header h3 {
    margin: 0;
    font-size: 18px;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: rgba(10, 5, 2, 0.3);
}

/* Custom Scrollbar for Chatbot */
.chatbot-messages::-webkit-scrollbar {
    width: 8px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4a2c5b 0%, #2c1810 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5d3770 0%, #3d2015 100%);
}

.bot-message,
.user-message {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 85%;
    animation: slideIn 0.3s ease;
}

.bot-message {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.user-message {
    background: linear-gradient(135deg, #4a2c5b 0%, #2c1810 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    margin-left: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.chatbot-input-area {
    display: flex;
    padding: 15px;
    background: rgba(20, 10, 5, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.chatbot-input-area input {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 14px 20px;
    font-size: 14px;
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.chatbot-input-area input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.chatbot-input-area input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chatbot-input-area button {
    background: linear-gradient(135deg, #4a2c5b 0%, #2c1810 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.chatbot-input-area button:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #5d3770 0%, #3d2015 100%);
    box-shadow: 0 6px 15px rgba(74, 44, 91, 0.6);
}

.chatbot-suggestions {
    display: flex;
    gap: 8px;
    padding: 12px 15px;
    background: rgba(20, 10, 5, 0.9);
    overflow-x: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar for Suggestions */
.chatbot-suggestions::-webkit-scrollbar {
    height: 6px;
}

.chatbot-suggestions::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.chatbot-suggestions::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #4a2c5b 0%, #2c1810 100%);
    border-radius: 10px;
}

.suggestion-btn {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.suggestion-btn:hover {
    background: linear-gradient(135deg, #4a2c5b 0%, #2c1810 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 44, 91, 0.5);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 5%;
    }
    
    .whole {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
    }
    
    .whole.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .filters {
        flex-direction: column;
    }
    
    .filters select {
        min-width: 100%;
    }
    
    .chatbot-modal {
        right: 15px;
        bottom: 90px;
        width: calc(100vw - 30px);
    }
    
    .chatbot-toggle {
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .logo {
        height: 50px;
        width: 50px;
    }
    
    .search-filter-section {
        padding: 15px;
    }
    
    .destination-card img {
        height: 200px;
    }
}

/* Made with Bob */
