/* Seaside Punta Cana - Custom Styles */
:root {
    --primary-color: #0066cc;      /* Azul del logo */
    --secondary-color: #ff6b35;    /* Naranja tropical */
    --accent-color: #00b894;       /* Verde turquesa */
    --warm-yellow: #ffd93d;        /* Amarillo cálido */
    --deep-blue: #004d99;          /* Azul profundo */
    --light-blue: #e3f2fd;         /* Azul claro */
    --text-dark: #2c3e50;          /* Texto oscuro */
    --text-light: #7f8c8d;         /* Texto claro */
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

/* Global Styles */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Navigation */
.navbar {
    background: var(--white) !important;
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Modern Navigation Styles */
.modern-nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-dark) !important;
}

.modern-nav-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.modern-nav-link:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.modern-nav-link:hover i {
    transform: scale(1.2);
}

.modern-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.modern-nav-link:hover::after {
    width: 80%;
}

/* WhatsApp Link Special Style */
.whatsapp-link {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    border-radius: 25px;
    padding: 0.5rem 1.25rem !important;
    margin-left: 0.5rem !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%) !important;
    color: white !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-link i {
    font-size: 1.1rem;
}

.whatsapp-link::after {
    display: none;
}

/* Modern Sign Up Button */
.modern-signup-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-blue) 100%);
    border: none;
    border-radius: 25px;
    padding: 0.6rem 1.5rem !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-signup-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-signup-btn:hover::before {
    left: 100%;
}

.modern-signup-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-color) 100%);
}

.modern-signup-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Modern Dropdown */
.modern-dropdown {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    background: white;
    min-width: 220px;
}

.modern-dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 500;
}

.modern-dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.modern-dropdown-item:hover {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.1) 0%, transparent 100%);
    color: var(--primary-color);
    padding-left: 2rem;
}

.modern-dropdown-item:hover i {
    transform: scale(1.2);
}

.modern-dropdown-item.text-danger:hover {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.1) 0%, transparent 100%);
    color: #dc3545 !important;
}

/* Active Nav Link */
.navbar-nav .nav-item .modern-nav-link.active,
.navbar-nav .nav-item .modern-nav-link[aria-current="page"] {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-blue) 100%);
    color: white !important;
}

.navbar-nav .nav-item .modern-nav-link.active::after,
.navbar-nav .nav-item .modern-nav-link[aria-current="page"]::after {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .modern-nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 8px;
    }
    
    .whatsapp-link {
        margin-left: 0 !important;
        margin-top: 0.5rem;
    }
    
    .modern-signup-btn {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
    
    .modern-dropdown {
        margin-top: 0;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--deep-blue);
    border-color: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 102, 204, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: var(--border-radius);
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.7), rgba(255, 107, 53, 0.7));
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Featured Packages */
.featured-packages {
    padding: 5rem 0;
    background: var(--light-blue);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.package-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.package-content {
    padding: 1.5rem;
}

.package-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-location, .package-type {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.package-location i, .package-type i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.package-description {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.package-features {
    margin-bottom: 1.5rem;
}

.feature-tag {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 600;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--light-blue);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info .contact-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    width: 20px;
}

.contact-info .contact-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-info .contact-item p {
    color: var(--text-light);
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-blue), var(--primary-color)) !important;
}

.footer h5 {
    color: var(--white) !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer p {
    color: #e8f4fd !important;
    line-height: 1.6;
}

.footer .text-muted {
    color: #b8e6ff !important;
}

.footer a {
    color: #b8e6ff !important;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--warm-yellow) !important;
    text-decoration: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--white) !important;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: var(--white) !important;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Page Title */
.page-title {
    border-bottom: 1px solid #e9ecef;
}

.page-title h1 {
    color: var(--primary-color);
    font-weight: 700;
}

.page-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Search and Filter Section */
.search-filter {
    border-bottom: 1px solid #e9ecef;
}

.search-filter .form-control,
.search-filter .form-select {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    transition: border-color 0.3s ease;
}

.search-filter .form-control:focus,
.search-filter .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* Enhanced Package Cards - Diseño Moderno y Dinámico */
.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

/* Efecto de brillo animado en la parte superior */
.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%,
        var(--accent-color) 50%,
        var(--secondary-color) 75%,
        var(--primary-color) 100%
    );
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.package-card:hover::before {
    transform: scaleX(1);
}

