/* ===========================
   General Reset
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background: #f5f5f5;
    color: #333;
}

/* ===========================
   Containers (Home Page, Sections)
=========================== */
.container-home {
    max-width: 1200px;
    margin: 0 10px;
    padding: 0 50px;
}
header{
    position:sticky;
    top: 0;
    z-index: 10000;
    background: #fff;
}
/* ===========================
   Sticky Navbar
=========================== */
nav.sticky {
    position: sticky;
    top: 0;
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #fff;
    border-bottom: 3px solid #0a1a3c;
    padding: 14px 0;
}

/* CENTER WRAPPER */
nav.sticky .nav-inner {
    display: flex;
    align-items: center;
}

/* LOGO */
nav.sticky .logo {
    margin-right: 40px;      /* adjust space between logo & menu */
    display: flex;
    align-items: center;     /* vertically center logo in nav */
}

nav.sticky .logo img {
    height: 100px;            /* slightly bigger logo */
    width: auto;             /* maintain aspect ratio */
    display: block;          /* remove inline gap */
}


/* Responsive tweak for smaller screens */
@media (max-width: 768px) {
    nav.sticky .logo {
        margin-right: 20px;  /* reduce space on mobile */
    }

    nav.sticky .logo img {
        height: 50px;        /* smaller logo on mobile */
    }
}

/* MENU */
nav.sticky .nav-links {
    display: flex;
    gap: 40px;            /* âœ… SPACE BETWEEN MENU ITEMS */
}

nav.sticky a {
    color: #0A2A5E;
    text-decoration: none;
    font-weight: 600;
}

/* HAMBURGER */
nav.sticky .hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===========================
   Category Navbar
=========================== */
.category-nav {
    background: #0074D9;
    border-bottom: 3px solid #0a1a3c;
    position: sticky;
    top: calc(60px + var(--nav-height));
    z-index: 900;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    padding: 0;              /* ðŸ”¥ REMOVE ALL SIDE SHIFT */
}


.category-nav .category-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    max-width: 1200px;
    width: 100%;

    margin: 0 auto;          /* ðŸ”¥ FORCE TRUE CENTER */
    padding: 10px 0;         /* ðŸ”¥ NO LEFT / RIGHT BIAS */
}

/* Links */
.category-nav a {
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
}

.category-nav a:hover {
    background: #B88A44;
    border-radius: 6px;
}

.category-nav .hamburger {
    position: absolute;      /* ðŸ”¥ REMOVE LAYOUT INFLUENCE */
    right: 15px;
    font-size: 1.6rem;
    cursor: pointer;
    color: #0a1a3c;
    display: none;
}

/* ===========================
   Hero Section
=========================== */
/* ===========================
   Hero Section
=========================== */
.hero {
    position: relative;
   
    height: 75vh;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}
.hero-text h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.hero-text p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* ===========================
   Carousel Section
=========================== */
.new-arrivals-auto {
    
    overflow: hidden;
    position: relative;   max-width: 1200px; /* adjust this as needed */
    margin: 0 auto;    /* center horizontally */
    padding: 0 20px; 
}

.new-arrivals-auto h2{
        text-align: center;       /* center heading */
    color: #0A2A5E;           /* navy color */
    font-size: 2rem;          /* same as ships-section */
    margin-bottom: 25px;      /* spacing below heading */
    font-weight: 700;    
}

.auto-scroll-container {
    display: flex;
    gap: 20px;
    animation: scroll-left 20s linear infinite;
}

.scroll-item {
    flex: 0 0 220px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}
.scroll-item a {
    text-decoration: none; /* remove underline from links */
    color: inherit;        /* inherit color from h3 / container */
}

.scroll-item h3 {
    text-align: center;
    padding: 8px 0;
    color: #0A2A5E;
    font-weight: 700;
    margin: 0;
}
.scroll-item:hover {
    transform: translateY(-5px);
    animation-play-state: paused; /* Pause auto-scroll on hover */
}

.scroll-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}


/* Keyframes for auto-scroll */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Adjust depending on total items */
}

/* ===========================
   Ships Grid Section
=========================== */
.ships-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.ships-section h2 {
    text-align: center;
    color: #0A2A5E;
    font-size: 2rem;
    margin-bottom: 25px;
}
.ships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.ship-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    padding: 15px;
    transition: 0.3s;
}
.ship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.ship-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}
.ship-card h3 {
    margin: 10px 0 5px;
    font-size: 1.1rem;
    color: #0A2A5E;
}
.ship-card p {
    margin: 4px 0;
    font-size: 0.9rem;
    color: #555;
}
.btn-inquiry {
    display: inline-block;
    padding: 8px 12px;
    background: #B88A44;
    color: #0A2A5E;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.btn-inquiry:hover {
    background: #0A2A5E;
    color: #B88A44;
}

