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

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #1a202c;
    overflow-x: hidden;
    line-height: 1.6;
    background: #ffffff;
}

/* ===== NAVIGATION ===== */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.navbar-custom .navbar-brand {
    color: #0891b2;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    position: relative;
    padding-left: 45px;
}

.navbar-custom .navbar-brand::before {
    content: '🏝️';
    position: absolute;
    left: 0;
    font-size: 32px;
    animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.navbar-custom .navbar-nav > li > a {
    color: #0e7490;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    padding: 12px 24px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-custom .navbar-nav > li > a:hover {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
}

/* ===== HERO/SEARCH SECTION ===== */
.search-section {
    padding: 0;
    min-height: 85vh;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
}

/* Tropical Background Image Overlay */
.search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  background: linear-gradient(to bottom, rgba(57, 190, 223, 0) 0%, rgb(0 0 0 / 60%) 100%), url(https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&h=1080&fit=crop) center / cover;
    background-attachment: fixed;
    z-index: 0;
}


@keyframes floatTropical {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-40px) translateX(20px) rotate(5deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-60px) translateX(-20px) rotate(-5deg);
        opacity: 0.1;
    }
    75% {
        transform: translateY(-40px) translateX(15px) rotate(3deg);
        opacity: 0.15;
    }
}



@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1200px; }
}

.search-section .container {
    position: relative;
    z-index: 3;
    padding-top: 80px;
    padding-bottom: 80px;
}

.search-section h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 28px;
    color: #ffffff;
    letter-spacing: -2px;
    animation: fadeInDown 1s ease-out, textFloat 4s ease-in-out infinite;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 8px 60px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    position: relative;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.search-section p {
    font-size: 26px;
    margin-bottom: 55px;
    color: rgba(255, 255, 255, 0.98);
    animation: fadeIn 1.2s ease-out;
    font-weight: 400;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.search-box {
    max-width: 850px;
    margin: 0 auto 40px;
    position: relative;
    animation: fadeInUp 1.4s ease-out;
}

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

.search-box::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #0891b2;
    z-index: 10;
    animation: pinPulse 2.5s ease-in-out infinite;
}

@keyframes pinPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        color: #0891b2;
    }
    50% {
        transform: translateY(-50%) scale(1.15);
        color: #06b6d4;
    }
}

.search-box input {
    width: 100%;
    color: #164e63;
    padding: 30px 220px 30px 75px;
    border: none;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 10px 40px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.98);
}

.search-box input:focus {
    outline: none;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3), 0 0 0 5px rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    background: #ffffff;
}

.search-box input::placeholder {
    color: #999;
    font-weight: 500;
}

.search-box button {
    position: absolute;
    right: 8px;
    top: 8px;
   background: linear-gradient(135deg, #dc6b2f 0%, #ab4f1f 100%);
    border: none;
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 800;
    font-size: 17px;
    /* box-shadow: 0 15px 40px rgba(8, 145, 178, 0.4); */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-box button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(178, 107, 8, 0.5);
    /* background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%); */
}

.search-box button i {
    margin-right: 8px;
    animation: searchPulse 2s ease-in-out infinite;
}

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

.quick-filters {
    margin-top: 45px;
    animation: fadeIn 1.6s ease-out;
}

.filter-tag {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(15px);
    padding: 14px 30px;
    margin: 0 10px 12px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.filter-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.filter-tag:hover::before {
    width: 350px;
    height: 350px;
}

.filter-tag:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.filter-tag i {
    margin-right: 10px;
    font-size: 18px;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-4px) rotate(5deg);
    }
}

/* ===== FEATURED SECTION ===== */
.featured-section {
    padding: 110px 0;
    /* background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%); */
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title::after {
    /* content: '🌊';
    display: block;
    font-size: 40px;
    margin-top: 20px;
    animation: waveBounce 2s ease-in-out infinite; */
}

@keyframes waveBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-title h2 {
    font-size: 52px;
    font-weight: 900;
    color: #164e63;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
}

.section-title p {
    font-size: 22px;
    color: #0891b2;
    font-weight: 500;
}

.featured-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(8, 145, 178, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 480px;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.featured-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 35px 80px rgba(8, 145, 178, 0.3);
    border-color: #22d3ee;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}

.featured-card:hover img {
    transform: scale(1.2);
    filter: brightness(1.15) saturate(1.2);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(8, 145, 178, 0.95) 0%, rgba(6, 182, 212, 0.6) 50%, transparent 100%);
    padding: 45px 40px;
    color: #fff;
    transition: all 0.4s;
}

.featured-card:hover .featured-overlay {
    background: linear-gradient(to top, rgba(6, 182, 212, 0.98) 0%, rgba(34, 211, 238, 0.7) 50%, transparent 100%);
}

.featured-overlay h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -1px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.featured-overlay p {
    font-size: 17px;
    margin-bottom: 20px;
    opacity: 0.98;
    line-height: 1.6;
}

.featured-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.6);
    }
}

