/* style.css - Complete Stylesheet */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #0f172a;
    --gray-dark: #334155;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --gray-lighter: #f1f5f9;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; margin-bottom: 0.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}

.btn-dash {
    display: inline-block;
    padding: 10px 24px;
    background: var(--white);
    color: var(--dark);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--gray-light);
    margin-top: 12px;
}

.btn-dash:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(4px);
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo i {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-weight: 500;
}

/* ===== HERO ===== */
.hero-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 500px;
}

.search-container {
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-icon {
    color: var(--gray);
    padding: 0 12px;
}

.search-input {
    flex: 1;
    border: none;
    padding: 14px 0;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--primary-dark);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-header.center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--primary-dark);
}

/* ===== CARDS ===== */
.hotel-grid, .package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.hotel-card, .package-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hotel-card:hover, .package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.hotel-image, .package-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.hotel-image img, .package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.package-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-type {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.hotel-info, .package-info {
    padding: 20px;
}

.hotel-info h3, .package-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.hotel-location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.hotel-footer, .package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-light);
}

.hotel-price, .package-price {
    font-size: 1.25rem;
    font-weight: 700;
}

.hotel-price small, .package-price small {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--gray);
}

.package-agent {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.package-agent i {
    color: var(--secondary);
}

.package-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0;
}

.include-tag {
    font-size: 0.75rem;
    background: var(--gray-lighter);
    padding: 2px 10px;
    border-radius: 12px;
    color: var(--gray-dark);
}

.include-tag i {
    color: var(--success);
    margin-right: 4px;
}

/* ===== DASHBOARD PREVIEW ===== */
.dashboard-preview {
    padding: 80px 0;
    background: var(--gray-lighter);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.dashboard-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.dash-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.admin-dash .dash-icon-wrapper {
    background: #dbeafe;
    color: var(--primary);
}

.hotel-dash .dash-icon-wrapper {
    background: #d1fae5;
    color: var(--success);
}

.agent-dash .dash-icon-wrapper {
    background: #ede9fe;
    color: var(--secondary);
}

.dash-features {
    list-style: none;
    margin: 16px 0 20px;
}

.dash-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-dark);
}

