/* =========================
   SHIVSHAKTI TOURS - FRONTEND CSS
   ========================= */

:root {
    --primary-color        : #1f3b94;   /* royal blue */
    --secondary-color      : #0b1530;   /* deep navy */
    --primary-deep         : #0b1530;
    --primary-royal        : #1f3b94;
    --primary-royal-soft   : #2b4faf;
    --accent-gold          : #f0b64a;
    --accent-gold-soft     : rgba(240, 182, 74, 0.18);
    --accent-sky           : #4da8ff;
    --accent-sky-soft      : rgba(77, 168, 255, 0.22);
    --dark-color           : #111827;
    --dark-elevated        : #1f2937;
    --light-color          : #f5f7fb;
    --text-color           : #111827;
    --text-muted           : #6b7280;
    --border-color         : #e5e7eb;
    --success-color        : #16a34a;
    --warning-color        : #f59e0b;
    --danger-color         : #dc2626;
    --shadow               : 0 20px 60px rgba(15, 23, 42, 0.12);
    --shadow-soft          : 0 14px 40px rgba(15, 23, 42, 0.12);
    --glass-bg             : rgba(248, 250, 252, 0.85);
    --glass-bg-soft        : rgba(248, 250, 252, 0.9);
    --glass-border         : rgba(148, 163, 184, 0.35);
    --glass-border-soft    : rgba(209, 213, 219, 0.4);
    --transition           : all 0.3s ease;
    --blur-strong          : 18px;
    --blur-soft            : 12px;
}

* {
    margin    : 0;
    padding   : 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background : #ffffff;
    color      : var(--text-color);
    line-height: 1.6;
    overflow-x : hidden;
}

main {
    position   : relative;
    z-index    : 1;
    padding-top: 80px;
    background : radial-gradient(circle at top, rgba(31, 59, 148, 0.12), transparent 55%);
}

.container {
    max-width: 1200px;
    margin   : 0 auto;
    padding  : 0 15px;
}

a {
    text-decoration: none;
    color          : inherit;
}

img {
    max-width: 100%;
    height   : auto;
}

/* =========================
   NAVBAR - GLASSMORPHISM
   ========================= */

.fs-header-glass {
    position : fixed;
    top      : 0;
    left     : 0;
    right    : 0;
    z-index  : 1000;
    padding  : 8px 0;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter   : blur(var(--blur-strong));
    -webkit-backdrop-filter: blur(var(--blur-strong));
    border-bottom     : 1px solid rgba(148, 163, 184, 0.25);
    box-shadow        : 0 10px 30px rgba(15, 23, 42, 0.12);
}

.fs-navbar-glass {
    background: transparent !important;
}

.container-header {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
}

