/* public/css/style.css */
:root {
    --primary-blue: #003366; /* Your Deep Maritime Blue */
    --accent-blue: #005b96;  /* Your Ocean Blue */
    --bg-light: #f4f7f6;     
    --text-dark: #2c3e50;
    --success-green: #2ecc71;
    --alert-red: #e74c3c;
    --white: #ffffff;
}

body {
    background-color: var(--bg-light);
    font-family: 'Inter', 'Segoe UI', sans-serif; /* Added Inter for a more modern B2B feel */
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- NAVIGATION --- */
.navbar-custom {
    background-color: var(--primary-blue);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white) !important;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:hover {
    color: #ffffff !important;
}

/* --- HERO CAROUSEL --- */
.carousel-item {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.3));
}

.carousel-caption {
    text-align: left;
    bottom: 20%;
    z-index: 10;
    max-width: 800px;
}

.hero-tag {
    color: var(--success-green);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* --- BUTTONS (Enterprise Style) --- */
.btn-primary-pro {
    background-color: var(--accent-blue);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-primary-pro:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    color: white;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-blue);
}

/* --- CARDS & FEATURES --- */
.card-custom {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    background: var(--white);
}

.card-custom:hover {
    transform: translateY(-10px);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--accent-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* --- BOOKING FORM --- */
.booking-section {
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-blue);
}

.form-control, .form-select {
    border: 1.5px solid #edf2f7;
    padding: 12px;
    border-radius: 8px;
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 91, 150, 0.1);
}

/* --- STATUS BADGES --- */
.badge-status-pending { background-color: #f39c12; color: white; padding: 6px 12px; border-radius: 20px; }
.badge-status-scheduled { background-color: var(--accent-blue); color: white; padding: 6px 12px; border-radius: 20px; }
.badge-status-berthed { background-color: var(--success-green); color: white; padding: 6px 12px; border-radius: 20px; }

/* --- FOOTER --- */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0;
    font-size: 0.9rem;
}

#notification-bell:hover .fa-bell {
    color: #ffc107 !important;
    transform: rotate(15deg);
}