.dash-features li i {
    color: var(--primary);
    width: 18px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 32px;
    background: var(--gray-lighter);
    border-radius: var(--radius);
    position: relative;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 8px 0 16px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4, .footer-col h5 {
    color: white;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
}

.socials {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.socials i {
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.socials i:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== BOOKING PAGE ===== */
.booking-page {
    padding: 40px 0 80px;
}

.booking-filters {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.filter-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
}

.filter-input {
    padding: 10px 14px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.filter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.search-btn-large {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    height: 44px;
}

.search-btn-large:hover {
    background: var(--primary-dark);
}

.booking-results {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    grid-column: 1 / -1;
}

.result-count {
    color: var(--gray);
    font-weight: 400;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-options select {
    padding: 8px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 0.9rem;
}

.hotel-listing {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    transition: var(--transition);
}

.hotel-listing:hover {
    box-shadow: var(--shadow-lg);
}

.listing-image {
    flex: 0 0 240px;
    position: relative;
}

.listing-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.listing-rating {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 2px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.listing-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.listing-details h3 {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.listing-location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.listing-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.amenity-tag {
    font-size: 0.75rem;
    background: var(--gray-lighter);
    padding: 2px 12px;
    border-radius: 12px;
    color: var(--gray-dark);
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--gray-light);
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
}

.price-period {
    color: var(--gray);
    font-size: 0.85rem;
}

.btn-book {
    padding: 10px 24px;
}

/* ===== SIDEBAR ===== */
.booking-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.summary-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.summary-card h4 {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.summary-label {
    color: var(--gray);
}

.summary-value {
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 16px 0;
}

.total-amount {
    color: var(--primary);
}

.summary-note {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 12px;
    text-align: center;
}

/* ===== DASHBOARD LAYOUT ===== */
.dashboard-page {
    background: var(--gray-lighter);
    min-height: 100vh;
}

.dashboard-container {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 100vh;
}

.dashboard-sidebar {
    width: 260px;
    background: white;
    padding: 24px 0;
    border-right: 1px solid var(--gray-light);
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.sidebar-nav {
    flex: 1;
    padding: 20px 12px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 2px;
}

.sidebar-nav a:hover {
    background: var(--gray-lighter);
    color: var(--dark);
}

.sidebar-nav a.active {
    background: #eff6ff;
    color: var(--primary);
    font-weight: 600;
}

.sidebar-nav a i {
    width: 20px;
}

.sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-light);
}

.sidebar-footer a {
    color: var(--gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-main {
    flex: 1;
    padding: 32px;
}

.dashboard-header {
    margin-bottom: 32px;
}

.dashboard-header h2 {
    font-size: 1.75rem;
}

.dashboard-header p {
    color: var(--gray);
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-icon.blue { background: #dbeafe; color: var(--primary); }
.stat-icon.green { background: #d1fae5; color: var(--success); }
.stat-icon.purple { background: #ede9fe; color: var(--secondary); }
.stat-icon.orange { background: #fef3c7; color: var(--accent); }

.stat-info h4 {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-change {
    font-size: 0.8rem;
    color: var(--gray);
}

.stat-change.positive {
    color: var(--success);
}

/* ===== WIDGETS ===== */
.dashboard-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.widget {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.widget-header h3 {
    font-size: 1.1rem;
}

.widget-header h3 i {
    color: var(--primary);
    margin-right: 8px;
}

.widget-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.widget-table th {
    text-align: left;
    padding: 8px 12px;
    color: var(--gray);
    font-weight: 600;
    border-bottom: 1px solid var(--gray-light);
}

.widget-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--gray-light);
}

.status-badge {
    padding: 2px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.confirmed { background: #d1fae5; color: #065f46; }
.status-badge.pending { background: #fef3c7; color: #92400e; }
.status-badge.cancelled { background: #fee2e2; color: #991b1b; }
.status-badge.available { background: #d1fae5; color: #065f46; }
.status-badge.limited { background: #fef3c7; color: #92400e; }
.status-badge.unavailable { background: #fee2e2; color: #991b1b; }

/* ===== QUICK ACTIONS ===== */
.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.action-btn {
    background: var(--gray-lighter);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.action-btn i {
    font-size: 1.2rem;
    color: var(--primary);
}

.action-btn:hover {
    background: var(--primary);
    color: white;
}

.action-btn:hover i {
    color: white;
}

/* ===== BOOKING LIST ===== */
.booking-list, .client-booking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-item, .client-item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: var(--gray-lighter);
    border-radius: 8px;
}

.booking-guest strong, .client-info strong {
    display: block;
}

.booking-guest span, .client-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

.booking-date, .client-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.85rem;
}

/* ===== PACKAGE LIST ===== */
.package-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--gray-lighter);
    border-radius: 8px;
}

.package-info h4 {
    margin-bottom: 2px;
}

.package-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

.package-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-tag {
    font-weight: 700;
    color: var(--primary);
}

/* ===== PACKAGES PAGE ===== */
.packages-page {
    padding: 40px 0 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.page-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.agent-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 20px;
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    background: white;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.agent-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.agent-search input {
    padding: 8px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 0.95rem;
}

.agent-search button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.package-card .package-image {
    height: 240px;
}

.package-content {
    padding: 20px;
}

.package-agent-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.agent-name {
    font-weight: 500;
}

.agent-name i {
    color: var(--secondary);
}

.agent-rating {
    color: var(--accent);
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-stats {
        justify-items: center;
    }
    .dashboard-grid {
        grid-template-columns: 1fr 1fr;
    }
    .dashboard-widgets {
        grid-template-columns: 1fr;
    }
    .filter-container {
        grid-template-columns: 1fr 1fr;
    }
    .booking-results {
        grid-template-columns: 1fr;
    }
    .booking-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-sidebar {
        display: none;
    }
    .dashboard-main {
        padding: 16px;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .filter-container {
        grid-template-columns: 1fr;
    }
    .hotel-listing {
        flex-direction: column;
    }
    .listing-image {
        flex: auto;
        height: 200px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}