/* =========================
   OLD NAVBAR STYLES - DISABLED
   Use main-header in header.blade.php instead
   =========================

.navbar-brand img {
    height      : 48px;
    border-radius: 12px;
    box-shadow  : 0 10px 25px rgba(15, 23, 42, 0.3);
    transition  : var(--transition);
}

.navbar-brand img:hover {
    transform: translateY(-2px) scale(1.03);
}

.fs-brand-text {
    font-weight   : 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size     : 13px;
    color         : var(--primary-royal);
}

.fs-main-nav {
    display   : flex;
    list-style: none;
    gap       : 18px;
}

.fs-main-nav .nav-link {
    position     : relative;
    color        : var(--dark-color) !important;
    font-size    : 14px;
    font-weight  : 500;
    padding      : 8px 14px;
    border-radius: 999px;
    transition   : var(--transition);
    letter-spacing: 0.03em;
}

.fs-main-nav .nav-link::before {
    content : "";
    position: absolute;
    inset   : 0;
    border-radius: 999px;
    border : 2px solid transparent;
    transform: scaleX(0);
    opacity : 1;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    transition: var(--transition);
}

.fs-main-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.fs-main-nav .nav-link:hover::before {
    border-color: transparent;
    transform   : scaleX(1);
}

.fs-nav-btn {
    padding        : 8px 20px;
    border-radius  : 999px;
    background     : linear-gradient(135deg, var(--primary-color), var(--primary-royal-soft));
    color          : #ffffff;
    font-weight    : 600;
    font-size      : 13px;
    border         : 1px solid rgba(15, 23, 42, 0.08);
    box-shadow     : var(--shadow);
    text-transform : uppercase;
    letter-spacing : 0.08em;
}

.fs-nav-btn:hover {
    transform : translateY(-1px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.75);
}

.fs-navbar-toggle {
    border        : 1px solid rgba(148, 163, 184, 0.7);
    border-radius : 999px;
    background    : rgba(255, 255, 255, 0.9);
}

.fs-navbar-toggle .navbar-toggler-icon {
    position       : relative;
    width          : 18px;
    height         : 2px;
    background     : transparent;
    border-radius  : 999px;
    box-shadow     : none;
}

.fs-navbar-toggle .navbar-toggler-icon::before,
.fs-navbar-toggle .navbar-toggler-icon::after {
    content        : "";
    position       : absolute;
    left           : 0;
    width          : 18px;
    height         : 2px;
    border-radius  : 999px;
    background     : rgba(31, 41, 55, 0.95);
    transition     : var(--transition);
}

.fs-navbar-toggle .navbar-toggler-icon::before {
    top: -5px;
}

.fs-navbar-toggle .navbar-toggler-icon::after {
    top: 5px;
}

.fs-navbar-toggle[aria-expanded="true"] .navbar-toggler-icon::before {
    top      : 0;
    transform: rotate(45deg);
}

.fs-navbar-toggle[aria-expanded="true"] .navbar-toggler-icon::after {
    top      : 0;
    transform: rotate(-45deg);
}

.fs-user-dropdown .dropdown-menu {
    background    : rgba(9, 18, 45, 0.96);
    border-radius : 16px;
    border        : 1px solid var(--glass-border);
    box-shadow    : var(--shadow-soft);
}

.fs-user-dropdown .dropdown-item {
    color     : var(--text-muted);
    font-size : 14px;
    padding   : 8px 18px;
}

.fs-user-dropdown .dropdown-item:hover {
    background: rgba(36, 71, 149, 0.8);
    color     : #fff;
}

/* Toggle visibility per breakpoint */
@media (min-width: 992px) {
    .fs-navbar-toggle {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .fs-navbar-toggle {
        display        : inline-flex;
        align-items    : center;
        justify-content: center;
        padding        : 6px 10px;
    }
}

@media (max-width: 991.98px) {
    .fs-header-glass {
        padding: 8px 0;
    }

    .fs-navbar-glass .navbar-collapse.show {
        position       : absolute;
        top            : 100%;
        left           : 0;
        right          : 0;
        background     : rgba(5, 8, 22, 0.96);
        backdrop-filter: blur(var(--blur-strong));
        -webkit-backdrop-filter: blur(var(--blur-strong));
        border-bottom  : 1px solid rgba(255, 255, 255, 0.1);
        box-shadow     : 0 18px 45px rgba(0, 0, 0, 0.85);
        padding        : 12px 16px 16px;
        animation      : fsMenuSlideDown 0.35s ease forwards;
    }

    .fs-main-nav {
        flex-direction: column;
        align-items   : flex-start;
        gap           : 8px;
        padding-top   : 4px;
    }

    .fs-main-nav .nav-link {
        width    : 100%;
        text-align: left;
    }

    .fs-nav-btn {
        width         : 100%;
        justify-content: center;
        display       : inline-flex;
        margin-top    : 6px;
    }
}

@keyframes fsMenuSlideDown {
    from {
        opacity  : 0;
        transform: translateY(-8px);
    }
    to {
        opacity  : 1;
        transform: translateY(0);
    }
}

/* =========================
   HERO SECTION - FUTURISTIC GLASS
   ========================= */

.fs-hero {
    position   : relative;
    min-height : 620px;
    display    : flex;
    align-items: center;
    padding    : 110px 0 80px;
    overflow   : hidden;
}

.fs-hero-bg {
    position: absolute;
    inset   : 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4)),
        url('../images/banners/banner1.jpg') center/cover no-repeat;
    opacity       : 0.98;
}

.fs-hero-aura {
    position: absolute;
    top     : -40%;
    left    : 50%;
    width   : 120%;
    height  : 140%;
    background: radial-gradient(circle at 50% 0%, rgba(244, 201, 107, 0.25), transparent 65%);
    opacity   : 0.9;
    pointer-events: none;
}

