/* Variables de Color y Reset */
:root {
    --primary: #0056b3;
    --secondary: #00b4d8;
    --accent: #ff9f1c;
    --dark: #1d3557;
    --light: #f8f9fa;
    --text: #333333;
    --grey: #e9ecef;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navbar */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(5px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.4);
    transition: transform 0.3s, background-color 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: #e08a10;
}

/* Paquetes Section */
.paquetes {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.grid-paquetes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    position: relative;
    height: 220px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.card-body p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.card-body p i {
    color: var(--secondary);
    margin-right: 5px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--grey);
    padding-top: 15px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.btn-card {
    text-decoration: none;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-card:hover {
    background-color: var(--secondary);
    color: white;
}

/* Info Section */
.info-section {
    background-color: var(--light);
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-text h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 20px;
}

.features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-item i {
    font-size: 24px;
    color: var(--secondary);
    margin-right: 15px;
    margin-top: 5px;
}

.info-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Contacto y Mapa */
.contacto {
    padding: 80px 0;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contacto-info h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.contacto-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contacto-info p i {
    color: var(--secondary);
    margin-right: 10px;
    width: 20px;
}

.mapa-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}

/* Boton de WhatsApp flotante */
.btn-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 104px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    text-align: center;
    font-size: 30px;
    line-height: 1;
    box-shadow: 0 16px 32px rgba(18, 140, 126, 0.28);
    z-index: 1001;
    transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 22px 38px rgba(18, 140, 126, 0.34);
    filter: brightness(1.04);
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    border: 1px solid rgba(37, 211, 102, 0.22);
    pointer-events: none;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .info-grid, .contacto-grid {
        grid-template-columns: 1fr;
    }
    .info-img {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }
}

#buy-now {
    position: fixed;
    bottom: 30px;      /* Distancia desde el borde inferior de la pantalla */
    left: 50%;         /* Lo posiciona al centro horizontalmente */
    transform: translateX(-50%); /* Centrado perfecto segÃºn su propio ancho */
    z-index: 10000;
}

#buy-now a {
    color: #ffffff;
    background: #007bff; /* Azul llamativo (puedes usar #1e70e6 o el que prefieras) */
    display: inline-block;
    font-size: 18px;     /* Texto mÃ¡s grande */
    font-weight: bold;
    padding: 15px 30px;  /* MÃ¡s relleno para hacerlo mÃ¡s robusto */
    text-align: center;
    white-space: nowrap; /* Evita que el texto se parta en dos lÃ­neas */
    line-height: 1em;
    text-decoration: none;
    animation: shadow-pulse-blue 1.5s infinite; /* AnimaciÃ³n suavizada con azul */
    border-radius: 50px; /* Bordes bien redondeados modernos */
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4); /* Sombra suave azul base */
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Efecto al pasar el mouse por encima (Hover) */
#buy-now a:hover {
    background: #0056b3; /* Azul un poco mÃ¡s oscuro al hacer hover */
    transform: scale(1.05); /* Se agranda un toque al pasar el mouse */
}

#buy-now a img {
    width: 64px;
    margin-left: 3px;
}
.empty-state {
    background: var(--light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
}

.empty-state h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.empty-state p {
    margin-bottom: 24px;
}

.admin-body {
    background: linear-gradient(180deg, #08111f 0%, #132238 100%);
    color: #e9f0f7;
    min-height: 100vh;
}

.admin-topbar {
    padding: 30px 0 10px;
}

.admin-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.admin-topbar h1 {
    color: white;
    font-size: 34px;
}

.admin-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.admin-main {
    padding: 24px 0 60px;
}

.admin-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.admin-login {
    max-width: 520px;
    margin: 40px auto 0;
}

.admin-login h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: white;
}

.admin-login p {
    color: rgba(255,255,255,0.78);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.admin-stats .admin-card p {
    color: rgba(255,255,255,0.7);
}

.admin-stats .admin-card strong {
    display: block;
    color: white;
    font-size: 40px;
    margin-top: 10px;
}

.admin-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-admin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
}

.btn-admin:hover {
    transform: translateY(-2px);
    opacity: 0.96;
}

.btn-admin-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.22);
}

.btn-admin-danger {
    background: #d64545;
}

