/* ============================================
   ROATAN IGUANA EXCURSIONS - VIBRANT CARIBBEAN STYLE
   ============================================ */

/* Force navbar horizontal layout on desktop only — mobile handled by header.php */
@media (min-width: 769px) {
    .navbar-menu {
        display: flex !important;
        flex-direction: row !important;
    }
}

/* ============================================
   ROOT VARIABLES - VIBRANT CARIBBEAN COLORS
   ============================================ */
:root {
    /* Primary Colors - Vibrant Coral & Ocean */
    --primary-color: #FF6B4A; /* vibrant coral */
    --primary-dark: #E85A3A; /* darker coral */
    --primary-light: #FFB5A0; /* light coral accent */
    
    /* Accent Colors - Ocean & Sky */
    --accent-color: #00A8E8; /* vibrant ocean blue */
    --accent-dark: #0084B8; /* darker ocean */
    --accent-light: #4DCFFF; /* light sky blue */
    
    /* Secondary Colors - Tropical */
    --tropical-green: #2DB373; /* tropical green */
    --tropical-gold: #FFD700; /* golden accent */
    --tropical-teal: #17A2A2; /* teal accent */
    
    /* Neutral Colors */
    --dark-navy: #0D3B66; /* dark navy for backgrounds */
    --light-bg: #F8FFFE; /* light background */
    --white: #FFFFFF; /* pure white */
    --dark-text: #1A1A1A; /* dark text */
    --gray-text: #666666; /* gray text */
    --border-color: #E0E0E0; /* light borders */
    
    /* Utility Colors */
    --success-color: #2DB373;
    --danger-color: #E74C3C;
    --warning-color: #F39C12;
    --info-color: #00A8E8;
}

/* ============================================
   GENERAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Trebuchet MS', 'Georgia', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVBAR - VIBRANT HEADER
   ============================================ */