.fs-hero-particles::before,
.fs-hero-particles::after {
    content : "";
    position: absolute;
    width   : 320px;
    height  : 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 213, 255, 0.14), transparent 60%);
    filter  : blur(12px);
}

.fs-hero-particles::before {
    bottom: -60px;
    left  : -40px;
}

.fs-hero-particles::after {
    top  : 10%;
    right: -40px;
}

.fs-hero-container {
    position: relative;
    z-index : 2;
}

.fs-hero-panel {
    padding       : 32px 32px 30px;
    border-radius : 26px;
    background    : rgba(255, 255, 255, 0.96);
    border        : 1px solid rgba(229, 231, 235, 0.9);
    box-shadow    : var(--shadow);
    backdrop-filter: blur(var(--blur-strong));
    -webkit-backdrop-filter: blur(var(--blur-strong));
}

.fs-hero-kicker {
    font-size     : 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color         : var(--primary-color);
    margin-bottom : 14px;
}

.fs-hero-title {
    font-size    : 44px;
    line-height  : 1.15;
    font-weight  : 700;
    color        : var(--dark-color);
    margin-bottom: 14px;
}

.fs-hero-subtitle {
    font-size    : 15px;
    color        : var(--text-muted);
    max-width    : 480px;
    margin-bottom: 26px;
}

.fs-hero-actions {
    display      : flex;
    flex-wrap    : wrap;
    gap          : 12px;
    align-items  : center;
    margin-bottom: 20px;
}

.fs-btn-primary-glass {
    display       : inline-flex;
    align-items   : center;
    gap           : 8px;
    padding       : 11px 26px;
    border-radius : 999px;
    font-size     : 14px;
    font-weight   : 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color         : #050816;
    background    : linear-gradient(135deg, var(--accent-gold), var(--accent-sky));
    border        : 1px solid rgba(255, 255, 255, 0.7);
    box-shadow    : 0 20px 55px rgba(0, 0, 0, 0.75);
}