.admin-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.admin-form label span,
.admin-preview-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.admin-input {
    width: 100%;
    background: rgba(3, 10, 20, 0.72);
    border: 1px solid rgba(255,255,255,0.16);
    color: white;
    padding: 14px 16px;
    border-radius: 16px;
    font-family: inherit;
    font-size: 15px;
}

.admin-input::placeholder {
    color: rgba(255,255,255,0.45);
}

.admin-textarea {
    resize: vertical;
    min-height: 140px;
}

.admin-file {
    padding: 12px 16px;
}

.admin-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form-full {
    grid-column: 1 / -1;
}

.admin-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-checkbox input {
    width: 18px;
    height: 18px;
}

.admin-checkbox span {
    margin-bottom: 0;
}

.admin-preview {
    width: 100%;
    max-width: 360px;
    border-radius: 18px;
    display: block;
}

.admin-alert {
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.admin-alert-error {
    background: rgba(214, 69, 69, 0.16);
    border: 1px solid rgba(214, 69, 69, 0.4);
    color: #ffd4d4;
}

.admin-table-wrap {
    overflow-x: auto;
}

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

.admin-table th,
.admin-table td {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-table td strong {
    display: block;
    color: white;
}

.admin-table td span {
    display: block;
    color: rgba(255,255,255,0.58);
    font-size: 13px;
    margin-top: 4px;
}

.admin-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.empty-state-admin {
    background: rgba(255,255,255,0.03);
    color: white;
}

@media (max-width: 992px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-topbar-inner,
    .admin-actions,
    .admin-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

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

    .card-footer {
        gap: 12px;
        align-items: flex-start;
        flex-direction: column;
    }

    .btn-whatsapp {
        right: 18px;
        bottom: 94px;
        width: 58px;
        height: 58px;
        border-radius: 20px;
        font-size: 26px;
    }
}






.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: white;
    color: var(--dark);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 30px;
}

.section-title-left {
    text-align: left;
    margin-bottom: 10px;
}

.section-title-left::after {
    margin: 10px 0 0;
}

.section-copy {
    max-width: 700px;
    color: #667085;
}

.btn-card-solid {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.btn-card-solid:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.chip-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 16px;
    background: var(--light);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.chip-link:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.card-destination {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--secondary) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px !important;
}

.listing-hero {
    padding: 140px 0 50px;
    background: linear-gradient(180deg, #eff8ff 0%, #ffffff 100%);
}

.listing-hero-inner {
    max-width: 860px;
}

.listing-kicker {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.listing-hero h1 {
    font-size: 48px;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 18px;
}

.listing-hero p {
    color: #556070;
    max-width: 700px;
}

.listing-shell {
    padding: 30px 0 80px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    background: var(--light);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 28px;
}

.filter-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
}

.filter-field select {
    min-width: 260px;
    border: 1px solid #d6dde5;
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    background: white;
    color: var(--dark);
}

.filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.listing-summary {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 28px;
}

.listing-summary h2 {
    color: var(--dark);
    font-size: 30px;
}

.listing-summary p {
    color: #667085;
}

.text-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.grid-paquetes-listing {
    margin-bottom: 30px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pagination-link {
    min-width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid #d5dee8;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    transition: all 0.2s;
}

.pagination-link:hover,
.pagination-link.is-active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.admin-split {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
    gap: 24px;
}

.admin-section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.admin-section-title {
    color: white;
    font-size: 30px;
}

.admin-list-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    margin-bottom: 24px;
}

.admin-counter {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 10px 14px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.admin-list-stack {
    display: grid;
    gap: 14px;
}

.admin-list-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(3, 10, 20, 0.35);
    border-radius: 20px;
    padding: 18px;
}

.admin-list-title {
    color: white;
    font-weight: 700;
}

.admin-list-meta {
    color: rgba(255,255,255,0.58);
    font-size: 13px;
    margin-top: 4px;
}

@media (max-width: 992px) {
    .section-head,
    .listing-summary,
    .admin-split {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .listing-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero-actions,
    .filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-field select {
        min-width: 100%;
        width: 100%;
    }

    .listing-hero {
        padding-top: 120px;
    }

    .listing-hero h1 {
        font-size: 32px;
    }

    .admin-list-item {
        flex-direction: column;
        align-items: stretch;
    }
}

.filter-bar-advanced {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(180px, 0.7fr)) auto;
    align-items: end;
}

.filter-field-search {
    min-width: 0;
}

.filter-field input,
.filter-field select {
    width: 100%;
    border: 1px solid #d6dde5;
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    background: white;
    color: var(--dark);
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-card-muted {
    border-color: #d0d9e2;
    color: var(--dark);
}

.btn-card-muted:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: white;
}

.btn-secondary-dark {
    border-color: #d0d9e2;
    color: var(--dark);
}

.btn-secondary-dark:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: white;
}

.detail-shell {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.detail-shell-empty {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.95fr);
    gap: 36px;
    align-items: center;
}

.detail-media img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(29, 53, 87, 0.16);
    object-fit: cover;
}