/* Efecto de brillo sutil alrededor de la tarjeta */
.package-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.1) 0%, 
        rgba(255, 107, 53, 0.1) 50%,
        rgba(0, 184, 148, 0.1) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.package-card:hover::after {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), 
                0 12px 24px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(0, 102, 204, 0.1);
    border-color: rgba(0, 102, 204, 0.15);
}

.package-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: 2;
}

/* Overlay dinámico en la imagen */
.package-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom, 
        rgba(0, 102, 204, 0) 0%, 
        rgba(0, 102, 204, 0.05) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.package-card:hover .package-image::after {
    opacity: 1;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
    filter: brightness(1) saturate(1);
}

.package-card:hover .package-image img {
    transform: scale(1.2) translateY(-5px);
    filter: brightness(1.1) saturate(1.2);
}

/* Precio con efecto glassmorphism */
.package-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.95) 0%, 
        rgba(255, 140, 90, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.package-card:hover .package-price {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 1) 0%, 
        rgba(255, 140, 90, 1) 100%
    );
}

/* Badge con efecto moderno */
.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, 
        rgba(0, 184, 148, 0.95) 0%, 
        rgba(0, 217, 168, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.package-card:hover .package-badge {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 184, 148, 0.45),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.package-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
    position: relative;
    z-index: 2;
}

/* Título mejorado con tipografía moderna */
.package-content h3 {
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.package-card:hover .package-content h3 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(4px);
}

/* Ubicación y tipo con mejor diseño */
.package-location, .package-type {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.package-location i, .package-type i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    width: 18px;
    text-align: center;
}

.package-card:hover .package-location,
.package-card:hover .package-type {
    color: var(--text-dark);
}

.package-card:hover .package-location i,
.package-card:hover .package-type i {
    transform: scale(1.3) rotate(5deg);
    color: var(--secondary-color);
}

/* Descripción con mejor legibilidad */
.package-description {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    font-weight: 400;
    opacity: 0.75;
    transition: all 0.4s ease;
    letter-spacing: 0.01em;
}

.package-card:hover .package-description {
    opacity: 0.9;
    color: var(--text-dark);
}

/* Features tags mejorados */
.package-features {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.8) 0%, rgba(187, 222, 251, 0.6) 100%);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1.5px solid rgba(0, 102, 204, 0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.feature-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.package-card:hover .feature-tag::before {
    left: 100%;
}

.package-card:hover .feature-tag {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-blue) 100%);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.35),
                0 2px 4px rgba(0, 102, 204, 0.2);
    border-color: transparent;
}

/* Botones de acción mejorados */
.package-actions {
    margin-top: auto;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 1.25rem;
    border-top: 2px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.package-actions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.5s ease;
}

.package-card:hover .package-actions::before {
    width: 100%;
}

.package-actions .btn {
    flex: 1;
    min-width: 140px;
    padding: 13px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

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

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

.package-actions .btn i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.package-actions .btn:hover i {
    transform: translateX(3px);
}

.package-actions .btn span {
    position: relative;
    z-index: 1;
}

.package-actions .btn-outline {
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
}

.package-actions .btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-blue) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.35),
                0 4px 8px rgba(0, 102, 204, 0.2);
    border-color: transparent;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

.cta-section .btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-section .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 12px 15px;
}

.newsletter-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* Package Stats */
.package-stats .badge {
    font-size: 0.9rem;
    padding: 8px 12px;
}

/* Responsive Design for Packages */
@media (max-width: 768px) {
    .package-actions {
        flex-direction: column;
    }
    
    .package-actions .btn {
        width: 100%;
    }
    
    .search-filter .row {
        gap: 1rem;
    }
}

/* Social Media Page Styles */
.social-card {
    transition: transform 0.3s ease;
}

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

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.facebook-icon {
    background: #1877f2;
    color: white;
}

.whatsapp-icon {
    background: #25d366;
    color: white;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border: none;
    color: white;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #e6683c, #dc2743, #cc2366, #bc1888, #f09433);
    color: white;
    transform: translateY(-2px);
}

.btn-facebook {
    background: #1877f2;
    border: none;
    color: white;
}

.btn-facebook:hover {
    background: #166fe5;
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    border: none;
    color: white;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    color: white;
    transform: translateY(-2px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--primary-color);
}

.social-stats .badge {
    font-size: 0.8rem;
    padding: 6px 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .navbar-brand span {
        display: none;
    }
}

