/* 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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.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;
}

.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 */
.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px 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;
    z-index: 2;
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.package-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

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

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

.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;
}

.package-actions {
    margin-top: auto;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.package-actions .btn {
    flex: 1;
    min-width: 120px;
}

/* 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;
    }
}