.fs-btn-primary-glass:hover {
    transform : translateY(-1px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
}

.fs-btn-secondary-glow {
    padding       : 11px 24px;
    border-radius : 999px;
    font-size     : 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color         : var(--accent-sky);
    background    : rgba(9, 19, 45, 0.8);
    border        : 1px solid rgba(111, 213, 255, 0.5);
    box-shadow    : 0 16px 40px rgba(8, 24, 68, 0.9);
}

.fs-btn-secondary-glow:hover {
    background: rgba(17, 41, 95, 0.95);
}

.fs-hero-meta {
    display    : flex;
    flex-wrap  : wrap;
    gap        : 16px;
    align-items: center;
    margin-top : 8px;
}

.fs-meta-item {
    min-width : 120px;
}

.fs-meta-label {
    font-size: 11px;
    color    : var(--text-muted);
}

.fs-meta-value {
    display   : block;
    font-size : 20px;
    font-weight: 600;
    color     : var(--dark-color);
}

.fs-meta-divider {
    width     : 1px;
    height    : 32px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.fs-hero-destinations {
    display       : flex;
    flex-direction: column;
    gap           : 16px;
}

.fs-destination-card {
    display       : flex;
    gap           : 14px;
    padding       : 12px 12px 12px 10px;
    border-radius : 20px;
    background    : var(--glass-bg-soft);
    border        : 1px solid var(--glass-border-soft);
    backdrop-filter: blur(var(--blur-soft));
    -webkit-backdrop-filter: blur(var(--blur-soft));
    box-shadow    : 0 18px 52px rgba(2, 6, 23, 0.96);
}

.fs-destination-image {
    position    : relative;
    overflow    : hidden;
    border-radius: 16px;
    width       : 96px;
    height      : 88px;
}

.fs-destination-image img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
    transform : scale(1.05);
    transition: var(--transition);
}

.fs-destination-card:hover .fs-destination-image img {
    transform: scale(1.1);
}

.fs-destination-glow {
    position  : absolute;
    inset     : 0;
    background: radial-gradient(circle at top, rgba(244, 201, 107, 0.38), transparent 70%);
    mix-blend-mode: soft-light;
    opacity   : 0.8;
}

.fs-destination-content h4 {
    font-size    : 16px;
    color        : #ffffff;
    margin-bottom: 4px;
}

.fs-destination-location,
.fs-destination-duration {
    font-size: 12px;
    color    : var(--text-muted);
    margin   : 0;
}

.fs-destination-footer {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    margin-top     : 6px;
}

.fs-destination-price {
    font-size : 16px;
    font-weight: 600;
    color     : var(--accent-gold);
}

.fs-destination-link {
    font-size     : 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color         : var(--accent-sky);
}


/* =========================
   GENERIC SECTIONS
   ========================= */

.fs-section {
    padding: 80px 0;
}

.fs-section-header {
    text-align    : center;
    margin-bottom : 40px;
}

.fs-section-title {
    font-size  : 32px;
    font-weight: 600;
    color      : #ffffff;
    position   : relative;
    display    : inline-block;
}

.fs-section-title::after {
    content   : "";
    position  : absolute;
    left      : 50%;
    transform : translateX(-50%);
    bottom    : -14px;
    width     : 90px;
    height    : 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.fs-section-subtitle {
    margin-top   : 24px;
    max-width    : 520px;
    margin-left  : auto;
    margin-right : auto;
    font-size    : 14px;
    color        : var(--text-muted);
}

.fs-section-packages {
    background: radial-gradient(circle at top, rgba(244, 201, 107, 0.08), transparent 60%),
                linear-gradient(180deg, rgba(9, 20, 59, 0.96), #050816);
}

.fs-section-why {
    background: transparent;
}

.fs-section-gallery {
    background: radial-gradient(circle at top, rgba(111, 213, 255, 0.08), transparent 65%);
}

.fs-section-reviews {
    background: rgba(3, 8, 26, 0.95);
}

.fs-section-stats {
    background: transparent;
}

.fs-section-cta {
    background: radial-gradient(circle at center, rgba(244, 201, 107, 0.08), transparent 70%);
}

/* =========================
   FEATURED PACKAGES
   ========================= */

.fs-package-card {
    border-radius : 22px;
    overflow      : hidden;
    background    : rgba(7, 17, 43, 0.95);
    border        : 1px solid var(--glass-border-soft);
    box-shadow    : var(--shadow-soft);
    backdrop-filter: blur(var(--blur-soft));
    -webkit-backdrop-filter: blur(var(--blur-soft));
    display       : flex;
    flex-direction: column;
}

.fs-package-media {
    position: relative;
    height  : 180px;
}

.fs-package-media img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
}

.fs-package-badge {
    position : absolute;
    top      : 14px;
    left     : 14px;
    padding  : 4px 10px;
    border-radius: 999px;
    background: rgba(5, 8, 22, 0.82);
    border   : 1px solid rgba(244, 201, 107, 0.7);
    color    : var(--accent-gold);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fs-package-body {
    padding: 16px 18px 16px;
}

.fs-package-title {
    font-size    : 16px;
    color        : #ffffff;
    margin-bottom: 6px;
}

.fs-package-location,
.fs-package-duration {
    font-size: 12px;
    color    : var(--text-muted);
    margin   : 0;
}

.fs-package-footer {
    margin-top    : 12px;
    display       : flex;
    align-items   : center;
    justify-content: space-between;
}

.fs-package-price {
    display   : block;
    font-size : 18px;
    font-weight: 600;
    color     : var(--accent-gold);
}

.fs-package-price-note {
    font-size: 11px;
    color    : var(--text-muted);
}

.fs-package-cta {
    font-size     : 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color         : var(--accent-sky);
}

.fs-btn-outline-glass {
    padding       : 10px 26px;
    border-radius : 999px;
    border        : 1px solid rgba(255, 255, 255, 0.35);
    background    : transparent;
    font-size     : 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color         : #ffffff;
}

.fs-btn-outline-glass:hover {
    background: rgba(16, 38, 96, 0.95);
}

/* =========================
   WHY TRAVEL WITH US
   ========================= */

.fs-icon-card {
    padding       : 22px 18px 20px;
    border-radius : 20px;
    background    : rgba(6, 17, 40, 0.82);
    border        : 1px solid rgba(255, 255, 255, 0.08);
    text-align    : left;
    box-shadow    : 0 18px 45px rgba(1, 8, 25, 0.95);
}

.fs-icon-circle {
    width        : 44px;
    height       : 44px;
    border-radius: 16px;
    display      : flex;
    align-items  : center;
    justify-content: center;
    background   : radial-gradient(circle at top left, rgba(244, 201, 107, 0.6), transparent 60%);
    color        : #050816;
    margin-bottom: 12px;
}

.fs-icon-card h4 {
    font-size    : 15px;
    color        : #ffffff;
    margin-bottom: 6px;
}

.fs-icon-card p {
    font-size: 13px;
    color    : var(--text-muted);
    margin   : 0;
}

/* =========================
   DESTINATIONS GALLERY
   ========================= */

.fs-gallery-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap                  : 16px;
}

.fs-gallery-item {
    position     : relative;
    border-radius: 22px;
    overflow     : hidden;
    border       : 1px solid rgba(255, 255, 255, 0.08);
    box-shadow   : 0 20px 55px rgba(0, 0, 0, 0.85);
}

.fs-gallery-item img {
    width     : 100%;
    height    : 220px;
    object-fit: cover;
    transform : scale(1.02);
    transition: var(--transition);
}

.fs-gallery-item:hover img {
    transform: scale(1.07);
}

.fs-gallery-overlay {
    position  : absolute;
    inset     : 0;
    background: linear-gradient(180deg, transparent 30%, rgba(5, 8, 22, 0.96) 100%);
    display   : flex;
    flex-direction: column;
    justify-content: flex-end;
    padding   : 16px 16px 14px;
}

.fs-gallery-overlay h4 {
    font-size : 15px;
    color     : #ffffff;
    margin    : 0;
}

.fs-gallery-overlay span {
    font-size: 12px;
    color    : var(--text-muted);
}

/* =========================
   REVIEWS
   ========================= */

.fs-review-card {
    border-radius : 22px;
    padding       : 20px 18px 18px;
    background    : rgba(7, 16, 43, 0.9);
    border        : 1px solid rgba(255, 255, 255, 0.1);
    box-shadow    : 0 18px 50px rgba(0, 0, 0, 0.95);
}

.fs-review-stars {
    margin-bottom: 8px;
}

.fs-review-stars .fa-star {
    font-size: 13px;
    color    : rgba(255, 255, 255, 0.18);
}

.fs-review-stars .fa-star.filled {
    color: #ffdf6b;
}

.fs-review-text {
    font-size  : 13px;
    color      : var(--text-muted);
    margin     : 4px 0 12px;
}

.fs-review-footer {
    display       : flex;
    align-items   : center;
    justify-content: space-between;
}

.fs-review-footer h5 {
    font-size : 14px;
    margin    : 0;
    color     : #ffffff;
}

.fs-review-footer span {
    font-size: 12px;
    color    : var(--text-muted);
}

.fs-review-badge {
    font-size     : 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding       : 4px 8px;
    border-radius : 999px;
    border        : 1px solid rgba(244, 201, 107, 0.7);
    color         : var(--accent-gold);
}

/* =========================
   TRAVEL STATS
   ========================= */

.fs-stats-grid {
    display              : grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap                  : 16px;
}

.fs-stat-card {
    border-radius : 20px;
    padding       : 16px 18px;
    background    : rgba(5, 11, 32, 0.92);
    border        : 1px solid rgba(255, 255, 255, 0.08);
    box-shadow    : 0 18px 50px rgba(0, 0, 0, 0.9);
}

.fs-stat-label {
    font-size: 11px;
    color    : var(--text-muted);
}

.fs-stat-value {
    display   : block;
    margin-top: 4px;
    font-size : 24px;
    font-weight: 600;
    color     : #ffffff;
}

.fs-stat-suffix {
    font-size: 14px;
    color    : var(--text-muted);
}

/* =========================
   CTA
   ========================= */

.fs-cta-panel {
    border-radius : 24px;
    padding       : 24px 26px;
    background    : linear-gradient(135deg, rgba(244, 201, 107, 0.2), rgba(19, 51, 120, 0.96));
    border        : 1px solid rgba(255, 255, 255, 0.28);
    display       : flex;
    flex-wrap     : wrap;
    align-items   : center;
    justify-content: space-between;
    box-shadow    : 0 25px 70px rgba(0, 0, 0, 0.95);
}

.fs-cta-panel h2 {
    font-size    : 24px;
    margin-bottom: 6px;
    color        : #ffffff;
}

.fs-cta-panel p {
    font-size: 13px;
    color    : var(--dark-color);
    max-width: 420px;
}

.fs-cta-actions {
    display  : flex;
    flex-wrap: wrap;
    gap      : 10px;
}

.package-card {
    background    : white;
    border-radius : 12px;
    overflow      : hidden;
    box-shadow    : var(--shadow);
    transition    : var(--transition);
    height        : 100%;
    display       : flex;
    flex-direction: column;
    text-decoration: none;
    color         : inherit;
}

.package-card:hover {
    transform : translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color         : inherit;
}

.package-image {
    position: relative;
    overflow: hidden;
    height  : 200px;
}

.package-image img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-content {
    padding       : 20px;
    flex          : 1;
    display       : flex;
    flex-direction: column;
}

.package-content h4 {
    font-size    : 20px;
    margin-bottom: 10px;
    color        : var(--dark-color);
}

.package-destination,
.package-duration {
    color        : var(--text-muted);
    font-size    : 14px;
    margin-bottom: 8px;
}

.package-destination i,
.package-duration i {
    color       : var(--primary-color);
    margin-right: 5px;
}

.package-description {
    color        : var(--text-muted);
    font-size    : 14px;
    margin-bottom: 15px;
    flex         : 1;
}

.package-footer {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    padding-top    : 15px;
    border-top     : 1px solid var(--border-color);
    margin-top     : auto;
}

.package-price {
    font-size  : 22px;
    font-weight: 700;
    color      : var(--primary-color);
}

/* =========================
   PAGE BANNER
   ========================= */

.page-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000428 100%);
    padding   : 80px 0;
    text-align: center;
    color     : white;
}