/* Alert Messages */
.alert {
    border-radius: var(--border-radius);
    border: none;
    margin-bottom: 0;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.shadow-sm {
    box-shadow: var(--shadow) !important;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.contact-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-highlights {
    margin-top: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.contact-image-container {
    position: relative;
    padding: 1rem;
}

.contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Contact Form Styles */
.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form-section .card {
    border-radius: 20px;
    overflow: hidden;
}

.contact-form-section .card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-blue) 100%);
    border: none;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
    transform: translateY(-2px);
}

.contact-form-section .form-label {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form-section .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-form-section .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Additional Contact Information */
.contact-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
}

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

.contact-card-icon {
    color: var(--primary-color);
}

.contact-card h5 {
    color: var(--text-dark);
}

/* FAQ Section */
.faq-section .accordion-item {
    border-radius: 10px;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    border: none;
    padding: 1.25rem;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230066cc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    background: var(--white);
    padding: 1.5rem;
    line-height: 1.7;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .contact-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .contact-content p {
        text-align: center;
    }
    
    .contact-highlights {
        margin-top: 1.5rem;
    }
    
    .contact-image-container {
        margin-top: 2rem;
    }
    
    .contact-form-section .card-body {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-section .btn-primary {
        width: 100%;
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .contact-content h1 {
        font-size: 2rem;
    }
    
    .contact-form-section .card-body {
        padding: 1.5rem 1rem;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .faq-section .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-section .accordion-body {
        padding: 1rem;
    }
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.about-hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-stats {
    margin-top: 2rem;
}

.stat-item {
    padding: 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-logo {
    max-width: 200px;
    transition: transform 0.3s ease;
}

.about-logo:hover {
    transform: scale(1.05);
}

.about-hero-text h4 {
    margin-bottom: 1rem;
}

/* Our Story Section */
.our-story {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.timeline-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}



/* Our Values Section */
.value-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    color: var(--primary-color);
}

.value-card h5 {
    color: var(--text-dark);
}

/* Why Choose Us Section */
.feature-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    color: var(--primary-color);
    width: 50px;
    flex-shrink: 0;
}

.feature-content h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Team Section */
.team-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.team-card h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-card p.text-primary {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-blue) 100%);
}

.cta-section h2 {
    color: var(--white);
}

.cta-section .btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-section .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design for About Us Page */
@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .about-hero-content p {
        text-align: center;
    }
    
    .about-stats {
        margin-top: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-marker {
        margin: 0 auto 1rem;
    }
    

    
    .feature-item {
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .value-card,
    .team-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
    }
    
    .timeline-marker i {
        font-size: 1.2rem;
    }
}

/* Login & Register Page Styles */
.login-hero,
.register-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.login-card,
.register-card {
    position: relative;
}

.login-card .card,
.register-card .card {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

.login-card .card-header,
.register-card .card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-blue) 100%);
    border: none;
}

.login-card .form-control,
.register-card .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-card .form-control:focus,
.register-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
    transform: translateY(-2px);
}

.login-card .form-label,
.register-card .form-label {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.login-card .btn-primary,
.register-card .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.login-card .form-check-input:checked,
.register-card .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Password Toggle Button */
.input-group .btn-outline-secondary {
    border-color: #e9ecef;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.input-group .btn-outline-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}



/* Benefits and Features Sections */
.login-benefits,
.register-features {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefit-item,
.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-item:hover,
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon,
.feature-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h5,
.feature-item h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #198754;
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border-left: 4px solid #198754;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #0dcaf0;
}

/* Responsive Design for Login/Register */
@media (max-width: 768px) {
    .login-hero,
    .register-hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .login-card .card-body,
    .register-card .card-body {
        padding: 2rem 1.5rem;
    }
    

    
    .benefit-item,
    .feature-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .login-card .card-body,
    .register-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .login-card .btn-primary,
    .register-card .btn-primary {
        width: 100%;
        padding: 15px 20px;
    }
    
    .benefit-item,
    .feature-item {
        padding: 1rem;
    }
    
    .benefit-icon i,
    .feature-icon i {
        font-size: 2rem !important;
    }
}

/* User Dashboard Styles */
.dashboard-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.welcome-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.user-stats {
    margin-top: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.stat-card h4 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-icon {
    color: var(--primary-color);
}

/* User Profile Card */
.user-profile-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid #f8f9fa;
}

.profile-avatar {
    color: var(--primary-color);
}

.profile-actions {
    margin-top: 1rem;
}

.profile-actions .btn {
    margin-bottom: 0.5rem;
}

/* Quick Actions Section */
.action-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.action-icon {
    color: var(--primary-color);
}

.action-card h5 {
    color: var(--text-dark);
}

/* Booking Cards */
.booking-card .card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.booking-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.booking-status .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
}

/* Enquiry Cards */
.enquiry-card .card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.enquiry-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.enquiry-status .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
}