/* ===========================
   Pagination
=========================== */
.pagination {
    text-align: center;
    margin-top: 25px;
}
.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 3px;
    background: #fff;
    color: #0A2A5E;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}
.pagination a.active,
.pagination a:hover {
    background: #0A2A5E;
    color: #B88A44;
}

/* ===========================
   Description / About Section
=========================== */
.desc {
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.desc h2 {
    color: #0A2A5E;
    margin-bottom: 20px;
}
.desc p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}
.desc-highlight {
    font-weight: 700;
    color: #0074D9;
}

/* ===========================
   Responsive
=========================== */
@media(max-width:1024px) {
    .carousel-item { min-width: 180px; }
}
@media(max-width:768px) {
    .hero-text h1 { font-size: 2rem; }
    .hero-text p { font-size: 1rem; }
    .ships-grid { grid-template-columns: 1fr; }
    .carousel { padding: 0 10px; }
     .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ===========================
   Footer
=========================== */
footer {
    background: #0A2A5E;
    color: #ffffff;
    padding: 40px 20px 20px;
    font-size: 0.95rem;
}

/* LAYOUT */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: nowrap;   /* 👈 KEY: stop up-down */
}


.footer-about {
    display: flex;
    flex-direction: column;   /* 👈 stack items vertically */
}


.footer-about h3 {
    color: #F2C94C; /* Accessible gold */
    margin-bottom: 15px;
}

.footer-about p {
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 16px;
}

/* CONTACT LINKS — FIXED TOUCH TARGET */
.footer-contact {
    display: inline-flex;     /* icon + text */
    align-items: center;
    gap: 8px;                 /* ✅ valid value */

    min-height: 36px;         /* touch friendly */
    padding: 6px 10px;
    margin-bottom: 8px;

    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 6px;
}



.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    flex-shrink: 0;
}

.footer-contact:hover,
.footer-contact:focus {
    background: rgba(255, 255, 255, 0.15);
}

/* RIGHT SIDE */
.footer-links {
    flex: 1 1 35%;
}

.footer-links h4 {
    color: #F2C94C; /* Accessible gold */
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 3px;
}

.footer-links ul li a {
    display: inline-block;
    min-height: 36px;     /* smaller but OK */
    padding: 2px 0; 
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-links ul li a:hover,
.footer-links ul li a:focus {
    color: #F2C94C;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 0.85rem;
    width: 100%;
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}


/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .footer-contact {
        width: 100%;
    }
}

/* ===========================
   Responsive
=========================== */
@media(max-width:1024px) { .ships-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:800px) { .category-layout { flex-direction: column-reverse; } .category-sidebar { width:100%; margin-bottom:30px; } }
@media(max-width:768px) {
    /* Hide nav & category links by default */
    nav.sticky .nav-links,
    .category-nav .category-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        text-align: center;  /* center menu items on mobile */
        padding: 10px 0;     /* small padding */
        gap: 10px;           /* spacing between items */
        border-top: 1px solid #e0e0e0; /* optional separator */
    }

    /* Show nav when hamburger toggled */
    nav.sticky .nav-links.show,
    .category-nav .category-links.show {
        display: flex;
    }

    /* Hamburger visible on mobile */
    nav.sticky .hamburger,
    .category-nav .hamburger {
        display: block;
        margin-right: 1px;       /* align properly with centered logo */
    }

    /* Adjust logo on mobile if needed */
    nav.sticky .logo {
        margin-left: 0;      /* remove desktop spacing */
    }

    /* Center everything in nav-inner */
    nav.sticky .nav-inner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Category nav sticky adjustment */
    .category-nav {
        top: 60px;  /* stays below main nav */
        padding-left: 0; /* remove desktop padding */
        justify-content: center;
    }
}
@media(max-width:768px){
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-about, .footer-links {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
}
@media(max-width:500px) { .ships-grid { grid-template-columns: 1fr; } }



.about-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
}
.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}
.about-text {
    flex: 1 1 500px;
}
.about-text h2 {
    color: #0A2A5E;
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.about-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #333;
}
.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}
.about-stats .stat {
    background: #0A2A5E;
    color: #B88A44;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    flex: 1 1 120px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-stats .stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.about-stats .stat h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.about-stats .stat p {
    font-size: 0.95rem;
    margin: 0;
    color: #fff;
}
.about-image {
    flex: 1 1 400px;
}
.about-image img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.about-image img:hover {
    transform: scale(1.03);
}
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
@media(max-width:768px){
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-text {
        order: 2;
    }
    .about-image {
        order: 1;
    }
    .about-stats {
        justify-content: center;
    }
}