.navbar {
    background: linear-gradient(90deg, var(--white) 0%, var(--white) 100%);
    color: var(--dark-text);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(15, 59, 102, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 4px solid var(--primary-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand h1 {
    font-size: 1.8rem;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 1px;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-item {
    color: var(--dark-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-item:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.navbar-item:hover::after {
    width: calc(100% - 2rem);
}

.navbar-item.active {
    color: var(--primary-color);
    font-weight: 700;
}

.navbar-item.active::after {
    width: calc(100% - 2rem);
}

/* ============================================
   ALERTS & NOTIFICATIONS
   ============================================ */
.alert {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.alert-error {
    background: linear-gradient(135deg, #FFE8E8, #FFF5F5);
    color: #8B4513;
    border-color: var(--danger-color);
}

.alert-success {
    background: linear-gradient(135deg, #E8F8F0, #F0FFFE);
    color: #1B5E4A;
    border-color: var(--success-color);
    font-weight: 600;
}

/* ============================================
   AUTHENTICATION PAGE - BEACH PARADISE THEME
   ============================================ */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--accent-dark) 50%, var(--primary-color) 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.auth-container::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(77, 159, 239, 0.15), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.auth-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
    border: 2px solid var(--primary-color);
    border-top: 5px solid var(--primary-color);
}

.auth-box h1 {
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    letter-spacing: 1px;
    font-weight: 900;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--dark-text);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.1);
    transform: translateY(-2px);
}

.form-group small {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-top: 0.5rem;
}

.form-divider {
    border-top: 2px solid var(--border-color);
    margin: 1.5rem 0;
    padding-top: 1rem;
}

.form-divider h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.form-divider p {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.auth-link {
    text-align: center;
    margin-top: 1rem;
}

.auth-link a {
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.auth-link a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.auth-link a:hover {
    color: var(--primary-color);
}

.auth-link a:hover::after {
    width: 100%;
}

/* ============================================
   BUTTONS - VIBRANT & INTERACTIVE
   ============================================ */
.btn {
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF5A2A 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 74, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0084B8 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 168, 232, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color) 0%, #D63447 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #1E8A5C 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 179, 115, 0.3);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 179, 115, 0.4);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}

/* Tours Section */
.tours-section {
    margin: 3rem 0;
}

.tours-section h2 {
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Tours Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    font-style: italic;
}

/* Tours List View - Clean Layout */
.tours-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.tour-card-clean {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
}

.tour-card-clean:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.tour-card-image {
    flex: 0 0 350px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.tour-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.tour-card-image img:hover {
    transform: scale(1.05);
}

.view-gallery-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-card-image:hover .view-gallery-hint {
    opacity: 1;
}

.tour-image-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--light-color), var(--border-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.tour-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.tour-card-body h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.tour-location {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.tour-description {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.tour-highlights {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tour-duration {
    font-size: 0.95rem;
    color: var(--gray-color);
}

.tour-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Gallery View */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    background: var(--border-color);
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(139, 111, 71, 0.95);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    min-height: 60px;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1rem;
    animation: zoomIn 0.3s ease;
}

.lightbox-title {
    color: white;
    font-size: 1.3rem;
    text-align: center;
    max-width: 90%;
    letter-spacing: 0.5px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
    padding: 2rem;
}

.tour-info h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: bold;
}

.tour-location {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.tour-description {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tour-meta {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--border-color);
    padding-top: 1.5rem;
}

.tour-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Booking Page */
.booking-section {
    margin: 3rem 0;
}

.booking-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.booking-tour-info {
    background: white;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
}

.booking-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    margin-bottom: 2rem;
}

.booking-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--light-color), var(--border-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.booking-tour-info h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
}

.tour-description {
    margin-top: 2.5rem;
}

.tour-description h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.booking-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
    border-left: 4px solid var(--primary-color);
}

.booking-form-section h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.total-price-display {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 0;
    text-align: center;
    border: 2px solid var(--border-color);
}

.total-price-display p {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Bookings Table */
.bookings-section {
    margin: 3rem 0;
}

.bookings-table-wrapper {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    border-left: 4px solid var(--accent-color);
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
}

.bookings-table thead {
    background-color: var(--primary-color);
    color: white;
}

.bookings-table th,
.bookings-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.bookings-table tbody tr:hover {
    background-color: var(--light-color);
}

.booking-row-image {
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-right: 1rem;
}

.booking-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-confirmed {
    background-color: #e8f5e9;
    color: #2d5016;
}

.status-cancelled {
    background-color: #fff3f3;
    color: #8B4513;
}

/* Admin Layout */
.admin-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2.5rem;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    width: 280px;
    z-index: 1000;
}

.sidebar-brand h2 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.sidebar-brand p {
    font-size: 0.9rem;
    opacity: 0.85;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem 0;
}

.sidebar-item {
    color: white;
    text-decoration: none;
    padding: 1rem 1.2rem;
    border-radius: 6px;
    display: block;
    transition: all 0.3s;
    font-size: 1rem;
}

.sidebar-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.sidebar-item.active {
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: 600;
}

.sidebar-user {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
}

.admin-content {
    margin-left: 280px;
    padding: 3rem;
    background-color: var(--light-color);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admin-header h1 {
    color: var(--dark-color);
    font-size: 2rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-card h3 {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.admin-section {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.admin-section h2 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1.6rem;
}

.section-subtitle {
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tool-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.tool-card h3 {
    color: var(--dark-navy);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.tool-card p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Sidebar Divider */
.sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

.sidebar-label {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Tours List */
.tours-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tour-list-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 6px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s;
}

.tour-list-item:hover {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tour-list-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.tour-list-info {
    flex: 1;
}

.tour-list-info h3 {
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.tour-list-info p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--gray-color);
}

.tour-price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.tour-status {
    font-size: 0.9rem;
    margin-top: 0.7rem;
}

.tour-list-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Tour Form */
.tour-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.current-image {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Utilities */
.no-tours,
.no-bookings {
    text-align: center;
    color: var(--gray-color);
    padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-content {
        grid-template-columns: 1fr;
    }

    .booking-form-section {
        position: static;
        sticky: unset;
    }

    .admin-wrapper {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        width: 100%;
        height: auto;
        padding: 1.5rem;
    }

    .admin-content {
        margin-left: 0;
        padding: 1.5rem;
    }

    .tour-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .tour-list-image {
        width: 100%;
        height: 200px;
    }

    .admin-content {
        margin-left: 0;
    }

    .admin-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .navbar-menu {
        gap: 1rem;
    }

    .bookings-table {
        font-size: 0.85rem;
    }

    .bookings-table th,
    .bookings-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .auth-box {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== BOOKING PAGE STYLES ===== */

.booking-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0;
}

.booking-hero-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.booking-hero-text {
    flex: 1;
}

.booking-hero-text h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: white;
}

.booking-hero-text .tour-location,
.booking-hero-text .tour-duration {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    opacity: 0.95;
}

.back-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 1;
}

.booking-hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.booking-hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.booking-main {
    padding: 3rem 0;
    background-color: var(--light-color);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tour-description-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tour-description-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tour-description-section p {
    line-height: 1.8;
    color: var(--text-color);
}

.price-summary {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.price-summary h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.price-row span {
    color: var(--gray-color);
}

.price-row strong {
    color: var(--text-color);
    font-weight: 600;
}

.price-row.total {
    border-top: 2px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.3rem;
}

.price-row.total strong {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.booking-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.booking-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-section {
    border: none;
    margin-bottom: 2rem;
    padding: 0;
}

.form-section legend {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fafaf9;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border: 1px solid var(--primary-color);
    background-color: white;
    box-shadow: inset 0 0 0 2px rgba(139, 111, 71, 0.1);
}

.form-group small {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-top: 0.3rem;
}

.number-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    background-color: white;
}

.btn-qty {
    background-color: var(--light-color);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-qty:hover {
    background-color: var(--accent-color);
    color: white;
}

.number-input input {
    border: none;
    text-align: center;
    width: 60px;
    font-weight: 600;
    background-color: white;
}

.number-input input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.user-info-display {
    background-color: var(--light-color);
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid var(--success-color);
}

.user-info-display p {
    margin: 0.3rem 0;
}

.user-info-display p:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.user-info-display a {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
}

.user-info-display a:hover {
    text-decoration: underline;
}

.btn-book {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    align-self: flex-start;
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-top: 1rem;
    text-align: center;
}

/* Mobile responsiveness for booking */
@media (max-width: 768px) {
    .booking-hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .booking-hero-text h1 {
        font-size: 1.8rem;
    }

    .booking-hero-image img {
        height: 250px;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row.two-columns {
        grid-template-columns: 1fr;
    }

    .booking-form-wrapper {
        padding: 1.5rem;
    }

    .tour-card {
        margin-bottom: 1rem;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ADMIN THEME - MODERN & CONSISTENT
   ============================================ */

/* Admin Page Background */
.admin-page {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f4f8 100%);
    min-height: 100vh;
    padding: 2rem 0;
    font-family: 'Poppins', sans-serif;
}

/* Admin Header */
.admin-header-modern {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--accent-color) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.admin-header-modern h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.admin-header-modern p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Admin Navigation */
.admin-nav-bar {
    background: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.admin-nav-bar a {
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.admin-nav-bar a:first-child {
    background: var(--primary-color);
    color: white;
}

.admin-nav-bar a:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(255, 107, 74, 0.3);
}

.admin-nav-bar a:not(:first-child) {
    background: transparent;
    color: var(--dark-navy);
    border-color: var(--primary-color);
}

.admin-nav-bar a:not(:first-child):hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Admin Section */
.admin-section-modern {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.admin-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

/* Admin Form Groups */
.admin-form-group {
    margin-bottom: 2rem;
}

.admin-form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.admin-form-group input[type="text"],
.admin-form-group input[type="email"],
.admin-form-group input[type="password"],
.admin-form-group input[type="number"],
.admin-form-group input[type="date"],
.admin-form-group input[type="file"],
.admin-form-group textarea,
.admin-form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.admin-form-group input:focus,
.admin-form-group textarea:focus,
.admin-form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.1);
}

.admin-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.admin-form-help {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    display: block;
}

/* Admin Form Row */
.admin-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Admin Buttons */
.admin-btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.admin-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(255, 107, 74, 0.3);
    color: white;
}

.admin-btn-secondary {
    background: transparent;
    color: var(--dark-navy);
    border: 2px solid var(--border-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.admin-btn-secondary:hover {
    background: #f8f9fa;
    border-color: var(--dark-navy);
    transform: translateY(-3px);
}

/* Admin Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.admin-table thead th {
    background: #f8f9fa;
    border-bottom: 2px solid var(--border-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    color: var(--dark-navy);
}

.admin-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.admin-table tbody tr:hover {
    background: #f8f9fa;
    transform: translateX(2px);
}

.admin-table td {
    padding: 1.2rem;
    vertical-align: middle;
}

/* Admin Alert */
.admin-alert {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    border-left: 4px solid;
}

.admin-alert-success {
    background: #d1f2e5;
    color: #0f5132;
    border-left-color: var(--success-color);
}

.admin-alert-error {
    background: #f8d7da;
    color: #842029;
    border-left-color: var(--danger-color);
}

.admin-alert-warning {
    background: #fff3cd;
    color: #664d03;
    border-left-color: var(--warning-color);
}

.admin-alert-info {
    background: #cfe2ff;
    color: #084298;
    border-left-color: var(--info-color);
}

/* Admin Info Box */
.admin-info-box {
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.05) 0%, rgba(255, 107, 74, 0.05) 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.admin-info-box strong {
    color: var(--dark-navy);
}

/* Admin Card */
.admin-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.admin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.admin-card h3 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Back Link */
.admin-back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.admin-back-link:hover {
    color: white;
    transform: translateX(-3px);
}

/* Stats Grid */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.admin-stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.admin-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.admin-stat-card h6 {
    color: var(--dark-navy);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.admin-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .admin-section-modern {
        padding: 2rem 1.5rem;
    }
    
    .admin-header-modern {
        padding: 2rem 1.5rem;
    }
    
    .admin-header-modern h1 {
        font-size: 1.8rem;
    }
    
    .admin-form-row {
        grid-template-columns: 1fr;
    }
    
    .admin-table {
        font-size: 0.9rem;
    }
    
    .admin-table td {
        padding: 0.8rem;
    }
}

/* ============================================
   MOBILE-FIRST HARDENING (SITEWIDE)
   ============================================ */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

input,
select,
textarea,
button,
.btn,
a.btn,
.navbar-item {
    min-height: 44px;
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    h1 {
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.2;
    }

    h2 {
        font-size: clamp(1.25rem, 5.5vw, 1.6rem);
        line-height: 1.25;
    }

    p,
    li,
    label,
    input,
    select,
    textarea,
    .navbar-item {
        font-size: 1rem;
    }

    .btn,
    a.btn {
        width: 100%;
        justify-content: center;
    }

    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ============================================
   DEEP MOBILE POLISH — SITEWIDE
   ============================================ */

/* ── Public-tours hero ─────────────────────── */
@media (max-width: 768px) {
    .hero-excursions {
        padding: 2rem 1rem !important;
        border-radius: 0 0 12px 12px !important;
    }
    .hero-excursions h1 {
        font-size: clamp(1.3rem, 7vw, 1.9rem) !important;
        line-height: 1.2 !important;
        letter-spacing: 0 !important;
    }
    .hero-excursions p {
        font-size: 0.92rem !important;
        margin-bottom: 1.25rem !important;
    }

    /* Trust badges: 2×2 grid on phones */
    .trust-badges-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.85rem !important;
        padding: 1rem !important;
        margin-top: 1.5rem !important;
    }
    .trust-badges-row > div > div:first-child {
        font-size: 1.8rem !important;
    }
    .trust-badges-row > div > div:last-child {
        font-size: 0.82rem !important;
    }

    /* Filter pills: always horizontal scroll, never wrap */
    .filter-pills-row {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 8px !important;
        justify-content: flex-start !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    .filter-pills-row::-webkit-scrollbar {
        display: none !important;
    }

    /* Tour cards: single column */
    .excursions-grid {
        grid-template-columns: 1fr !important;
        gap: 1.4rem !important;
    }

    /* Featured tours grid: single column */
    .site-section div[style*="minmax(320px"] {
        grid-template-columns: 1fr !important;
    }

    /* Reviews carousel: move buttons below */
    .reviews-section {
        margin-left: 10px !important;
        margin-right: 10px !important;
        padding: 2rem 0 1.5rem !important;
    }
    .reviews-wrap {
        padding-bottom: 64px !important;
    }
    .rev-prev-btn {
        left: 10px !important;
        right: auto !important;
        top: auto !important;
        bottom: 0 !important;
        transform: none !important;
        width: 44px !important;
        height: 44px !important;
    }
    .rev-next-btn {
        right: 10px !important;
        left: auto !important;
        top: auto !important;
        bottom: 0 !important;
        transform: none !important;
        width: 44px !important;
        height: 44px !important;
    }

    /* Tour landing page section */
    section.container {
        padding: 1rem 14px 2rem !important;
    }

    /* Book-tour hero */
    .booking-hero-content {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    .booking-hero-text h1 {
        font-size: clamp(1.3rem, 6vw, 1.8rem) !important;
    }
    .booking-hero-image {
        width: 100% !important;
    }

    /* Footer bottom bar */
    .footer .container > div:last-child {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.6rem !important;
    }
    .footer .container > div:last-child > span[style*="color:#666"] {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-excursions h1 {
        font-size: 1.3rem !important;
    }
    .excursion-card > div:first-child {
        height: 200px !important;
    }
    /* Booking form: collapsible guest row */
    .bt-guests-row {
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
    }
}

/* ============================================================
   NAVBAR — moved from includes/header.php
   ============================================================ */

.navbar {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFF 100%);
    color: #1A1A1A;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(15, 59, 102, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 4px solid #FF6B4A;
}

.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-shell {
    gap: 1rem;
}

.navbar-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
}

.navbar-item {
    color: #1A1A1A;
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    position: relative;
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.8rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6B4A, #00A8E8);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-item:hover {
    color: #FF6B4A;
    transform: translateY(-2px);
}

.navbar-item:hover::after {
    width: calc(100% - 1.6rem);
}

.navbar-toggle {
    display: none;
    border: 1px solid #cbd5e1;
    background: #fff;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.navbar-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #0D3B66;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .navbar-shell {
        flex-wrap: wrap;
    }

    .navbar-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .navbar-brand h1 {
        font-size: 1.2rem !important;
    }

    .navbar-brand p {
        font-size: 0.7rem !important;
    }

    .navbar-menu {
        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
        margin: 0.75rem 0 0 0;
        gap: 0.45rem;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 0.45rem;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    }

    .navbar-menu.is-open {
        display: flex !important;
    }

    .navbar-dropdown {
        width: 100%;
    }

    .navbar-item {
        font-size: 0.96rem;
        padding: 0.85rem 0.95rem;
        width: 100%;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        min-height: 44px;
    }

    .navbar-item::after {
        display: none;
    }
}

/* ============================================================
   NAVBAR DROPDOWNS
   ============================================================ */

.navbar-dropdown {
    position: relative;
}

.navbar-dropdown > .navbar-item {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
}

.navbar-dropdown > .navbar-item::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px; /* bridge gap so menu doesn't close when moving to it */
}

.dropdown-chevron {
    font-size: 0.6rem;
    transition: transform 0.2s ease;
    display: inline-block;
    margin-left: 2px;
}

/* Desktop only: hover to show dropdowns & rotate chevron */
@media (min-width: 769px) {
    .navbar-dropdown:hover .dropdown-chevron {
        transform: rotate(180deg);
    }
    .navbar-dropdown:hover .dropdown-menu {
        display: block;
    }
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(13, 59, 102, 0.14);
    min-width: 220px;
    padding: 0.5rem;
    z-index: 200;
    white-space: nowrap;
}

.dropdown-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.6rem 0.75rem 0.3rem;
}

.dropdown-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 0.35rem 0.5rem;
}

.dropdown-item {
    display: block;
    padding: 0.55rem 0.75rem;
    color: #1A1A1A;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}

.dropdown-item:hover {
    background: #fff5f2;
    color: #FF6B4A;
}

.dropdown-item.highlight {
    color: #FF6B4A;
    font-weight: 700;
}

/* Mobile: dropdowns collapse/expand on tap */
@media (max-width: 768px) {
    .navbar-dropdown .dropdown-menu {
        display: none !important;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        border-radius: 8px;
        padding: 0.25rem 0.25rem 0.25rem 1rem;
        margin: 0.25rem 0;
        min-width: 0;
        white-space: normal;
    }

    .navbar-dropdown.dropdown-open > .dropdown-menu {
        display: block !important;
    }

    .navbar-dropdown > .navbar-item {
        justify-content: space-between;
    }

    .dropdown-chevron {
        display: inline-block;
        font-size: 0.55rem;
        transition: transform 0.25s ease;
    }

    .navbar-dropdown.dropdown-open .dropdown-chevron {
        transform: rotate(180deg);
    }

    .dropdown-item {
        font-size: 0.85rem;
        padding: 0.45rem 0.6rem;
    }
}

/* ============================================================
   FOOTER — moved from includes/footer.php
   ============================================================ */

.footer {
    font-family: 'Poppins', sans-serif;
}

.footer a {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1rem 0;
    }
}

/* ============================================================
   WHATSAPP FLOAT BUTTON — moved from includes/footer.php
   ============================================================ */

@keyframes pulse-whatsapp {
    0%   { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
    50%  { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8); }
    100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    z-index: 9998;
    cursor: pointer;
    animation: pulse-whatsapp 2s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* ============================================================
   CRUISE CLUSTER — shared styles across all cruise/port pages
   ============================================================ */

/* Hero */
.cruise-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #0d3b66;
}

/* Main content wrapper */
.cruise-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2.2rem 1rem 3.5rem;
}

/* Tour card grid (shared with family/category pages) */
.fam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 1rem;
}

.fam-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.fam-card:hover {
    box-shadow: 0 6px 24px rgba(13,59,102,0.12);
    transform: translateY(-3px);
}

.fam-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: #e2e8f0;
}

.fam-card .ph {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    font-size: 2rem;
}

.fam-card .body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fam-card h3 {
    margin: 0 0 0.35rem;
    color: #0D3B66;
    font-size: 1rem;
}

.fam-meta {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 0.45rem;
}

.fam-price {
    color: #FF6B4A;
    font-weight: 800;
    margin-top: auto;
}

/* Responsive adjustments for cruise pages */
@media (max-width: 768px) {
    .cruise-hero {
        min-height: 300px;
    }

    .fam-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .cruise-hero {
        min-height: 260px;
    }

    .fam-grid {
        grid-template-columns: 1fr;
    }

    .fam-card img,
    .fam-card .ph {
        height: 180px;
    }
}

/* ============================================================
   GROUND SERVICES PAGE
   ============================================================ */

/* Hero */
.services-hero-wrap {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0D3B66 0%, #1a5a90 50%, #0D3B66 100%);
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/3769138/pexels-photo-3769138.jpeg?auto=compress&w=1400') center/cover no-repeat;
    opacity: 0.18;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 1.5rem;
    max-width: 760px;
}

.services-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: 0.5rem 0 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.services-hero-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.services-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.services-breadcrumb {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
}

.services-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.services-breadcrumb a:hover {
    color: #fff;
}

.services-hero-ctas {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-primary-coral {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B4A, #e55a39);
    color: #fff;
    text-decoration: none;
    padding: 0.7rem 1.6rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(255,107,74,0.4);
}

.btn-primary-coral:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,74,0.5);
    color: #fff;
    text-decoration: none;
}

.btn-whatsapp {
    display: inline-block;
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #fff;
    text-decoration: none;
    padding: 0.7rem 1.6rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    color: #fff;
    text-decoration: none;
}

.services-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

/* Main content */
.services-main {
    max-width: 1160px;
    margin: 0 auto;
    padding: 2.5rem 1rem 4rem;
}

.section-heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #0D3B66;
    margin: 0 0 0.4rem;
    font-family: 'Poppins', sans-serif;
}

.section-sub {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.8rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.service-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 8px 28px rgba(13,59,102,0.12);
    transform: translateY(-4px);
    border-color: #00A8E8;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0D3B66;
    margin: 0.75rem 0 0.4rem;
}

.service-card > p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.service-icon-blue   { background: #dbeafe; }
.service-icon-green  { background: #dcfce7; }
.service-icon-coral  { background: #fee2e2; }
.service-icon-teal   { background: #ccfbf1; }
.service-icon-gold   { background: #fef9c3; }
.service-icon-purple { background: #ede9fe; }

.service-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.service-includes li {
    font-size: 0.82rem;
    color: #475569;
    font-weight: 600;
}

.service-price {
    font-size: 1.35rem;
    font-weight: 900;
    color: #FF6B4A;
    margin-top: auto;
    margin-bottom: 0.75rem;
}

.service-price span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
}

.service-btn {
    background: linear-gradient(135deg, #0D3B66, #1a5a90);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-family: 'Poppins', sans-serif;
}

.service-btn:hover {
    background: linear-gradient(135deg, #FF6B4A, #e55a39);
    transform: translateY(-1px);
}

.service-btn-wa {
    display: block;
    width: 100%;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: 'Poppins', sans-serif;
    margin-top: 0.5rem;
}

.service-btn-wa:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.service-btn-secondary {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: var(--gray-text);
    font-size: 0.82rem;
    text-align: center;
    padding: 0.4rem 0;
    cursor: pointer;
    text-decoration: underline;
    font-family: 'Poppins', sans-serif;
    margin-top: 0.3rem;
    transition: color 0.15s;
}

.service-btn-secondary:hover {
    color: var(--dark-navy);
}

/* Features */
.services-features {
    background: linear-gradient(135deg, #f0f7ff, #f8fafc);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    margin-bottom: 3.5rem;
}

.services-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    text-align: center;
    padding: 1rem 0.5rem;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    line-height: 1;
}

.feature-item h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0D3B66;
    margin: 0 0 0.35rem;
}

.feature-item p {
    font-size: 0.83rem;
    color: #64748b;
    line-height: 1.5;
}

/* FAQ */
.services-faq {
    margin-bottom: 3.5rem;
}

.faq-item {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 0.6rem;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open] {
    border-color: #00A8E8;
}

.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0D3B66;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: #64748b;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Related section */
.services-related {
    margin-bottom: 2rem;
}

.services-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.related-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem;
    text-decoration: none;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.related-card:hover {
    box-shadow: 0 6px 20px rgba(13,59,102,0.1);
    transform: translateY(-3px);
    border-color: #FF6B4A;
    text-decoration: none;
    color: #1e293b;
}

.related-card span {
    font-size: 1.8rem;
    line-height: 1;
}

.related-card strong {
    font-size: 0.9rem;
    color: #0D3B66;
    font-weight: 800;
}

.related-card p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,59,102,0.65);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-inner {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: modalIn 0.22s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-modal-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-modal-header h2 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0D3B66;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #FF6B4A;
}

.booking-modal-body {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0D3B66;
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #1e293b;
    transition: border-color 0.2s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00A8E8;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.btn-submit-form {
    width: 100%;
    background: linear-gradient(135deg, #FF6B4A, #e55a39);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.85rem;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
    box-shadow: 0 4px 14px rgba(255,107,74,0.35);
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,74,0.5);
}

/* Services responsive */
@media (max-width: 768px) {
    .services-hero-wrap {
        min-height: 350px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-wrap {
        min-height: 300px;
    }

    .services-features-grid {
        grid-template-columns: 1fr;
    }

    .services-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============================================================
   HOMEPAGE — conversion layout (.hp-*)
   ============================================================ */

/* --- Hero --- */
.hp-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-navy);
}
.hp-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/12858509/pexels-photo-12858509.jpeg?auto=compress&w=1920&q=80') center/cover no-repeat;
    opacity: .38;
}
.hp-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1rem;
    max-width: 820px;
    margin: 0 auto;
}
.hp-hero-content h1 {
    color: #fff;
    font-size: clamp(1.9rem, 5vw, 3.2rem);
    line-height: 1.18;
    margin: .5rem 0 .9rem;
    font-weight: 900;
}
.hp-hero-content p {
    color: rgba(255,255,255,.88);
    font-size: 1.1rem;
    max-width: 660px;
    margin: 0 auto 1.4rem;
    line-height: 1.65;
}
.hp-hero-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    padding: .32rem .85rem;
    border-radius: 20px;
    margin-bottom: .6rem;
}
.hp-hero-accent {
    color: var(--accent-color);
}
.hp-hero-ctas {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.3rem;
}
.hp-cta-primary {
    background: #25D366;
    color: #fff;
    padding: .8rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: background .2s, transform .15s;
}
.hp-cta-primary:hover {
    background: #1fb855;
    transform: translateY(-2px);
}
.hp-cta-ghost {
    background: rgba(255,255,255,.15);
    color: #fff;
    padding: .8rem 1.6rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.45);
    transition: background .2s;
}
.hp-cta-ghost:hover {
    background: rgba(255,255,255,.25);
}
.hp-hero-trust {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: .82rem;
    color: rgba(255,255,255,.8);
}

/* --- Social proof strip --- */
.hp-proof-strip {
    background: var(--dark-navy);
    border-top: 3px solid var(--primary-color);
    padding: .85rem 1rem;
}
.hp-proof-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.hp-proof-item {
    color: rgba(255,255,255,.82);
    font-size: .88rem;
    text-align: center;
}
.hp-proof-sep {
    color: rgba(255,255,255,.35);
    font-size: 1.3rem;
    line-height: 1;
}

/* --- Generic section wrapper --- */
.hp-section {
    padding: 3rem 1rem;
}
.hp-section-inner {
    max-width: 1120px;
    margin: 0 auto;
}
.hp-section-head {
    margin-bottom: 1.8rem;
}
.hp-section-head .section-heading {
    margin-bottom: .35rem;
}

/* --- Tour card extras --- */
.hp-scarcity {
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: .3rem;
}
.hp-tour-trust {
    font-size: .78rem;
    color: var(--gray-text);
    margin: .3rem 0 .4rem;
}
.hp-book-inline {
    display: inline-block;
    margin-top: .6rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: .88rem;
}
.hp-see-all {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
    font-size: .95rem;
}
.hp-see-all:hover {
    text-decoration: underline;
}

/* --- Cruise port section --- */
.hp-cruise-section {
    background: var(--dark-navy);
    padding: 3rem 1rem;
}
.hp-port-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.hp-port-card {
    background: rgba(255,255,255,.07);
    border: 1.5px solid rgba(255,255,255,.14);
    border-radius: 14px;
    padding: 1.6rem;
    text-align: center;
    color: #fff;
}
.hp-port-card-whatsapp {
    border-color: #25D366;
    background: rgba(37,211,102,.1);
}
.hp-port-icon {
    font-size: 2.4rem;
    margin-bottom: .6rem;
    display: block;
}
.hp-port-card h3 {
    color: #fff;
    margin: 0 0 .35rem;
    font-size: 1.1rem;
}
.hp-port-card p {
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    margin: 0 0 .85rem;
}
.hp-port-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
}
.hp-port-link:hover {
    text-decoration: underline;
}
.hp-cruise-guarantees {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: .83rem;
    color: rgba(255,255,255,.72);
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 1.2rem;
}

/* --- Category pills --- */
.hp-categories {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hp-cat {
    display: inline-block;
    background: var(--light-bg);
    border: 1.5px solid #e2e8f0;
    color: var(--dark-text);
    padding: .55rem 1.1rem;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .15s, background .15s;
}
.hp-cat:hover {
    border-color: var(--primary-color);
    background: #fff7f5;
}

/* --- Transport & hotel insert cards --- */
.hp-insert-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.hp-insert-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    border-radius: 14px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    text-decoration: none;
    color: var(--dark-text);
}
.hp-insert-transport {
    border-left: 4px solid var(--accent-color);
}
.hp-insert-hotel {
    border-left: 4px solid var(--tropical-green);
}
.hp-insert-icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.hp-insert-body {
    flex: 1;
}
.hp-insert-body strong {
    display: block;
    color: var(--dark-navy);
    font-size: .97rem;
    margin-bottom: .2rem;
}
.hp-insert-body p {
    font-size: .83rem;
    color: var(--gray-text);
    margin: 0;
}
.hp-insert-btn {
    flex-shrink: 0;
    background: var(--light-bg);
    color: var(--dark-navy);
    border: 1.5px solid #e2e8f0;
    padding: .45rem .95rem;
    border-radius: 8px;
    font-size: .83rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .15s, background .15s;
}
.hp-insert-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* --- Email capture section --- */
.hp-email-section {
    background: linear-gradient(135deg, #0d3b66, #1a5490);
    padding: 3rem 1rem;
}
.hp-email-wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.hp-email-text h2 {
    color: #fff;
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    margin: 0 0 .6rem;
}
.hp-email-text p {
    color: rgba(255,255,255,.8);
    font-size: .95rem;
    margin: 0 0 1rem;
    line-height: 1.6;
}
.hp-email-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hp-email-bullets li {
    color: rgba(255,255,255,.85);
    font-size: .88rem;
    margin-bottom: .45rem;
}
.hp-email-form {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.hp-email-form input,
.hp-email-form select {
    padding: .72rem 1rem;
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: .95rem;
    font-family: inherit;
}
.hp-email-form input::placeholder {
    color: rgba(255,255,255,.55);
}
.hp-email-form select option {
    background: var(--dark-navy);
    color: #fff;
}
.hp-email-form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: .8rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
}
.hp-email-form button:hover {
    background: var(--primary-dark);
}
.hp-email-disclaimer {
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .hp-hero {
        min-height: 440px;
    }
    .hp-hero-trust {
        gap: .7rem;
        font-size: .78rem;
    }
    .hp-proof-sep {
        display: none;
    }
    .hp-email-wrap {
        grid-template-columns: 1fr;
    }
    .hp-port-grid {
        grid-template-columns: 1fr;
    }
    .hp-insert-card {
        flex-wrap: wrap;
    }
    .hp-insert-btn {
        width: 100%;
        text-align: center;
    }
    .hp-cruise-guarantees {
        gap: .75rem;
    }
}

/* ============================================================
   TOUR LANDING PAGE — upsell stack (.tl-*)
   ============================================================ */

.tl-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}
.tl-breadcrumb {
    font-size: .85rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
}
.tl-breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Two-column layout */
.tl-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}
.tl-main {}
.tl-sidebar {
    position: sticky;
    top: 80px;
}

/* Hero image */
.tl-hero-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    display: block;
    margin-bottom: 1.2rem;
}

/* Scarcity + viewing */
.tl-scarcity-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: .9rem;
}
.tl-scarcity {
    background: #fff3cd;
    color: #92400e;
    border-radius: 6px;
    padding: .3rem .75rem;
    font-size: .82rem;
    font-weight: 700;
}
.tl-viewing {
    font-size: .82rem;
    color: #e65100;
    font-weight: 700;
}

/* Trust signals */
.tl-trust-row {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}
.tl-trust-badge {
    background: var(--light-bg);
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: .3rem .75rem;
    font-size: .8rem;
    color: var(--gray-text);
}

/* Description */
.tl-desc {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

/* Meta pills */
.tl-pills {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}
.tl-pill {
    background: var(--light-bg);
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: .3rem .8rem;
    font-size: .83rem;
    color: #334155;
}

/* Booking sidebar card */
.tl-booking-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 4px 20px rgba(13,59,102,.08);
}
.tl-price-display {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: .15rem;
}
.tl-price-sub {
    font-size: .8rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
}
.tl-book-btn {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: .85rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    margin-bottom: .7rem;
    transition: background .2s;
}
.tl-book-btn:hover {
    background: var(--primary-dark);
}
.tl-whatsapp-btn {
    display: block;
    width: 100%;
    background: #25D366;
    color: #fff;
    text-align: center;
    padding: .75rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: background .2s;
}
.tl-whatsapp-btn:hover {
    background: #1fb855;
}
.tl-booking-trust {
    font-size: .78rem;
    color: var(--gray-text);
    text-align: center;
}
.tl-booking-trust span {
    display: block;
    margin-bottom: .2rem;
}

/* FAQ on tour page */
.tl-faq {
    margin-top: 2rem;
}
.tl-faq h2 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: .85rem;
}

/* Cross-sell / related tours */
.tl-related {
    margin-top: 2.5rem;
}
.tl-related h2 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}
.tl-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: .9rem;
}
.tl-related-card {
    text-decoration: none;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    color: var(--dark-text);
    display: block;
    transition: box-shadow .15s;
}
.tl-related-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.tl-related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}
.tl-related-card-body {
    padding: .85rem .95rem;
}
.tl-related-card strong {
    display: block;
    color: var(--dark-navy);
    font-size: .95rem;
    margin-bottom: .25rem;
}
.tl-related-card-meta {
    font-size: .8rem;
    color: var(--gray-text);
}
.tl-related-card-price {
    color: var(--primary-color);
    font-weight: 800;
    margin-top: .35rem;
    font-size: .92rem;
}

/* Affiliate insert */
.tl-affiliate {
    margin-top: 2rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1.5px solid #4ade80;
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}
.tl-affiliate-icon {
    font-size: 1.9rem;
    flex-shrink: 0;
}
.tl-affiliate-body {
    flex: 1;
}
.tl-affiliate-body strong {
    color: #14532d;
    display: block;
    margin-bottom: .25rem;
}
.tl-affiliate-body p {
    color: #166534;
    font-size: .85rem;
    margin: 0;
}
.tl-affiliate-btn {
    background: #22C55E;
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.tl-affiliate-btn:hover {
    background: #16a34a;
}

/* Lead capture */
.tl-lead-capture {
    margin-top: 2rem;
    background: var(--dark-navy);
    border-radius: 14px;
    padding: 1.6rem;
    text-align: center;
}
.tl-lead-capture h3 {
    color: #fff;
    margin: 0 0 .4rem;
    font-size: 1.1rem;
}
.tl-lead-capture p {
    color: rgba(255,255,255,.75);
    font-size: .88rem;
    margin: 0 0 1rem;
}
.tl-lead-form {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    justify-content: center;
}
.tl-lead-form input {
    flex: 1;
    min-width: 180px;
    padding: .65rem .9rem;
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: .92rem;
    font-family: inherit;
}
.tl-lead-form input::placeholder {
    color: rgba(255,255,255,.5);
}
.tl-lead-form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: .65rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .92rem;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
}
.tl-lead-form button:hover {
    background: var(--primary-dark);
}
.tl-lead-disclaimer {
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    margin: .6rem 0 0;
}

@media (max-width: 768px) {
    .tl-body {
        grid-template-columns: 1fr;
    }
    .tl-sidebar {
        position: static;
    }
    .tl-booking-card {
        margin-bottom: 1.5rem;
    }
}

/* ============================================================
   NAVBAR — CLEAN VERSION (Book Now CTA)
   ============================================================ */
.navbar-cta-btn {
    background: var(--primary-color);
    color: #fff !important;
    padding: .45rem 1.1rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: .88rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s, transform .15s;
}
.navbar-cta-btn:hover { background: var(--primary-dark); transform: translateY(-1px); text-decoration: none; }
.navbar-logout-btn { background: #e2e8f0 !important; color: #475569 !important; }
.navbar-logout-btn:hover { background: #cbd5e1 !important; }
.navbar-my-bookings { color: var(--accent-color) !important; font-weight: 700; border: 2px solid var(--accent-color); border-radius: 6px; padding: .35rem .8rem !important; }

/* ============================================================
   PORT DAY PLANNER
   ============================================================ */
.pdp-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #0D3B66 0%, #1a5490 50%, #0ea5e9 100%);
    position: relative;
    overflow: hidden;
}
.pdp-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.pdp-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.pdp-header {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}
.pdp-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: .3rem .85rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.25);
    margin-bottom: .85rem;
    letter-spacing: .05em;
}
.pdp-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 900;
    margin: 0 0 .75rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
.pdp-header p {
    font-size: 1rem;
    color: rgba(255,255,255,.85);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}
.pdp-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 48px rgba(0,0,0,.2);
}
.pdp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.pdp-field { display: flex; flex-direction: column; gap: .35rem; }
.pdp-field-full { margin-bottom: 1.25rem; }
.pdp-field label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.pdp-required { color: var(--primary-color); }
.pdp-optional { font-weight: 400; color: #94a3b8; }
.pdp-field select,
.pdp-field input[type="time"],
.pdp-field input[type="number"],
.pdp-field input[type="text"] {
    padding: .65rem .9rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: .95rem;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background: #fff;
    transition: border-color .18s;
    width: 100%;
    box-sizing: border-box;
}
.pdp-field select:focus,
.pdp-field input:focus { outline: none; border-color: var(--accent-color); }
.pdp-port-detected { justify-content: flex-end; }
.pdp-port-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .65rem .9rem;
    border-radius: 10px;
    font-weight: 800;
    font-size: .95rem;
    background: #f0f7ff;
    border: 2px solid var(--accent-color);
    color: #0D3B66;
}
.pdp-port-pill--mb { background: #fff7ed; border-color: #fb923c; color: #9a3412; }
.pdp-port-pill--ch { background: #f0f7ff; border-color: var(--accent-color); color: #0D3B66; }
.pdp-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), #e55a39);
    color: #fff;
    border: none;
    padding: .9rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s;
    margin-top: .5rem;
}
.pdp-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,107,74,.4); }
.pdp-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.pdp-result {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem 2rem;
    box-shadow: 0 12px 48px rgba(0,0,0,.2);
    margin-top: 0;
}
.pdp-result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}
.pdp-result-port {
    font-size: 1rem;
    font-weight: 800;
    color: #0D3B66;
}
.pdp-result-window {
    font-size: .85rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: .2rem;
}
.pdp-replan {
    background: #f1f5f9;
    border: none;
    padding: .4rem .85rem;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}
