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

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

.hero {
    width: 100%;
    height: 100vh;
    background: url('no9maldives.jpg') center/cover no-repeat fixed;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Enhanced image rendering for mobile */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    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('no8iceland.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    animation: backgroundFade 20s ease-in-out infinite;
    z-index: 0;
    /* Enhanced image rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 0 5%;
    flex: 1;
}

@keyframes overlayPulse {
    0%, 100% {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    }
    50% {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    }
}

@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;
}

.content {
    text-align: center;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.content h1 {
    font-size: 160px;
    color: rgb(230, 229, 228);
    font-weight: 600;
    transition: 0.5s;
    margin-bottom: 20px;
}

.content h1:hover {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}

.tagline {
    color: white;
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content a,
.cta-button {
    text-decoration: none;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 24px;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.content a:hover,
.cta-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}



/* 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: 1002;
    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: 1001;
    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;
    overflow-x: hidden;
    padding: 20px;
    background: rgba(10, 5, 2, 0.3);
    max-height: 100%;
}

/* 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);
}

.bot-message ul {
    margin: 10px 0;
    padding-left: 20px;
}

.bot-message li {
    margin: 5px 0;
}

.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) {
    .content h1 {
        font-size: 120px;
    }
    
    .whole {
        gap: 25px;
    }
}

@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;
    }
    
    .whole li a {
        font-size: 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .content h1 {
        font-size: 80px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .content a,
    .cta-button {
        font-size: 18px;
        padding: 12px 40px;
    }
    
    .search-box {
        bottom: 40px;
        width: 90%;
    }
    
    .chatbot-modal {
        right: 15px;
        bottom: 90px;
        width: calc(100vw - 30px);
    }
    
    .chatbot-toggle {
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 50px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .content a,
    .cta-button {
        font-size: 16px;
        padding: 10px 30px;
    }
    
    .logo {
        height: 50px;
        width: 50px;
    }
}

/* Made with Bob */

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

.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%;
    }
}