/* Empty State */
.empty-state {
    padding: 3rem 1rem;
}

.empty-state i {
    color: var(--text-light);
}

.empty-state h4 {
    color: var(--text-light);
}

/* Timeline */
.timeline {
    position: relative;
}

.timeline-item {
    position: relative;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.timeline-icon {
    flex-shrink: 0;
}

.timeline-content h6 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Design for Dashboard */
@media (max-width: 768px) {
    .dashboard-hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .welcome-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .welcome-content p {
        text-align: center;
    }
    
    .user-stats {
        margin-top: 1.5rem;
    }
    
    .stat-card h4 {
        font-size: 2rem;
    }
    
    .user-profile-card {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .action-card {
        margin-bottom: 1rem;
    }
    
    .booking-card .card-body {
        padding: 1rem;
    }
    
    .timeline-item {
        text-align: center;
    }
    
    .timeline-icon {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 576px) {
    .welcome-content h1 {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-card h4 {
        font-size: 1.8rem;
    }
    
    .user-profile-card {
        padding: 1rem;
    }
    
    .action-card {
        padding: 1.5rem 1rem;
    }
    
    .action-icon i {
        font-size: 2rem !important;
    }
    
    .booking-card .row {
        flex-direction: column;
    }
    
    .booking-card .col-md-4 {
        width: 100%;
    }
    
    .booking-card .col-md-8 {
        width: 100%;
    }
    
    .booking-card img {
        height: 150px !important;
    }
}

/* Book Package Page Styles */
.package-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.package-info h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.package-highlights {
    margin-top: 2rem;
}

.highlight-item {
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
}

.highlight-item:hover {
    transform: translateY(-3px);
}

.highlight-item i {
    color: var(--primary-color);
}

.highlight-item strong {
    color: var(--text-dark);
}

.package-image-container {
    position: relative;
}

.package-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.package-image:hover {
    transform: scale(1.02);
}

/* Booking Form Styles */
.booking-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-form-section .card {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

.booking-form-section .card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-blue) 100%);
    border: none;
}

.booking-form-section .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.booking-form-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
    transform: translateY(-2px);
}

.booking-form-section .form-label {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.booking-form-section .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.booking-form-section .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Booking Summary */
.booking-summary {
    background: var(--light-blue);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
}

.booking-summary h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.summary-item {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
}

.summary-item strong {
    color: var(--text-dark);
}

/* Package Features */
.feature-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    color: var(--primary-color);
}

.feature-card h5 {
    color: var(--text-dark);
}

/* Related Packages */
.related-packages {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.package-card .card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.package-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.package-card .card-title {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.package-card .card-text {
    margin-bottom: 0.5rem;
}

.package-card .btn-outline-primary {
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-card .btn-outline-primary:hover {
    transform: translateY(-2px);
}

/* Alert Styles */
.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #0dcaf0;
}

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

.alert-info .alert-link:hover {
    text-decoration: underline;
}

/* Responsive Design for Book Package */
@media (max-width: 768px) {
    .package-hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .package-info h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .package-info p {
        text-align: center;
    }
    
    .package-highlights {
        margin-top: 1.5rem;
    }
    
    .highlight-item {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .package-image-container {
        margin-top: 2rem;
    }
    
    .booking-form-section .card-body {
        padding: 2rem 1.5rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .package-info h1 {
        font-size: 2rem;
    }
    
    .highlight-item {
        padding: 0.75rem;
    }
    
    .booking-form-section .card-body {
        padding: 1.5rem 1rem;
    }
    
    .booking-form-section .btn-primary {
        width: 100%;
        padding: 15px 20px;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon i {
        font-size: 2rem !important;
    }
    
    .booking-summary {
        padding: 1rem;
    }
    
    .summary-item {
        font-size: 0.9rem;
    }
}
