/* Blog Full Width & Schematic Layout */
.full-width-blog {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f5f5f5;
}
.full-width-blog .container-fluid {
    max-width: 1600px;
    margin: 0 auto;
}
.blog-list-item {
    transition: box-shadow 0.2s;
    border: 1px solid #eee;
}
.blog-list-item:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    border-color: var(--primary-color);
}
.blog-list-item img {
    max-height: 220px;
    object-fit: cover;
    width: 100%;
}
.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
}
.nav-pills .nav-link {
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 30px;
    margin: 0 8px;
    padding: 8px 24px;
    transition: background 0.2s, color 0.2s;
}
.nav-pills .nav-link:hover {
    background: var(--primary-dark);
    color: #fff;
}
.blog-section .row.g-4 {
    margin-left: 0;
    margin-right: 0;
}
.blog-list-item h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.blog-list-item .badge {
    font-size: 0.95rem;
    padding: 0.5em 1em;
    border-radius: 20px;
}
@media (max-width: 991.98px) {
    .full-width-blog .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .blog-list-item img {
        max-height: 160px;
    }
    .navbar-nav .nav-link {
        padding: 10px 0; /* Adjust padding for stacked links */
        margin: 0; /* Remove horizontal margin */
        text-align: center; /* Center align links */
        width: 100%; /* Make links take full width */
    }
}
@media (max-width: 575.98px) {
    .blog-list-item h2 {
        font-size: 1.1rem;
    }
    .nav-pills .nav-link {
        padding: 6px 12px;
        font-size: 0.95rem;
    }
}
/* Google Fonts */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/lato/Lato-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Caveat';
    src: url('../fonts/caveat/Caveat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Base Styles */
:root {
    --primary-color: #fc9700;
    --primary-dark: #e08800;
    --secondary-color: #333333;
    --light-color: #f5f5f5;
    --white-color: #ffffff;
    --dark-color: #222222;
    --text-color: #555555;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

h1, h2 {
    font-family: 'Montserrat Alternates', 'Poppins', sans-serif;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline-light {
    border: 2px solid var(--white-color);
    color: var(--white-color);
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background-color: rgba(0, 0, 0, 0.8);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: var(--box-shadow);
}

.navbar-brand img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.navbar-brand img:hover {
    opacity: 0.9;
}

.navbar-nav .nav-link {
    color: var(--white-color);
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--white-color);
    transition: var(--transition);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--white-color);
    transition: var(--transition);
}

.navbar-toggler-icon::before {
    transform: translateY(-7px);
}

.navbar-toggler-icon::after {
    transform: translateY(7px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
}
.navbar {
  position: relative; /* or fixed/sticky */
  z-index: 1000; /* Ensure navbar stays on top */
}

.booking-form {
  position: relative;
  z-index: 900; /* Lower than navbar */
  margin-top: 80px; /* Adjust based on navbar height */
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
    width: 100%;
    padding: 60px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: var(--white-color);
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-booking-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-right: 30px;
}

.hero-booking-form h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.hero-booking-form .form-group {
    margin-bottom: 15px;
}

.hero-booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.hero-booking-form .form-control {
    width: 100%;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hero-booking-form .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(252, 151, 0, 0.2);
}

.hero-booking-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    font-weight: 600;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: var(--white-color);
    font-size: 1.5rem;
    display: block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.scroll-down a:hover {
    background-color: var(--primary-color);
    transform: translateY(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.about-section .row.align-items-center {
    align-items: center !important;
    display: flex;
    flex-wrap: wrap;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

@media (max-width: 991.98px) {
    .about-section .row.align-items-center {
        flex-direction: column;
        align-items: stretch !important;
    }
    .about-content {
        margin-top: 30px;
        height: auto;
    }
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-image img {
    transition: var(--transition);
    width: 100%;
    height: auto;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.usp-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.usp-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(252, 151, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.usp-card:hover .usp-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.usp-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.usp-card p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.service-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(252, 151, 0, 0.1) 0%, rgba(252, 151, 0, 0) 100%);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background-color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-card ul {
    margin-top: 20px;
}

.service-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.service-card ul li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 5px;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.service-cta {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--box-shadow);
}

.service-cta h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.service-cta p {
    margin-bottom: 0;
    color: var(--text-color);
}

/* Destinations Section */
.destinations-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.nav-tabs {
    border-bottom: none;
    margin-bottom: 30px;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 25px;
    margin: 0 5px;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-tabs .nav-link i {
    margin-right: 8px;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.destination-item {
    background-color: var(--light-color);
    padding: 15px;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    color: var(--secondary-color);
}

.destination-item:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

.destination-cta {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(252, 151, 0, 0.05);
    border-radius: var(--border-radius);
}

.destination-cta p {
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Things to Do Section */
.things-to-do-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.activity-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.activity-image {
    overflow: hidden;
    height: 200px;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-content {
    padding: 20px;
}

.activity-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.activity-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.activity-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.activity-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.activity-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Day Trips Section */
.day-trips-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.day-trips-tabs .nav-pills .nav-link {
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 25px;
    margin: 0 5px;
    border-radius: 50px;
    transition: var(--transition);
}

.day-trips-tabs .nav-pills .nav-link i {
    margin-right: 8px;
}

.day-trips-tabs .nav-pills .nav-link:hover {
    color: var(--primary-color);
}

.day-trips-tabs .nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.day-trip-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.day-trip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.day-trip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.day-trip-info {
    padding: 20px;
}

.day-trip-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.day-trip-info p {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.day-trip-info p i {
    color: var(--primary-color);
    margin-right: 8px;
}

.day-trip-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.day-trip-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.day-trip-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.day-trips-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: rgba(252, 151, 0, 0.05);
    border-radius: var(--border-radius);
}

.day-trips-cta h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.day-trips-cta p {
    margin-bottom: 20px;
    color: var(--text-color);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/destinations/ella2.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--white-color);
    position: relative;
}

.contact-section .section-header h2,
.contact-section .section-header p {
    color: #fff;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.contact-info, .contact-form {
    position: relative;
    z-index: 1;
}

.contact-info h2, .contact-form h2 {
    color: var(--white-color);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(252, 151, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--white-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-social h4 {
    color: var(--white-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(252, 151, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    width: 100%;
    height: 45px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(252, 151, 0, 0.2);
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 150px;
}

.contact-form button[type="submit"] {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
    max-height: 50px;
    width: auto;
}

.footer-widget p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-widget h3 {
    color: var(--white-color);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
    margin-top: 3px;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white-color);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.copyright {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links li {
    margin-left: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-icon {
    color: var(--white-color);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
}

/* Thank You Modal */
.thank-you-content {
    text-align: center;
    padding: 20px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #28a745;
    margin: 0 auto 20px;
}

.thank-you-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.thank-you-content p {
    color: var(--text-color);
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-booking-form {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        margin-top: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-booking-form {
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
        margin: 0;
    }
    
    .usp-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .destination-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .footer-bottom .copyright,
    .footer-bottom-links {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-bottom-links li {
        margin: 0 10px;
    }
    
    .service-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .service-cta .btn {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    .hero-booking-form {
        width: 100%;
        margin-right: 0;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .destination-grid {
        grid-template-columns: 1fr; /* Ensure single column on very small screens */
    }
}