.page-banner h1 {
    font-size    : 42px;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 18px;
    opacity  : 0.9;
}

/* =========================
   GALLERY
   ========================= */

.gallery-section {
    padding: 80px 0;
}

.gallery-item {
    position     : relative;
    overflow     : hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gallery-img {
    width     : 100%;
    height    : 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position       : absolute;
    inset          : 0;
    background     : linear-gradient(transparent 50%, rgba(0, 0, 0, 0.8));
    display        : flex;
    flex-direction : column;
    justify-content: flex-end;
    padding        : 20px;
    opacity        : 0;
    transition     : var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color        : white;
    margin-bottom: 5px;
}

.gallery-overlay .category {
    color    : var(--primary-color);
    font-size: 14px;
}

/* =========================
   CONTACT
   ========================= */

.contact-section {
    padding: 72px 0 64px;
}

.contact-section h3{
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-info {
background: linear-gradient(135deg, var(--primary-color), var(--primary-royal-soft));    padding      : 20px !important;
    border-radius: 14px;
    box-shadow   : var(--shadow);
}

.contact-info form{
    padding: 28px 26px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.contact-item {
    display      : flex;
    align-items  : flex-start;
    gap          : 15px;
    margin-bottom: 25px;
}

.contact-item i {
    width          : 40px;
    height         : 40px;
    background     : var(--primary-color);
    color          : white;
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    flex-shrink    : 0;
}

.contact-item h4 {
    font-size    : 16px;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    color : var(--text-muted);
}

/* CONTACT FORM CONTAINER */
.contact-box{
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

/* FORM LAYOUT */
.contact-box form{
    display: flex;
    flex-direction: column;
}

/* EACH FIELD GROUP */
.contact-box .mb-3{
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

/* LABELS */
.contact-box .form-label{
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 6px;
}

/* INPUTS */
.contact-box .form-control,
.contact-box textarea{
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 12px 14px;
    font-size: 14px;
    background: #fff;
    transition: all 0.25s ease;
}

/* TEXTAREA */
.contact-box textarea{
    resize: vertical;
    min-height: 120px;
}

/* INPUT FOCUS */
.contact-box .form-control:focus,
.contact-box textarea:focus{
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(31,59,148,0.15);
}

/* ERROR MESSAGE */
.contact-box .invalid-feedback{
    font-size: 12px;
    margin-top: 4px;
}

/* BUTTON */
.btn-contact-primary{
    margin-top: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-royal-soft));
    border: none;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 12px 24px;
    width: 200px;
}

/* BUTTON HOVER */
.btn-contact-primary:hover{
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-royal));
    color: #fff;
}

.btn-contact-primary {
    background     : linear-gradient(135deg, var(--primary-color), var(--primary-royal-soft));
    border         : 1px solid rgba(15, 23, 42, 0.1);
    color          : #ffffff;
    border-radius  : 999px;
    font-weight    : 600;
    text-transform : uppercase;
    letter-spacing : 0.08em;
    padding        : 11px 26px;
    box-shadow     : var(--shadow);
}

.btn-contact-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-royal));
    color     : #ffffff;
}