/* =========================
   Services Section
========================= */
.services-section {
    background: #fff; /* changed from gradient to white */
    padding: 60px 20px;
    color: #0A2A5E; /* text color dark blue */
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: #f9f9f9; /* subtle contrast to white section */
    color: #0A2A5E;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08); /* softer shadow */
    transition: 0.4s ease, transform 0.4s ease;
    position: relative;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12); /* slightly stronger on hover */
}

.service-box h3 {
    margin: 15px 0;
    font-size: 1.3rem;
}

.service-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333; /* more readable text */
}

.service-icon {
    color: #B88A44;
    font-size: 2rem; /* slightly larger icon */
    margin-bottom: 12px;
}

.btn-service {
    display: inline-block;
    padding: 8px 15px;
    background: #0A2A5E;
    color: #B88A44;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-service:hover {
    background: #0074D9;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}


.privacy-timeline-section {
    padding: 50px 20px;
    background: #f0f4f8;
    font-family: 'Arial', sans-serif;
    color: #0A2A5E;
}

.privacy-timeline-section h1 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.privacy-timeline-section .intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #333;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #0074D9;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #0074D9;
    border: 4px solid #fff;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: #fff;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-content h2 {
    margin-top: 0;
    color: #0A2A5E;
}

.timeline-content p {
    margin: 10px 0 0 0;
    line-height: 1.5;
}

.timeline-date {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #0074D9;
    font-weight: 600;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 20px;
    }
    .timeline-item, .timeline-item.right {
        width: 100%;
        padding-left: 50px;
        padding-right: 25px;
        margin-bottom: 30px;
    }
    .timeline-item.right {
        left: 0;
    }
    .timeline-item::after, .timeline-item.right::after {
        left: 0;
    }
}
.terms-section {
    padding: 50px 20px;
    background: #eef2f6;
    font-family: 'Arial', sans-serif;
    color: #0A2A5E;
}

/* Add container inside terms-section for consistent left/right spacing */
.terms-section .container {
    max-width: 1200px; /* same width as other pages */
    margin: 0 auto;    /* center horizontally */
    padding: 0 20px;   /* extra padding on small screens */
}

.terms-section h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.terms-section .intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    color: #333;
}

/* Term Cards */
.terms-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
}

.term-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.term-card h2 {
    color: #0074D9;
    margin-bottom: 10px;
}

.term-card p {
    line-height: 1.6;
    color: #333;
}

/* Responsive */
@media screen and (max-width:768px){
    .terms-cards {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    padding: 50px 20px;
    background: #f5f5f5;
    color: #0A2A5E;
    font-family: Arial, sans-serif;
}

.contact-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: #0A2A5E;
    margin-bottom: 15px;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #333;
}
.contact-email a,
.contact-phone a,
.contact-whatsapp a {
    color: #333;                 /* Same text color */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.6;            /* Slight vertical breathing space */
}

.contact-email a:hover,
.contact-phone a:hover,
.contact-whatsapp a:hover {
    text-decoration: underline;
}

/* Icons */
.mail-icon,
.phone-icon,
.whatsapp-icon {
    fill: #333;                  /* Same icon color */
}


.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: #0A2A5E;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #B88A44; /* gold */
    color: #0A2A5E;      /* navy */
}

@media (max-width:768px){
    .contact-section {
        padding: 30px 15px;
    }
}

.ship-details-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 50px auto;
    flex-wrap: wrap;         /* allows stacking on small screens */
    align-items: flex-start; /* top-align image and content */
}

.ship-image-box {
    flex-shrink: 0;       /* prevent shrinking */
    width: 450px;          /* increase width for bigger image */
    max-width: 100%;       /* responsive */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    background: #f5f5f5;
}

.ship-image-box img {
    display: block;
    width: 100%;   /* fills container width */
    height: auto;  /* keeps natural aspect ratio */
    object-fit: cover;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .ship-details-container {
        flex-direction: column;
    }

    .ship-image-box {
        width: 100%;  /* full width on mobile */
    }
}


.ship-info-box {
    flex: 1;          /* content takes remaining space */
    min-width: 250px; /* prevents text from being too narrow */
    display: flex;
    flex-direction: column;
}



