:root {
    --primary-color: #ef3532;
    --primary-hover: #d32d2a;
    --secondary-color: #024e2d;
    --text-color: #333333;
    --light-bg: #fcfcfc;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .nav-link, .btn {
    font-family: 'Amaranth', sans-serif;
}

/* Top Bar */
.top-bar {
    background-color: var(--light-bg);
    border-bottom: 2px solid var(--secondary-color);
    font-size: 14px;
    padding: 8px 0;
}

.top-bar a, .top-bar span {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
}

.btn-top {
    border: 2px solid;
    border-radius: 20px;
    padding: 4px 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-top-sms { border-color: var(--secondary-color); color: var(--secondary-color); }
.btn-top-sms:hover { background: var(--secondary-color); color: #fff; }
.btn-top-email { border-color: var(--primary-color); color: var(--primary-color); }
.btn-top-email:hover { background: var(--primary-color); color: #fff; }

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.navbar-brand img {
    max-height: 60px;
}
.nav-link {
    font-weight: 700;
    color: var(--text-color) !important;
    padding: 10px 15px !important;
    text-transform: uppercase;
    font-size: 15px;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Carousel */
.carousel-item img {
    height: 500px;
    object-fit: cover;
    filter: brightness(80%);
}
.carousel-caption {
    bottom: 40%;
}
.carousel-caption h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: rgba(0,0,0,0.6);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}
.section-title span.text-primary-custom {
    color: var(--primary-color);
}
.section-title span.text-secondary-custom {
    color: var(--secondary-color);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Cards General */
.card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
    transition: transform 0.3s ease;
    height: 100%;
}
.card:hover {
    transform: translateY(-5px);
}

/* Trip Cards */
.trip-card img {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.trip-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
}

/* Destination Cards */
.dest-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}
.dest-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}
.dest-card:hover img {
    transform: scale(1.1);
}
.dest-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    text-align: left;
}
.dest-overlay h5 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Services Horizontal Card */
.service-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
}
.service-card img {
    width: 140px;
    object-fit: cover;
}
.service-body {
    padding: 20px;
}
.service-body h5 {
    color: var(--primary-color);
    font-weight: 700;
}

/* Activity Cards */
.activity-card {
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    display: block;
}
.activity-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}
.activity-card h6 {
    font-weight: 700;
    transition: color 0.3s;
}
.activity-card:hover h6 {
    color: var(--primary-color);
}

/* Footer & Enquiry */
.bg-secondary-custom {
    background-color: var(--secondary-color);
}
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}
.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    color: #fff;
}
.contact-info i {
    width: 30px;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    color: var(--primary-color);
}

 /* Page Banner */
 .page-banner {
    background: linear-gradient(rgba(2, 78, 45, 0.85), rgba(2, 78, 45, 0.85)), url('https://images.unsplash.com/photo-1599661046289-e31897846e41?auto=format&fit=crop&w=1500&q=80') center/cover;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}
.page-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.breadcrumb {
    justify-content: center;
    background: transparent;
    margin: 0;
    padding: 0;
}
.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}
.breadcrumb-item.active {
    color: var(--primary-color);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

/* Contact Details Styling */
.contact-info-block {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
}
.contact-info-block:last-child {
    border-bottom: none;
}
.contact-icon-box {
    background-color: rgba(239, 53, 50, 0.1); /* Light red bg */
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}
.contact-details h6 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.contact-details p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}
.contact-details a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-details a:hover {
    color: var(--primary-color);
}

/* Form Styling */
.enquiry-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-color);
}
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}
.form-control, .form-select {
    border-radius: 6px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(239, 53, 50, 0.25);
}
.required-star {
    color: var(--primary-color);
}