.detail-content h1 {
    color: var(--dark);
    font-size: 48px;
    line-height: 1.05;
    margin-bottom: 16px;
}

.detail-meta {
    color: #556070;
    font-weight: 600;
    margin-bottom: 18px;
}

.detail-summary {
    color: #5c6778;
    font-size: 18px;
    margin-bottom: 24px;
}

.detail-price {
    color: var(--primary);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 992px) {
    .filter-bar-advanced,
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .filter-bar-advanced {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .detail-shell {
        padding-top: 120px;
    }

    .detail-content h1 {
        font-size: 34px;
    }

    .detail-summary {
        font-size: 16px;
    }

    .detail-actions,
    .card-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

.destinations-band {
    margin-bottom: 34px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #eef8ff 0%, #f8fbff 100%);
    border: 1px solid #dbe8f3;
}

.destinations-band-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 20px;
}

.destinations-kicker {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.destinations-band-head h3 {
    color: var(--dark);
    font-size: 28px;
    line-height: 1.15;
    max-width: 680px;
}

.destinations-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.destination-card-home {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    min-height: 132px;
    padding: 20px;
    border-radius: 22px;
    background: white;
    border: 1px solid #dfe9f2;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 86, 179, 0.06);
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.destination-card-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0, 86, 179, 0.12);
    border-color: #b8d8ef;
}

.destination-card-home-label {
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
}

.destination-card-home-arrow {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
}

.detail-description-shell {
    margin-top: 34px;
}

.detail-description-card {
    max-width: 860px;
    background: white;
    border: 1px solid #dfe9f2;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(29, 53, 87, 0.08);
}

.detail-description-card h2 {
    color: var(--dark);
    font-size: 28px;
    margin-bottom: 18px;
}

.detail-description-card p {
    color: #5c6778;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.detail-description-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .destinations-band-head {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .destinations-band {
        padding: 20px;
    }

    .destinations-band-head h3 {
        font-size: 24px;
    }

    .destinations-grid-home {
        grid-template-columns: 1fr;
    }

    .destination-card-home {
        min-height: auto;
    }

    .detail-description-card {
        padding: 22px;
    }

    .detail-description-card h2 {
        font-size: 24px;
    }

    .detail-description-card p {
        font-size: 16px;
    }
}

.card-media-link {
    display: block;
    height: 100%;
}

.card-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-title-link:hover {
    color: var(--secondary);
}

.card-footer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
}

.price {
    white-space: nowrap;
    line-height: 1;
    margin: 0;
}

.card-actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 10px;
}

.card-actions .btn-card {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .card-footer {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .price {
        font-size: 18px;
    }

    .card-actions {
        flex-direction: row;
        justify-content: flex-start;
    }
}

.section-head {
    margin-bottom: 22px;
}

.section-copy,
.btn-card-solid,
.destinations-band-head h3 {
    display: none;
}

.destinations-band-head {
    margin-bottom: 14px;
}

.card-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border-top: 1px solid var(--grey);
    padding-top: 15px;
}

.price {
    display: block;
    white-space: nowrap;
    line-height: 1.1;
    margin: 0;
    font-size: 17px;
}

.card-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}

.card-actions .btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 14px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .card-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .price {
        font-size: 16px;
    }
}

.listing-shell-filter-only {
    padding-top: 128px;
}

.filter-bar {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid #e6eef5;
}

.filter-bar-advanced {
    grid-template-columns: minmax(220px, 1.25fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr) auto;
}