.contact-map {
    padding: 0 0 72px;
}

.contact-map-frame {
    border-radius: 18px;
    overflow     : hidden;
    box-shadow   : var(--shadow);
    height       : 360px;
}

.contact-cta {
    padding   : 0 0 80px;
}

.contact-cta-panel {
    background   : #0b1530;
    border-radius: 18px;
    padding      : 26px 28px;
    display      : flex;
    flex-wrap    : wrap;
    align-items  : center;
    justify-content: space-between;
    gap         : 16px;
    box-shadow  : 0 18px 50px rgba(15, 23, 42, 0.7);
    color       : #f9fafb;
}

.contact-cta-panel h2 {
    font-size    : 22px;
    margin-bottom: 6px;
}

.contact-cta-panel p {
    margin     : 0;
    font-size  : 14px;
    color      : #e5e7eb;
    max-width  : 420px;
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 56px 0 52px;
    }

    .contact-map-frame {
        height: 260px;
    }

    .contact-cta-panel {
        padding: 22px 20px;
    }
}



/* =========================
   BOOKING FORM
   ========================= */

.booking-form-card {
    background   : white;
    padding      : 30px;
    border-radius: 10px;
    box-shadow   : var(--shadow);
    position     : sticky;
    top          : 100px;
}

.booking-form-card h3 {
    margin-bottom: 20px;
    color        : var(--dark-color);
}

