/* Main Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #333;
}

.text-danger {
    color: #e6332a !important;
}

.btn-danger {
    background-color: #e6332a;
    border-color: #e6332a;
}

.btn-danger:hover {
    background-color: #c4261d;
    border-color: #c4261d;
}

/* Navbar overrides */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding-top: 15px;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 0;
}

.logo-img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .logo-img {
        max-height: 40px;
    }
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333 !important;
    text-transform: capitalize;
    margin-right: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e6332a !important;
}

.btn-book-now {
    background-color: #e6332a;
    color: #fff !important;
    border-radius: 4px;
    padding: 8px 25px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
    border: 1px solid #e6332a;
}

.btn-book-now:hover {
    background-color: #c4261d;
    border-color: #c4261d;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(230, 51, 42, 0.2);
    color: #fff !important;
}



/* Hero Section */
.hero-bg {
    background: url("../images/header-bg.jpg") no-repeat center;
	background-size: contain;
    width: 100%;
    position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}


.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.hero-bg .overlay {
    position: relative;
    z-index: 1;
}

.info-card {
    transition: transform 0.3s ease;
    background: #fff;
}

.info-card:hover {
    transform: translateY(-5px);
}

/* Form Styling */
.form-control,
.form-select,
.input-group-text {
    border-color: #e0e0e0;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    background-color: #fff !important;
    /* Force white background */
}

.form-control:focus,
.form-select:focus {
    border-color: #e6332a;
    box-shadow: 0 0 0 0.2rem rgba(230, 51, 42, 0.1);
}

.form-label {
    color: #333;
    margin-bottom: 0.5rem;
}

/* Input group tweaks for seamless look */
.input-group-text {
    color: #999;
}

z-index: 3;
}

.is-invalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5zM6 8.2a.3.3 0 0 0 .3-.3.3.3 0 0 0-.3-.3.3.3 0 0 0-.3.3.3.3 0 0 0 .3.3z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

/* Info Box */
.info-box {
    background: #fff;
    transition: all 0.3s ease;
    border-color: #eee !important;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #e6332a !important;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 0;
}
.package-info{
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.timeline-box {
    background-color: #fff;
    border-color: #f0f0f0 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

/* Pricing Card Hover */
.pricing-card {
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Footer Links */
footer a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}


/* Proper bullet alignment */
.list-unstyled li {
    display: flex;
    align-items: flex-start;
}

.list-unstyled li span {
    line-height: 1.5;
    margin-top: 2px;
}
