:root {
    --primary-color: #007bc7; /* Classic GetMyBoat/Travel Oceanic Blue */
    --primary-dark: #005f9e;
    --text-main: #222222;
    --text-muted: #717171;
    --border-light: #e0e0e0;
}

body { 
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif; 
    background-color: #ffffff; 
    color: var(--text-main);
}

/* Navbar */
.navbar { background: white; border-bottom: 1px solid var(--border-light); padding: 18px 0; }
.navbar-brand { font-weight: 800; color: var(--primary-color) !important; font-size: 1.6rem; letter-spacing: -0.5px;}
.nav-link { font-weight: 600; color: var(--text-main) !important; margin-left: 15px; font-size: 15px; }
.nav-link:hover { color: var(--primary-color) !important; }
.btn-nav-primary { background: var(--primary-color); color: white !important; padding: 10px 24px; border-radius: 50px; transition: 0.2s; }
.btn-nav-primary:hover { background: var(--primary-dark); }

/* Hero Section */
.hero {
    position: relative;
    height: 65vh;
    min-height: 500px;
    background: url('../img/hero-boat.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 900px; margin-top: -50px; }
.hero h1 { font-size: 3.5rem; font-weight: 800; color: white; margin-bottom: 30px; letter-spacing: -1px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

/* GetMyBoat Style Search Bar */
.gmb-search {
    background: white;
    border-radius: 50px;
    display: flex;
    padding: 10px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
    margin: 0 auto;
    max-width: 850px;
}
.gmb-search-item {
    flex: 1;
    padding: 5px 25px;
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.gmb-search-item:nth-last-child(2) { border-right: none; }
.gmb-search-label { font-size: 12px; font-weight: 800; color: var(--text-main); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.gmb-search-input { border: none; background: transparent; padding: 0; color: var(--text-muted); font-size: 15px; outline: none; width: 100%; cursor: pointer;}
.gmb-search-input:focus { color: var(--text-main); }
.gmb-search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0 35px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    cursor: pointer;
}
.gmb-search-btn:hover { background: var(--primary-dark); }

@media (max-width: 768px) {
    .gmb-search { flex-direction: column; border-radius: 24px; padding: 0; overflow: hidden; }
    .gmb-search-item { border-right: none; border-bottom: 1px solid var(--border-light); padding: 15px 25px; }
    .gmb-search-btn { border-radius: 0; height: 60px; justify-content: center; }
}

/* Quick Categories Scroller */
.category-container { border-bottom: 1px solid var(--border-light); padding: 20px 0; background: white; }
.category-scroll {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 5px;
}
.category-scroll::-webkit-scrollbar { display: none; }
.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    min-width: max-content;
    transition: 0.2s;
    opacity: 0.7;
}
.category-item:hover { color: var(--text-main); opacity: 1; transform: translateY(-2px); }
.category-icon { font-size: 24px; }
.category-text { font-size: 14px; font-weight: 600; }

/* GetMyBoat Style Cards */
.gmb-card {
    border: none;
    background: transparent;
    cursor: pointer;
    display: block;
    text-decoration: none !important;
    transition: transform 0.2s;
}
.gmb-card-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    margin-bottom: 12px;
}
.gmb-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gmb-card:hover .gmb-card-img { transform: scale(1.05); }
.gmb-card-heart { position: absolute; top: 15px; right: 15px; color: white; font-size: 24px; z-index: 2; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.gmb-card-body { padding: 0 4px; }
.gmb-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2px; }
.gmb-card-title { font-weight: 700; font-size: 16px; color: var(--text-main); margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 80%; }
.gmb-card-rating { font-size: 15px; color: var(--text-main); font-weight: 600; }
.gmb-card-rating i { color: #FFB300; font-size: 13px; margin-right: 2px; }
.gmb-card-meta { color: var(--text-muted); font-size: 15px; margin-bottom: 4px; line-height: 1.4; }
.gmb-card-price { font-weight: 700; font-size: 16px; color: var(--text-main); margin-top: 6px; }
.gmb-card-price span { font-weight: 400; color: var(--text-main); }

/* Footer */
footer { background: #f7f7f9 !important; border-top: 1px solid var(--border-light); padding-top: 60px; padding-bottom: 40px; }
footer h5, footer h6 { color: var(--text-main) !important; margin-bottom: 20px; font-weight: 700; }
footer a, footer .social-link, footer ul li a { color: var(--text-muted) !important; text-decoration: none; transition: 0.2s; display: inline-block; font-weight: 500;}
footer a:hover, footer .social-link:hover, footer ul li a:hover { color: var(--primary-color) !important; }
.social-link { font-size: 1.3rem; margin-right: 15px; }
footer ul { padding-left: 0; list-style: none; }
footer ul li { margin-bottom: 12px; }