.help-card {
    background   : white;
    padding      : 25px;
    border-radius: 10px;
    box-shadow   : var(--shadow);
    text-align   : center;
}

.help-card h4 {
    margin-bottom: 10px;
}

.help-card p {
    color        : var(--text-muted);
    margin-bottom: 15px;
}

/* =========================
   PACKAGE DETAILS
   ========================= */

.package-details {
    padding: 80px 0;
}

/* FILTER SECTION CARD */
.filters-section{
    background: #ffffff;
    padding: 22px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid #e5e7eb;
}

/* SELECT & INPUT */
.filters-section .form-select,
.filters-section .form-control{
    height: 44px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    padding: 8px 12px;
    transition: all .25s ease;
}

/* INPUT FOCUS */
.filters-section .form-select:focus,
.filters-section .form-control:focus{
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(31,59,148,0.15);
    outline: none;
}

/* FILTER BUTTON */
.filters-section .btn-primary{
    background: linear-gradient(135deg,var(--primary-color),var(--primary-royal-soft));
    border: none;
    border-radius: 10px;
    font-weight: 600;
    height: 44px;
}

/* FILTER BUTTON HOVER */
.filters-section .btn-primary:hover{
    background: linear-gradient(135deg,var(--accent-gold),var(--primary-royal));
}

/* CLEAR BUTTON */
.filters-section .btn-outline-secondary{
    border-radius: 10px;
    height: 44px;
    font-weight: 500;
}

/* CLEAR BUTTON HOVER */
.filters-section .btn-outline-secondary:hover{
    background: #f3f4f6;
}

/* MOBILE */
@media (max-width:768px){
    .filters-section{
        padding:18px;
    }
}

.package-main-image {
    border-radius: 12px;
    overflow     : hidden;
}

.package-main-image img {
    width     : 100%;
    height    : 400px;
    object-fit: cover;
}

.price-tag {
    color      : var(--primary-color);
    font-size  : 32px;
    font-weight: 700;
}

.price-tag small {
    font-size  : 16px;
    color      : var(--text-muted);
    font-weight: 400;
}