.filter-actions {
    align-self: end;
}

@media (max-width: 992px) {
    .listing-shell-filter-only {
        padding-top: 118px;
    }

    .filter-bar-advanced {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .listing-shell-filter-only {
        padding-top: 108px;
    }

    .filter-bar {
        padding: 18px;
    }

    .filter-bar-advanced {
        display: grid;
        grid-template-columns: 1fr;
    }
}

.filter-bar {
    align-items: end;
    gap: 16px;
}

.filter-field label {
    margin-bottom: 10px;
}

.filter-field input,
.filter-field select {
    height: 56px;
    padding: 0 18px;
}

.filter-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    align-self: end;
}

.filter-actions .btn-primary,
.filter-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    box-shadow: none;
    transform: none;
}

.filter-actions .btn-primary {
    background: #ff9f1c;
    border: 2px solid #c87c11;
    color: #ffffff;
}

.filter-actions .btn-primary:hover {
    background: #f09214;
    transform: none;
}

.filter-actions .btn-secondary {
    background: transparent;
}

@media (max-width: 768px) {
    .filter-actions {
        width: 100%;
    }

    .filter-actions .btn-primary,
    .filter-actions .btn-secondary {
        flex: 1 1 0;
        min-width: 0;
    }
}

.filter-bar-advanced {
    column-gap: 18px;
}

.filter-field {
    min-width: 0;
}

.filter-field select {
    min-width: 0;
    padding-right: 42px;
}

.filter-actions .btn-primary {
    cursor: pointer;
}

@media (max-width: 992px) {
    .filter-bar-advanced {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }

    .filter-actions {
        justify-content: flex-start;
    }
}
.admin-body-light {
    background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
    color: #243b53;
}

.admin-topbar-light {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 22px 0 14px;
    background: rgba(247, 251, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #dce7f1;
}

.admin-topbar-inner-light h1 {
    color: #183153;
}

.admin-kicker-light {
    color: #5f7b99;
}

.admin-nav-shell {
    padding-top: 14px;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid #d2dfeb;
    background: #ffffff;
    color: #183153;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.admin-nav-link:hover,
.admin-nav-link.is-active {
    background: #183153;
    border-color: #183153;
    color: #ffffff;
}

.admin-main-light {
    padding-top: 28px;
}

.admin-body-light .admin-card,
.admin-body-light .empty-state-admin {
    background: rgba(255, 255, 255, 0.92);
    border-color: #dbe6f0;
    box-shadow: 0 18px 40px rgba(24, 49, 83, 0.08);
    color: #243b53;
}

.admin-body-light .admin-login h2,
.admin-body-light .admin-section-title,
.admin-body-light .admin-list-title,
.admin-body-light .admin-table td strong {
    color: #183153;
}

.admin-body-light .admin-login p,
.admin-body-light .admin-stats .admin-card p,
.admin-body-light .admin-form label span,
.admin-body-light .admin-preview-label,
.admin-body-light .admin-table td span,
.admin-body-light .admin-list-meta,
.admin-body-light .admin-counter,
.admin-body-light .admin-section-kicker,
.admin-body-light .admin-table th {
    color: #5f7288;
}

.admin-body-light .admin-stats .admin-card strong {
    color: #0f3057;
}

.admin-body-light .admin-input {
    background: #ffffff;
    border: 1px solid #d3dfeb;
    color: #183153;
}

.admin-body-light .admin-input::placeholder {
    color: #8ba0b8;
}

.admin-body-light .admin-list-item {
    background: #f8fbfe;
    border-color: #dbe6f0;
}

.admin-body-light .admin-table th,
.admin-body-light .admin-table td {
    border-bottom-color: #e4edf5;
}

.admin-body-light .btn-admin-secondary {
    background: #ffffff;
    border: 1px solid #d2dfeb;
    color: #183153;
}

.admin-body-light .btn-admin-danger {
    background: #e34c4c;
}

.admin-toolbar-light {
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.admin-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    flex: 1 1 420px;
}

.admin-search-form .admin-input {
    flex: 1 1 280px;
    min-width: 240px;
}

@media (max-width: 768px) {
    .admin-nav,
    .admin-toolbar-light,
    .admin-search-form {
        flex-direction: column;
        align-items: stretch;
    }
}
