/* 
 * Custom Premium Styling
 * Sundarban Das Travels
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
    --primary: #133c30;         /* Deep Mangrove Green */
    --primary-light: #1e5e4b;   /* Medium Green */
    --primary-pale: #eef6f3;    /* Light Green Background */
    --secondary: #e67e22;       /* Tiger Orange */
    --accent: #f1c40f;          /* Sunlight Gold */
    --dark: #2c3e50;            /* Charcoal */
    --light: #ffffff;
    --gray-bg: #f8f9fa;
    --text-color: #4a5568;
    --border-color: #e2e8f0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(19, 60, 48, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    margin-bottom: 50px;
}

.section-title span {
    font-family: var(--font-primary);
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary);
    color: var(--light);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: transparent;
    color: var(--secondary);
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

/* Header & Top Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--light);
    font-size: 0.85rem;
    padding: 10px 0;
}

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

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
}

.brand-info h1 {
    font-size: 1.3rem;
    line-height: 1.1;
}

.brand-info span {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(19, 60, 48, 0.8), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--light);
    max-width: 700px;
    margin-left: 20px;
}

.hero-content span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-content h2 {
    color: var(--light);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Booking Floating Form */
.booking-form-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.booking-form-wrapper {
    background-color: var(--light);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 30px;
    border-bottom: 4px solid var(--secondary);
}

.booking-form-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-form-wrapper h3 i {
    color: var(--secondary);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    align-items: end;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--gray-bg);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--dark);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    background-color: var(--light);
    box-shadow: 0 0 0 3px rgba(19, 60, 48, 0.1);
}

/* Welcome Section */
.welcome-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.welcome-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.welcome-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight-box {
    background-color: var(--primary-pale);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.highlight-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.highlight-box p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-color);
}

.welcome-image-wrapper {
    position: relative;
}

.welcome-image {
    border-radius: 15px;
    box-shadow: var(--shadow);
    z-index: 2;
    position: relative;
}

.welcome-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--accent);
    z-index: 1;
    border-radius: 15px;
}

/* Tour Categories / Service List */
.bg-pale {
    background-color: var(--primary-pale);
}

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

.category-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--secondary);
}

.category-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-pale);
    color: var(--primary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background-color: var(--secondary);
    color: var(--light);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Package Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.package-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-img {
    transform: scale(1.1);
}

.package-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary);
    color: var(--light);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.package-discount {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: var(--dark);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
}

.package-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(19, 60, 48, 0.85);
    color: var(--light);
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-content h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.package-destinations {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.package-highlights {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.package-price {
    line-height: 1.2;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
}

.original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #a0aec0;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 60, 48, 0.8);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--light);
    padding: 20px;
    text-align: center;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.gallery-overlay p {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonials */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    text-align: center;
    padding: 30px;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
}

.testimonial-quote::before {
    content: '“';
    font-size: 4rem;
    position: absolute;
    top: -40px;
    left: -10px;
    color: var(--primary-pale);
    z-index: -1;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    border: 4px solid var(--light);
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: var(--light);
    margin-top: 15px;
    font-size: 1.1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--light);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Footer */
footer {
    background-color: #0f2720;
    color: #a0aec0;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--light);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--light);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.05);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--secondary);
    color: var(--light);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(19, 60, 48, 0.85), rgba(19, 60, 48, 0.85)), url('../assets/hero-banner1.png');
    background-size: cover;
    background-position: center;
    color: var(--light);
    padding: 80px 0;
    text-align: center;
}

.page-banner h1 {
    color: var(--light);
    font-size: 3rem;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb span {
    color: var(--accent);
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.contact-card-box {
    background-color: var(--light);
    box-shadow: var(--shadow);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.contact-card-box h3 {
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.contact-details-list {
    margin-top: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail-item .icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--primary-pale);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-detail-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-detail-item p {
    font-size: 0.9rem;
}

.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 350px;
}

/* Package Details Page Styles */
.package-details-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
}

.itinerary-timeline {
    margin-top: 30px;
    position: relative;
    padding-left: 30px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 9px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: var(--primary-pale);
}

.timeline-step {
    position: relative;
    margin-bottom: 30px;
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -26px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary);
    border: 3px solid var(--light);
    box-shadow: 0 0 0 3px var(--secondary);
}

.timeline-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.inclusions-exclusions-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    background-color: var(--gray-bg);
    padding: 30px;
    border-radius: 15px;
}

.inclusions-box h4, .exclusions-box h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.inc-list li, .exc-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inc-list li i {
    color: var(--primary);
}

.exc-list li i {
    color: #e53e3e;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* Admin Panel Styles */
.admin-body {
    background-color: #f0f4f8;
}

.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.admin-login-card {
    background-color: var(--light);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    border-top: 5px solid var(--primary);
}

.admin-login-card h2 {
    text-align: center;
    margin-bottom: 30px;
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background-color: var(--primary);
    color: var(--light);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

.admin-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-nav-link {
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.admin-nav-link:hover, .admin-nav-link.active {
    background-color: var(--primary-light);
}

.admin-logout {
    margin-top: auto;
    color: #fc8181;
}

.admin-logout:hover {
    background-color: rgba(252, 129, 129, 0.1);
}

.admin-main {
    padding: 40px;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: var(--light);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-card-left h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-card-left p {
    font-size: 0.85rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-pale);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.admin-card {
    background-color: var(--light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    margin-bottom: 30px;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.admin-table-container {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

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

.admin-table th {
    font-weight: 600;
    color: var(--primary);
    background-color: #f7fafc;
}

.admin-table tr:hover {
    background-color: #f7fafc;
}

.status-badge {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-pending { background-color: #feebc8; color: #c05621; }
.status-contacted { background-color: #ebf8ff; color: #2b6cb0; }
.status-completed { background-color: #c6f6d5; color: #22543d; }

.action-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-right: 5px;
    cursor: pointer;
    border: none;
    font-weight: 500;
}

.action-edit { background-color: #3182ce; color: white; }
.action-delete { background-color: #e53e3e; color: white; }
.action-view { background-color: #4a5568; color: white; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .welcome-grid, .contact-grid, .package-details-grid {
        grid-template-columns: 1fr;
    }
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        display: none; /* In production, we'd add a toggle */
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.3rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .top-bar {
        display: none;
    }
    .nav-menu {
        display: none; /* Hide for mobile nav implementation */
    }
    .mobile-menu-toggle {
        display: block;
    }
    .booking-form {
        grid-template-columns: 1fr;
    }
    .welcome-highlights {
        grid-template-columns: 1fr;
    }
    .inclusions-exclusions-box {
        grid-template-columns: 1fr;
    }
}