.pdp-replan:hover { background: #e2e8f0; }
.pdp-itinerary { font-size: .92rem; line-height: 1.75; color: #1e293b; }
.pdp-itinerary table { width: 100%; border-collapse: collapse; margin: .75rem 0; font-size: .88rem; }
.pdp-itinerary th { background: #0D3B66; color: #fff; padding: .5rem .75rem; text-align: left; font-size: .78rem; }
.pdp-itinerary td { padding: .55rem .75rem; border-bottom: 1px solid #f1f5f9; vertical-align: top; }
.pdp-itinerary tr:nth-child(even) td { background: #f8fafc; }
.pdp-result-ctas {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.pdp-wa-btn {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: .72rem 1.4rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: background .18s;
}
.pdp-wa-btn:hover { background: #1fb855; color: #fff; text-decoration: none; }
.pdp-error {
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.3);
    color: #fff;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: .9rem;
    margin-top: 1rem;
    text-align: center;
}
@media (max-width: 600px) {
    .pdp-form-row { grid-template-columns: 1fr; }
    .pdp-card, .pdp-result { padding: 1.25rem; }
    .pdp-result-ctas { flex-direction: column; }
    .pdp-result-ctas a { text-align: center; }
}

/* ============================================================
   SELF-SERVICE WIDGET (FULL CSS — moved from PHP)
   ============================================================ */
#ss-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9998;
    font-family: 'Poppins', system-ui, sans-serif;
}
#ss-toggle {
    background: linear-gradient(135deg, #0D3B66, #1a5490);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .65rem 1.1rem;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .4rem;
    box-shadow: 0 4px 20px rgba(13,59,102,.35);
    transition: transform .2s, box-shadow .2s;
    font-family: 'Poppins', sans-serif;
}
#ss-toggle:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(13,59,102,.45); }
#ss-panel {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    width: 360px;
    max-height: 560px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(0,0,0,.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(12px) scale(.97);
    opacity: 0;
    pointer-events: none;
    transition: all .22s cubic-bezier(.4,0,.2,1);
}
#ss-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.ss-header {
    background: linear-gradient(135deg, #0D3B66, #1a5490);
    color: #fff;
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-shrink: 0;
}
.ss-title { font-size: 1rem; font-weight: 800; }
.ss-subtitle { font-size: .73rem; opacity: .75; margin-top: .15rem; }
.ss-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: inherit;
}
.ss-tabs {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.ss-tabs::-webkit-scrollbar { display: none; }
.ss-tab {
    border: none;
    background: transparent;
    padding: .6rem .8rem;
    font-size: .72rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    font-family: inherit;
    transition: all .15s;
    flex-shrink: 0;
}
.ss-tab.active { color: #0D3B66; border-bottom-color: #0D3B66; }
.ss-tab:hover:not(.active) { color: #0D3B66; background: #f8fafc; }
.ss-tab-pane { display: none; overflow-y: auto; flex: 1; min-height: 0; }
.ss-tab-pane.active { display: flex; flex-direction: column; }

/* AI Chat */
.ss-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: .85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    min-height: 200px;
    max-height: 280px;
}
.ss-msg { display: flex; gap: .5rem; align-items: flex-end; }
.ss-msg-user { flex-direction: row-reverse; }
.ss-msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0D3B66, #0ea5e9);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ss-msg-bubble {
    background: #f1f5f9;
    padding: .6rem .85rem;
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    font-size: .83rem;
    line-height: 1.55;
    color: #1e293b;
    max-width: 80%;
}
.ss-msg-user .ss-msg-bubble {
    background: linear-gradient(135deg, #0D3B66, #1a5490);
    color: #fff;
    border-radius: 14px;
    border-bottom-right-radius: 4px;
}
.ss-typing-indicator .ss-msg-bubble {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: .7rem .85rem;
}
.ss-typing-indicator span {
    width: 7px;
    height: 7px;
    background: #94a3b8;
    border-radius: 50%;
    animation: ss-bounce .9s infinite;
}
.ss-typing-indicator span:nth-child(2) { animation-delay: .15s; }
.ss-typing-indicator span:nth-child(3) { animation-delay: .3s; }
@keyframes ss-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
}
.ss-chat-suggestions {
    padding: 0 .85rem .75rem;
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.ss-suggestion {
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 999px;
    padding: .3rem .75rem;
    font-size: .73rem;
    font-weight: 600;
    color: #0D3B66;
    cursor: pointer;
    font-family: inherit;
    transition: all .15s;
    white-space: nowrap;
}
.ss-suggestion:hover { background: #0D3B66; color: #fff; border-color: #0D3B66; }
.ss-chat-input-row {
    display: flex;
    gap: .4rem;
    padding: .65rem .85rem;
    border-top: 1px solid #f1f5f9;
    flex-shrink: 0;
}
.ss-chat-input {
    flex: 1;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: .5rem .9rem;
    font-size: .85rem;
    font-family: inherit;
    outline: none;
    transition: border-color .15s;
}
.ss-chat-input:focus { border-color: #0D3B66; }
.ss-chat-send {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: .85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s;
    font-family: inherit;
}
.ss-chat-send:hover { background: var(--primary-dark); }
.ss-chat-send:disabled { opacity: .5; cursor: not-allowed; }

/* Status / shared */
.ss-section { padding: 1rem 1.1rem; flex: 1; overflow-y: auto; }
.ss-section-intro { font-size: .82rem; color: #475569; margin: 0 0 .85rem; line-height: 1.5; }
.ss-input {
    width: 100%;
    padding: .65rem .9rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: .9rem;
    font-family: inherit;
    margin-bottom: .65rem;
    box-sizing: border-box;
    outline: none;
    transition: border-color .15s;
}
.ss-input:focus { border-color: #0D3B66; }
.ss-btn-primary {
    width: 100%;
    background: #0D3B66;
    color: #fff;
    border: none;
    padding: .72rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .18s;
}
.ss-btn-primary:hover { background: #1a5490; }
.ss-status-note { font-size: .75rem; color: #94a3b8; margin-top: .75rem; text-align: center; }
.ss-status-note a { color: #0D3B66; font-weight: 700; }
.ss-not-found {
    background: #fff7ed;
    border: 1.5px solid #fed7aa;
    border-radius: 10px;
    padding: .85rem 1rem;
    font-size: .82rem;
    color: #9a3412;
    margin-top: .5rem;
}
.ss-not-found a { color: #9a3412; font-weight: 700; }

/* Port tab */
.ss-port-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: .75rem; }
.ss-port-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: .75rem 1rem;
    cursor: pointer;
    transition: border-color .15s;
    font-size: .85rem;
}
.ss-port-card:hover { border-color: #0D3B66; background: #f0f7ff; }
.ss-port-icon { font-size: 1.5rem; flex-shrink: 0; }
.ss-port-card > span { margin-left: auto; color: #94a3b8; }
.ss-port-name { font-weight: 700; color: #0D3B66; }
.ss-port-lines { font-size: .73rem; color: #64748b; margin-top: .1rem; }
.ss-port-detail-box {
    background: #f0f7ff;
    border: 1.5px solid #bfdbfe;
    border-radius: 10px;
    padding: .9rem 1rem;
    font-size: .82rem;
    color: #1e40af;
    line-height: 1.6;
}

/* Contact tab */
.ss-contact-options { display: flex; flex-direction: column; gap: .5rem; }
.ss-contact-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: .75rem 1rem;
    text-decoration: none;
    color: #0f172a;
    transition: border-color .15s;
}
.ss-contact-card:hover { border-color: #0D3B66; background: #f0f7ff; text-decoration: none; }
.ss-contact-wa { border-color: #4ade80; background: #f0fdf4; }
.ss-contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.ss-contact-label { font-size: .88rem; font-weight: 700; color: #0D3B66; }
.ss-contact-sub { font-size: .73rem; color: #64748b; }
.ss-local-note {
    background: rgba(37,211,102,.08);
    border: 1.5px solid #4ade80;
    border-radius: 10px;
    padding: .85rem 1rem;
    font-size: .78rem;
    color: #14532d;
    margin-top: .75rem;
    line-height: 1.5;
}

@media (max-width: 400px) {
    #ss-panel { width: calc(100vw - 24px); right: -8px; }
}

/* ============================================================
   Exit-Intent Popup  (#ei-overlay)
   ============================================================ */
.ei-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: ei-fade-in .2s ease;
}
.ei-overlay[hidden] { display: none; }
@keyframes ei-fade-in { from { opacity: 0; } to { opacity: 1; } }
.ei-noscroll { overflow: hidden; }
.ei-modal {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    animation: ei-slide-up .22s ease;
}
@keyframes ei-slide-up { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.ei-close {
    position: absolute;
    top: .75rem;
    right: .9rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-text);
    cursor: pointer;
    line-height: 1;
    padding: .25rem .4rem;
}
.ei-close:hover { color: var(--dark-text); }
.ei-icon { font-size: 2.4rem; margin-bottom: .5rem; }
.ei-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 0 0 .5rem;
}
.ei-subtitle {
    color: var(--gray-text);
    font-size: .9rem;
    margin: 0 0 .75rem;
    line-height: 1.5;
}
.ei-tour-name {
    background: var(--light-bg);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: .45rem .9rem;
    font-size: .82rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0 0 1rem;
}
.ei-form { display: flex; flex-direction: column; gap: .65rem; }
.ei-email {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: .95rem;
    outline: none;
    transition: border-color .15s;
    box-sizing: border-box;
}
.ei-email:focus { border-color: var(--accent-color); }
.ei-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: .8rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, transform .1s;
}
.ei-submit:hover:not(:disabled) { background: var(--primary-dark); transform: translateY(-1px); }
.ei-submit:disabled { opacity: .6; cursor: default; }
.ei-disclaimer { font-size: .75rem; color: var(--gray-text); margin: .4rem 0 0; }
.ei-success { font-size: 1rem; font-weight: 700; color: #15803d; padding: .5rem 0; margin: 0; }
@media (max-width: 480px) {
    .ei-modal { padding: 1.5rem 1.25rem; }
    .ei-title { font-size: 1.15rem; }
}

/* ============================================================
   Tour Game Page  (.game-*)
   ============================================================ */
.game-page-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}
.game-header {
    text-align: center;
    margin-bottom: 1.2rem;
}
.game-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--dark-navy);
    margin: 0 0 .4rem;
}
.game-subtitle {
    color: var(--gray-text);
    margin: 0 0 .75rem;
    font-size: 1rem;
}
.game-controls-hint {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    font-size: .78rem;
    color: var(--gray-text);
}
.game-controls-hint span {
    background: var(--light-bg);
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: .25rem .6rem;
}
.game-canvas-wrap {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    background: #083344;
    line-height: 0;
}
.game-canvas {
    display: block;
    width: 100%;
    height: auto;
    cursor: default;
    touch-action: none;
}
.game-booklist-section {
    margin-top: 2rem;
}
.game-booklist-title {
    font-size: 1.2rem;
    color: var(--dark-navy);
    margin: 0 0 .9rem;
}
.game-tour-list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.game-booklist-empty {
    color: var(--gray-text);
    font-size: .9rem;
    background: var(--light-bg);
    border: 1.5px dashed #cbd5e1;
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
    margin: 0;
}
.game-tour-card {
    display: flex;
    align-items: center;
    gap: .9rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: .85rem 1rem;
    text-decoration: none;
    color: var(--dark-text);
    transition: box-shadow .15s, transform .1s;
    animation: game-card-in .3s ease;
}
@keyframes game-card-in {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}
.game-tour-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    text-decoration: none;
}
.game-tour-icon { font-size: 1.8rem; flex-shrink: 0; }
.game-tour-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.game-tour-info strong { font-size: .95rem; color: var(--dark-navy); }
.game-tour-info span   { font-size: .8rem;  color: var(--gray-text); }
.game-tour-book {
    font-size: .82rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    white-space: nowrap;
}
.game-bottom-links {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.game-link-btn {
    background: var(--dark-navy);
    color: #fff;
    padding: .65rem 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: .9rem;
    transition: background .15s;
}
.game-link-btn:hover { background: #0a2d52; text-decoration: none; color: #fff; }
.game-link-btn--secondary { background: var(--accent-color); }
.game-link-btn--secondary:hover { background: #0096d0; }
@media (max-width: 480px) {
    .game-controls-hint { display: none; }
}

/* ============================================================
   DENVER ROUTE BANNER — homepage + landing pages
   ============================================================ */
.hp-denver-section {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0a2d52 100%);
    padding: 3rem 1.5rem;
}
.hp-denver-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.hp-denver-text .hp-denver-tag {
    display: inline-block;
    background: rgba(0,168,232,.18);
    color: var(--accent-color);
    border: 1px solid rgba(0,168,232,.4);
    border-radius: 20px;
    padding: .3rem .85rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: .9rem;
}
.hp-denver-text h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin: 0 0 .6rem;
    line-height: 1.25;
}
.hp-denver-text p {
    color: rgba(255,255,255,.8);
    font-size: .97rem;
    line-height: 1.6;
    margin: 0 0 1.2rem;
}
.hp-denver-facts {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 1.4rem;
}
.hp-denver-fact {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-radius: 8px;
    padding: .3rem .7rem;
    font-size: .82rem;
    font-weight: 600;
}
.hp-denver-ctas {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}
.hp-denver-cta-primary {
    background: var(--primary-color);
    color: #fff;
    padding: .7rem 1.4rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: .95rem;
    transition: background .15s;
}
.hp-denver-cta-primary:hover { background: var(--primary-dark); color: #fff; text-decoration: none; }
.hp-denver-cta-ghost {
    color: rgba(255,255,255,.85);
    padding: .7rem 1.4rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: .95rem;
    border: 1.5px solid rgba(255,255,255,.3);
    transition: border-color .15s, color .15s;
}
.hp-denver-cta-ghost:hover { border-color: rgba(255,255,255,.7); color: #fff; text-decoration: none; }
.hp-denver-promo {
    background: rgba(255,255,255,.07);
    border: 1.5px solid rgba(34,197,94,.4);
    border-radius: 14px;
    padding: 1.8rem;
}
.hp-denver-promo-head {
    color: #4ade80;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: .5rem;
}
.hp-denver-promo-code {
    background: rgba(34,197,94,.15);
    border: 1.5px dashed rgba(34,197,94,.5);
    border-radius: 8px;
    padding: .75rem 1rem;
    text-align: center;
    margin: .75rem 0;
}
.hp-denver-promo-code strong {
    display: block;
    color: #4ade80;
    font-size: 1.6rem;
    letter-spacing: .1em;
    font-weight: 900;
}
.hp-denver-promo-code span {
    color: rgba(255,255,255,.7);
    font-size: .82rem;
}
.hp-denver-promo p {
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    margin: 0;
}
@media (max-width: 768px) {
    .hp-denver-inner { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ============================================================
   GEO-TARGETED DENVER BANNER
   ============================================================ */
.geo-banner {
    background: linear-gradient(90deg, var(--dark-navy) 0%, #0a2d52 100%);
    border-bottom: 2px solid var(--accent-color);
    padding: .65rem 1rem;
    position: relative;
    z-index: 200;
}
.geo-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: .85rem;
    flex-wrap: wrap;
}
.geo-banner-flag { font-size: 1.4rem; flex-shrink: 0; }
.geo-banner-text {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: .1rem;
}
.geo-banner-text strong { color: #fff; font-size: .9rem; }
.geo-banner-text span   { color: rgba(255,255,255,.72); font-size: .8rem; }
.geo-banner-ctas { display: flex; gap: .5rem; flex-shrink: 0; flex-wrap: wrap; }
.geo-banner-btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: .4rem .9rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: .82rem;
    white-space: nowrap;
    transition: background .15s;
}
.geo-banner-btn-primary:hover { background: var(--primary-dark); color: #fff; text-decoration: none; }
.geo-banner-btn-ghost {
    color: rgba(255,255,255,.85);
    padding: .4rem .9rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: .82rem;
    border: 1px solid rgba(255,255,255,.3);
    white-space: nowrap;
    transition: border-color .15s;
}
.geo-banner-btn-ghost:hover { border-color: rgba(255,255,255,.7); color: #fff; text-decoration: none; }
.geo-banner-close {
    background: none;
    border: none;
    color: rgba(255,255,255,.5);
    font-size: 1rem;
    cursor: pointer;
    padding: .25rem .4rem;
    flex-shrink: 0;
    transition: color .15s;
}
.geo-banner-close:hover { color: #fff; }
@media (max-width: 480px) {
    .geo-banner-ctas { width: 100%; }
    .geo-banner-btn-primary, .geo-banner-btn-ghost { flex: 1; text-align: center; }
}

/* ============================================================
   BLOG ARTICLE PAGES
   ============================================================ */
.blog-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--dark-navy);
}
.blog-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .35;
}
.blog-hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
    max-width: 820px;
}
.blog-hero-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: .3rem .85rem;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: .85rem;
}
.blog-hero-content h1 {
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    margin: 0 0 .7rem;
    line-height: 1.2;
}
.blog-hero-meta {
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    margin: 0 0 1.1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.blog-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2.5rem 1rem 4rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}
.blog-body {
    min-width: 0;
}
.blog-breadcrumb {
    font-size: .85rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}
.blog-breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
}
.blog-body h2 {
    color: var(--dark-navy);
    font-size: 1.4rem;
    margin: 2rem 0 .7rem;
    padding-top: .5rem;
    border-top: 2px solid #f1f5f9;
}
.blog-body h3 {
    color: var(--dark-navy);
    font-size: 1.1rem;
    margin: 1.4rem 0 .5rem;
}
.blog-body p {
    color: #374151;
    line-height: 1.78;
    margin: 0 0 1rem;
    font-size: .97rem;
}
.blog-body ul, .blog-body ol {
    color: #374151;
    font-size: .97rem;
    line-height: 1.75;
    padding-left: 1.4rem;
    margin: 0 0 1rem;
}
.blog-body li { margin-bottom: .35rem; }
.blog-callout {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 12px 12px 0;
    padding: 1.1rem 1.3rem;
    margin: 1.4rem 0;
}
.blog-callout strong { color: var(--dark-navy); }
.blog-callout p { margin: .35rem 0 0; color: #1e40af; font-size: .92rem; }
.blog-tip {
    background: #f0fdf4;
    border-left: 4px solid var(--tropical-green);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.3rem;
    margin: 1.4rem 0;
    font-size: .93rem;
    color: #14532d;
}
.blog-tip strong { display: block; margin-bottom: .25rem; }
.blog-fact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: .75rem;
    margin: 1.25rem 0;
}
.blog-fact-item {
    background: var(--light-bg);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: .85rem 1rem;
    text-align: center;
}
.blog-fact-item .fact-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-navy);
    line-height: 1.1;
}
.blog-fact-item .fact-label {
    font-size: .78rem;
    color: var(--gray-text);
    margin-top: .2rem;
    display: block;
}
.blog-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.blog-sidebar-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.2rem;
}
.blog-sidebar-card h4 {
    color: var(--dark-navy);
    font-size: .95rem;
    margin: 0 0 .75rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #f1f5f9;
}
.blog-sidebar-card .sidebar-link {
    display: block;
    color: var(--accent-color);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
    padding: .35rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.blog-sidebar-card .sidebar-link:last-child { border-bottom: none; }
.blog-sidebar-card .sidebar-link:hover { color: var(--primary-color); }
.blog-sidebar-wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 14px;
    padding: 1.3rem;
    text-align: center;
    color: #fff;
}
.blog-sidebar-wa h4 { color: #fff; border-bottom-color: rgba(255,255,255,.25); margin: 0 0 .6rem; font-size: .95rem; }
.blog-sidebar-wa p { font-size: .85rem; color: rgba(255,255,255,.9); margin: 0 0 .85rem; }
.blog-sidebar-wa a {
    display: block;
    background: #fff;
    color: #128c7e;
    border-radius: 8px;
    padding: .6rem;
    font-weight: 700;
    text-decoration: none;
    font-size: .9rem;
    transition: opacity .15s;
}
.blog-sidebar-wa a:hover { opacity: .9; text-decoration: none; }
.blog-bottom-cta {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0a2d52 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 2.5rem 0 0;
}
.blog-bottom-cta h3 { color: #fff; margin: 0 0 .6rem; font-size: 1.3rem; }
.blog-bottom-cta p { color: rgba(255,255,255,.8); margin: 0 0 1.2rem; font-size: .95rem; }
.blog-bottom-cta .blog-cta-btns { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; }
.blog-bottom-cta a {
    padding: .7rem 1.4rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: .92rem;
    transition: opacity .15s;
}
.blog-cta-primary { background: var(--primary-color); color: #fff !important; }
.blog-cta-ghost { background: rgba(255,255,255,.12); color: #fff !important; border: 1.5px solid rgba(255,255,255,.3); }
.blog-cta-primary:hover, .blog-cta-ghost:hover { opacity: .88; text-decoration: none; }
@media (max-width: 768px) {
    .blog-wrap { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
}