/* ===== EXPLORE SECTION ===== */
.explore-section {
    padding: 0 0 100px;
    background: #ffffff;
}

.explore-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 10px 40px rgba(8, 145, 178, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(6, 182, 212, 0.1);
}

.explore-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(8, 145, 178, 0.2);
    border-color: rgba(6, 182, 212, 0.3);
}

.explore-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.6s ease;
}

.explore-card:hover .explore-img {
    transform: scale(1.12);
    filter: brightness(1.1) saturate(1.3);
}

.explore-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 260px;
}

.explore-content h4 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #b95420;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.5px;
    transition: color 0.3s;
}

.explore-content a:hover h4 {
    color: #06b6d4;
}

.explore-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 26px;
    line-height: 1.7;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 80px;
}

.explore-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: auto;
}

.btn-explore {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(8, 145, 178, 0.4);
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='50' font-size='60' fill='rgba(255,255,255,0.05)'%3E🐚%3C/text%3E%3C/svg%3E") repeat;
    background-size: 150px;
    animation: shellPattern 30s linear infinite;
    opacity: 0.5;
}

@keyframes shellPattern {
    0% { background-position: 0 0; }
    100% { background-position: 150px 150px; }
}

.category-item {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(15px);
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.25);
    position: relative;
    z-index: 1;
}

.category-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.category-icon {
    font-size: 56px;
    margin-bottom: 24px;
    animation: iconBob 3s ease-in-out infinite;
}

@keyframes iconBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.category-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #164e63 0%, #0e7490 100%);
    color: #fff;
    text-align: center;
}

.newsletter-section h3 {
    font-size: 38px;
    margin-bottom: 18px;
    font-weight: 900;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.newsletter-form input {
    padding: 18px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 100%;
    border-radius: 14px;
    margin-bottom: 14px;
    font-size: 16px;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #22d3ee;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
    color: #a5f3fc;
}

.new-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 800;
    font-size: 17px;
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.new-btn:hover,
.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(251, 191, 36, 0.5);
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}

/* ===== FOOTER ===== */
footer,
.footer {
    background: linear-gradient(135deg, #164e63 0%, #0e7490 100%);
    color: #e0f2fe;
    padding: 80px 5% 45px;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.box h3 {
    font-size: 24px;
    margin-bottom: 28px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.box p {
    color: #cffafe;
    line-height: 1.8;
    margin-bottom: 18px;
}

.box .link {
    display: block;
    color: #cffafe;
    text-decoration: none;
    margin-bottom: 14px;
    transition: all 0.3s;
    font-weight: 500;
}

.box .link:hover {
    color: #22d3ee;
    transform: translateX(8px);
}

.box .link i {
    margin-right: 12px;
    color: #06b6d4;
}

.share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    color: #fff;
    margin-right: 14px;
    transition: all 0.3s;
    font-size: 20px;
}

.share a:hover {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.4);
}

.footer-content {
    margin-bottom: 30px;
}

.footer-content h5 {
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #ffffff;
}

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

.footer-content ul li {
    margin-bottom: 12px;
}

.footer-content ul li a {
    color: #cffafe;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-content ul li a:hover {
    color: #22d3ee;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    color: #fff;
    margin-right: 14px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    transform: translateY(-4px);
}

.copyright,
.credit {
    text-align: center;
    padding-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: #a5f3fc;
    font-size: 15px;
    line-height: 1.8;
}

.credit a,
.copyright a {
    color: #22d3ee;
    text-decoration: none;
    font-weight: 700;
}

.credit a:hover,
.copyright a:hover {
    text-decoration: underline;
}