.package-inclusions,
.package-exclusions {
    background   : var(--light-color);
    padding      : 20px;
    border-radius: 8px;
    margin-top   : 20px;
}

.package-inclusions h4,
.package-exclusions h4 {
    margin-bottom: 15px;
}

.package-inclusions h4 i {
    color: var(--success-color);
}

.package-exclusions h4 i {
    color: var(--danger-color);
}

/* Reviews */
.review-item {
    background   : var(--light-color);
    padding      : 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.review-header {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    margin-bottom  : 10px;
}

.rating i {
    color: #ffc107;
}

.rating i.filled {
    color: #ffc107;
}

.rating i:not(.filled) {
    color: #ddd;
}

/* =========================
   WHY CHOOSE US
   ========================= */

.why-choose-us {
    padding   : 80px 0;
    background: white;
}

.feature-box {
    text-align: center;
    padding   : 30px;
}

.feature-icon {
    width          : 80px;
    height         : 80px;
    background     : linear-gradient(135deg, var(--primary-color) 0%, #ff8a5c 100%);
    color          : white;
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    font-size      : 32px;
    margin         : 0 auto 20px;
}

.feature-box h4 {
    margin-bottom: 15px;
    color        : var(--dark-color);
}

.feature-box p {
    color: var(--text-muted);
}

/* =========================
   TESTIMONIALS
   ========================= */

.testimonials {
    padding   : 80px 0;
    background: var(--light-color);
}

.testimonial-card {
    background   : white;
    padding      : 30px;
    border-radius: 12px;
    box-shadow   : var(--shadow);
    height       : 100%;
}

.testimonial-card .rating {
    margin-bottom: 15px;
}

.testimonial-text {
    font-style   : italic;
    color        : var(--text-muted);
    margin-bottom: 20px;
}

.testimonial-author h5 {
    margin-bottom: 5px;
    color        : var(--dark-color);
}

.testimonial-author span {
    font-size: 14px;
    color    : var(--primary-color);
}

/* =========================
   CTA
   ========================= */

.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000428 100%);
    padding   : 80px 0;
    text-align: center;
    color     : white;
}

.cta h2 {
    font-size    : 36px;
    margin-bottom: 15px;
}

.cta p {
    font-size    : 18px;
    margin-bottom: 25px;
    opacity      : 0.9;
}

/* =========================
   DESTINATIONS
   ========================= */

.destinations {
    padding   : 80px 0;
    background: white;
}

.destination-card {
    position     : relative;
    overflow     : hidden;
    border-radius: 12px;
    height       : 250px;
    margin-bottom: 20px;
}

.destination-card img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position       : absolute;
    inset          : 0;
    background     : linear-gradient(transparent 40%, rgba(0, 0, 0, 0.8));
    display        : flex;
    flex-direction : column;
    justify-content: flex-end;
    padding        : 20px;
    color          : white;
}

.destination-overlay h4 {
    margin-bottom: 5px;
}

.destination-overlay p {
    margin   : 0;
    font-size: 14px;
    opacity  : 0.8;
}

.footer-content img {
    width     : 60px;
    height    : auto;
}

/* =========================
   FOOTER - DISABLED (Use main-footer in layout/footer.blade.php instead)
   ========================= 

.footer {
    background: radial-gradient(circle at top, #131f4a 0%, #050816 40%, #02030a 100%);
    color     : #e4e7ff;
    padding   : 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer h4 {
    color        : #ffffff;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding   : 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color     : var(--text-muted);
    font-size : 13px;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--accent-sky);
}

.footer p {
    margin-bottom: 5px;
    color        : var(--text-muted);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.16);
    margin      : 30px 0;
}

.copyright {
    text-align: center;
    color     : #6b7398;
}

*/
    

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
    .hero {
        height: 450px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-banner h1 {
        font-size: 30px;
    }

    .package-main-image img {
        height: 250px;
    }

    .price-tag {
        font-size: 26px;
    }

    .booking-form-card {
        position  : static;
        margin-top: 30px;
    }

    .cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 380px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .packages {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .btn {
        padding: 8px 20px;
    }
}

.view-more-btn-container{
    text-align: center;
    margin-top: 30px;
}