.ship-desc-scroll { max-height:200px; overflow-y:auto; background:#f7f7f7; padding:15px; border-left:4px solid #B88A44; border-radius:6px; margin-bottom:20px; color:#444; font-size:14px; }
.ship-specs p { margin:6px 0; font-size:14px; color:#333; }
.price-tag { color:#B88A44; font-weight:700; font-size:16px; }
.ship-desc {
    margin: 6px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5; /* optional, makes it more readable */
}

.btn-inquiry.ship-btn { background:#0A2A5E; color:#fff; padding:12px 25px; text-align:center; text-decoration:none; border-radius:6px; font-weight:700; transition:0.3s; margin-top:20px; display:inline-block; }
.btn-inquiry.ship-btn:hover { background:#B88A44; color:#0A2A5E; }

@media(max-width:900px){ .ship-details-container{ flex-direction:column; } }

:root {
    --navy: #0A2A5E;
    --gold: #B88A44;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
}
.container-fixed { max-width: 1200px; margin: 0 auto; padding: 20px 20px; }
.category-header-wrap h1 { font-size: 28px; color: var(--navy); font-weight: 800; border-left: 5px solid var(--gold); padding-left: 15px; margin-bottom: 25px; }

.category-layout { display: flex; gap: 35px; align-items: flex-start; }
.ships-main { flex: 1; min-width: 0; }
.ships-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.ship-card { background: var(--white); border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: 0.3s; }
.ship-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-color: var(--gold); }
.ship-img { width: 100%; height: 160px; object-fit: cover; }
.ship-card-body { padding: 15px; display: flex; flex-direction: column; flex-grow:1; }
.ship-card-body h3 a { color: var(--navy); font-weight:700; text-decoration:none; margin-bottom: 8px; display:block; }
.ship-specs p { font-size:13px; margin:4px 0; color:#555; }
.price-tag { color: var(--gold); font-weight:700; font-size:15px; }
.ship-desc-scroll { height:40px; overflow-y:auto; background: var(--light-gray); padding: 10px; border-left:3px solid var(--gold); font-size:12px; margin:10px 0; border-radius:4px; color:#666; }
.btn-inquiry { background: var(--navy); color: var(--white); padding: 10px; text-align:center; text-decoration:none; border-radius:4px; font-weight:700; margin-top:auto; transition:0.3s; }
.btn-inquiry:hover { background: var(--gold); color: var(--navy); }

.category-sidebar { width:250px; flex-shrink:0; }
.sidebar-box { background: var(--white); border:1px solid var(--border-color); border-radius:8px; padding:20px; margin-bottom:20px; box-shadow:0 2px 10px rgba(0,0,0,0.03); }
.sidebar-title { font-weight:800; color: var(--navy); border-bottom:2px solid var(--gold); padding-bottom:8px; margin-bottom:15px; text-transform:uppercase; }
.subcat-list { list-style:none; padding:0; }
.subcat-list li a { display:block; padding:8px 10px; text-decoration:none; font-weight:600; color:#444; border-radius:4px; transition:0.2s; }
.subcat-list li a:hover, .subcat-list li.active-link a { background: var(--light-gray); color: var(--gold); }

.sidebar-contact-card { background: var(--navy); color: var(--white); padding:20px; border-radius:8px; text-align:center; }
.sidebar-contact-card h4 { color: var(--gold); margin-bottom:10px; }
.btn-sidebar-contact { display:inline-block; background: var(--gold); color: var(--navy); padding:8px 15px; text-decoration:none; border-radius:4px; font-weight:700; }

.empty-state-box {
    text-align: center;
    padding: 90px 30px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 700px;
    margin: 60px auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Icon spacing */
.empty-icon {
    font-size: 56px;
    color: var(--gold);
    margin-bottom: 25px;
}

/* Paragraph spacing */
.empty-state-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    padding: 0 10px;
}

/* Button spacing & centering */
.btn-home-redirect {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Hover effect */
.btn-home-redirect:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Mobile spacing */
@media (max-width: 600px) {
    .empty-state-box {
        padding: 60px 20px;
        margin: 40px 15px;
    }

    .empty-icon {
        font-size: 46px;
    }

    .btn-home-redirect {
        padding: 12px 28px;
    }
}


.bottom-seo-section { padding:50px 20px; background: var(--light-gray); border-top:1px solid var(--border-color); margin-top:40px; }
.seo-card { max-width:900px; margin:0 auto; background: var(--white); padding:35px; border-radius:12px; }

.pagination { text-align:center; margin-top:30px; display:flex; justify-content:center; gap:8px; }
.pagination a { padding:8px 15px; border:1px solid var(--border-color); border-radius:4px; text-decoration:none; color: var(--navy); font-weight:700; }
.pagination a.active { background: var(--navy); color: var(--white); }

@media (max-width:1024px) { .ships-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:800px) { .category-layout { flex-direction: column-reverse; } .category-sidebar { width:100%; margin-bottom:30px; } }
@media (max-width:500px) { .ships-grid { grid-template-columns:1fr; } }