/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    min-height: 100vh;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

/* Header */
header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@media (max-width: 768px) {
    header {
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* Top Navigation Bar */
.top-nav {
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 8px 0;
    transition: all 0.3s ease;
}

.top-nav.hidden {
    transform: translateY(-100%);
    opacity: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
}

nav {
    background: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.top-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-nav-left .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.top-nav-left .contact-item:hover {
    color: #1CA8CB;
    transform: translateX(3px);
}

.top-nav-left .contact-item:hover i {
    color: #fff;
    transform: scale(1.2);
}

.top-nav-left .contact-item i {
    color: #1CA8CB;
    font-size: 12px;
}

.top-nav-right .social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-nav-right .social-links a {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    transition: all 0.3s ease;
}

.top-nav-right .social-links a:hover {
    background: #1CA8CB;
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 768px) {
    .top-nav {
        display: none !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
        border: none !important;
        min-height: 0 !important;
        max-height: 0 !important;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo h1 {
    color: #fff;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
    white-space: nowrap;
}

.nav-links {
    list-style: none;
    display: flex;
    position: relative;
    gap: 15px;
}

.nav-links li {
    margin: 0;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;
}

/* Desktop Dropdown Toggle Styling */
.nav-links .dropdown-toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.nav-links .dropdown-toggle:hover {
    color: #ccc;
}

.nav-links a:hover {
    color: #ccc;
    transform: scale(1.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #ccc;
    transition: all 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 3px;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Remove button-like appearance on desktop */
@media (min-width: 769px) {
    .dropdown-toggle {
        background: transparent !important;
        border: none !important;
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(51, 51, 51, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 280px;
    z-index: 1000;
    border: 1px solid rgba(255,255,255,0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .dropdown:hover .dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        max-height: 0 !important;
    }
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    font-size: 14px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu a:hover {
    background: rgba(28, 168, 203, 0.8);
    color: white;
    transform: translateX(5px);
    padding-left: 25px;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu .view-all {
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    color: white;
    font-weight: 600;
    text-align: center;
    margin: 5px 10px 0;
    border-radius: 20px;
    border: none;
}

.dropdown-menu .view-all:hover {
    background: linear-gradient(135deg, #113D48, #1CA8CB);
    transform: translateX(0);
    padding-left: 20px;
    box-shadow: 0 5px 15px rgba(28,168,203,0.4);
}

.book-now-btn {
    margin-left: 15px;
    flex-shrink: 0;
}

.nav-book-btn {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    display: inline-block;
}

.nav-book-btn:hover {
    background: linear-gradient(45deg, #feca57, #ff6b6b);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
    color: white;
}

.contact-info {
    color: #fff;
    font-weight: bold;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: flex-start;
    height: 100vh;
    background: #f8f9fa;
    padding: 2rem;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    z-index: 10;
    position: relative;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-form {
    position: absolute;
    top: 150px;
    right: 50px;
    width: 280px;
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.hero-form h3 {
    margin: 0 0 1.5rem 0;
    color: #333;
    text-align: center;
}

.hero-form .quick-form input,
.hero-form .quick-form select,
.hero-form .quick-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 0.9rem;
}

.hero-form .quick-form input:focus,
.hero-form .quick-form select:focus,
.hero-form .quick-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

.hero-form .btn {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

.hero-form .btn:hover {
    background: #0056b3;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
    position: relative;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slider img:first-child {
    opacity: 1;
    z-index: 1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Sections */
section {
    padding: 4rem 0;
    width: 100%;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Great Vibes', cursive;
}

/* Fleet Section */
.fleet {
    background: linear-gradient(135deg, #1CA8CB 0%, #113D48 100%);
    margin: 0;
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
}

.fleet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 30s linear infinite;
}

.fleet h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.fleet-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    position: relative;
    z-index: 2;
}

.fleet-grid::-webkit-scrollbar {
    height: 8px;
}

.fleet-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.fleet-grid::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
}

.fleet-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}

.fleet-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 280px;
    flex-shrink: 0;
}

.fleet-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.3);
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
}

.fleet-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.fleet-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.fleet-content {
    padding: 1.5rem;
    position: relative;
}

.fleet-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
    transition: all 0.4s ease;
}

.fleet-card:hover .fleet-content h3 {
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.fleet-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.fleet-specs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.fleet-specs span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.fleet-card:hover .fleet-specs span {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.fleet-specs i {
    color: rgba(255,255,255,0.8);
    font-size: 10px;
}

.fleet-btn {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.3);
}

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

.fleet-btn:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

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

/* Fleet Card Animation Delays */
.fleet-card:nth-child(1) {
    animation: slideInUp 0.6s ease-out 0.1s both;
}

.fleet-card:nth-child(2) {
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.fleet-card:nth-child(3) {
    animation: slideInUp 0.6s ease-out 0.3s both;
}

.fleet-card:nth-child(4) {
    animation: slideInUp 0.6s ease-out 0.4s both;
}

.fleet-card:nth-child(5) {
    animation: slideInUp 0.6s ease-out 0.5s both;
}

/* Packages */
.packages {
    background: #eee;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 4rem 2rem;
}

.package-grid, .hotel-grid, .activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .package-grid, .hotel-grid, .activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .package-grid, .hotel-grid, .activity-grid {
        grid-template-columns: 1fr;
    }
}

.package-card, .hotel-card, .activity-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    animation: bounceIn 0.6s ease-out;
    position: relative;
}

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

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

.package-card > div:not(img),
.package-card > h3,
.package-card > p,
.package-card > a {
    padding: 0 1.5rem;
}

.package-card > div:first-of-type {
    padding-top: 1.5rem;
}

.package-card > a {
    padding-bottom: 1.5rem;
}

.package-duration {
    background: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.package-locations {
    color: #666;
    font-size: 0.9rem;
    margin: 1rem 0;
}

.package-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff6b6b;
    margin: 1rem 0;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.package-card:hover, .hotel-card:hover, .activity-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.package-card img, .hotel-card img, .activity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover img, .hotel-card:hover img, .activity-card:hover img {
    transform: scale(1.1);
}

.package-card h3, .hotel-card h3, .activity-card h3 {
    padding: 1rem;
    font-size: 1.5rem;
    color: #2d3436;
}

.package-card p, .hotel-card p, .activity-card p {
    padding: 0 1rem;
    color: #636e72;
}

.package-card .btn, .hotel-card .btn, .activity-card .btn {
    margin: 1rem;
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #1CA8CB 0%, #113D48 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(28,168,203,0.3);
}

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

.view-all-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #113D48 0%, #1CA8CB 100%);
    box-shadow: 0 15px 40px rgba(28,168,203,0.4);
    color: white;
    border-color: rgba(255,255,255,0.2);
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn i {
    font-size: 16px;
    transition: all 0.4s ease;
}

.view-all-btn:hover i:first-child {
    transform: scale(1.2) rotate(360deg);
}

.view-all-btn:hover i:last-child {
    transform: translateX(5px);
}

/* Package Detail Pages */
.package-detail {
    padding: 120px 0 80px;
    background: #f8f9fa;
}

.package-header {
    background: white;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 0;
}

.package-header img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.package-info {
    padding: 2rem;
}

.package-info h1 {
    font-size: 2.5rem;
    color: #0A1F24;
    margin-bottom: 1rem;
}

.package-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #687179;
    font-weight: 600;
}

.package-meta .price {
    color: #1CA8CB;
    font-size: 1.2rem;
    font-weight: 700;
}

.itinerary {
    background: white;
    padding: 2rem;
    margin-bottom: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.itinerary h2 {
    color: #0A1F24;
    margin-bottom: 2rem;
    text-align: center;
}

.day-card {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 5px solid #1CA8CB;
    transition: all 0.3s ease;
}

.day-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(28,168,203,0.2);
}

.day-number {
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.day-content h3 {
    color: #0A1F24;
    margin-bottom: 1rem;
}

.day-content ul {
    list-style: none;
    padding: 0;
}

.day-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #687179;
}

.day-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1CA8CB;
    font-weight: bold;
}

.package-includes {
    background: white;
    padding: 2rem;
    margin-bottom: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.package-includes h2 {
    color: #0A1F24;
    margin-bottom: 2rem;
    text-align: center;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.include-item:hover {
    background: #1CA8CB;
    color: white;
    transform: translateY(-5px);
}

.include-item i {
    font-size: 1.5rem;
    color: #1CA8CB;
    transition: all 0.3s ease;
}

.include-item:hover i {
    color: white;
}

.booking-section {
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    padding: 3rem 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.booking-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    color: #333;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #666;
    font-weight: 500;
}

.booking-form select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    color: #333;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.booking-form select option {
    background: white;
    color: #333;
}

.booking-form button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: 2px solid #28a745;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.booking-form button:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40,167,69,0.4);
    border-color: #20c997;
}

@media (max-width: 768px) {
    .package-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .day-card {
        flex-direction: column;
        text-align: center;
    }
    
    .day-number {
        align-self: center;
    }
}

/* Tour Details Page Structure */
.header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #333;
    z-index: 1000;
    padding: 1rem 0;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-main .logo h2 {
    color: white;
    margin: 0;
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: #1CA8CB;
}

.breadcrumb-section {
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    padding: 150px 0 80px;
    color: white;
}

.breadcrumb-content h1 {
    color: white;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.tour-details-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.tour-gallery {
    margin-bottom: 3rem;
}

.tour-gallery .main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.gallery-thumbs {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.thumb-img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.tour-overview {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlights-list i {
    color: #1CA8CB;
}

.detailed-itinerary {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.itinerary-day {
    margin-bottom: 2rem;
    border-left: 4px solid #1CA8CB;
    padding-left: 2rem;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.day-number {
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.timeline {
    padding-left: 1rem;
}

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

.timeline-item .time {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    color: #1CA8CB;
    min-width: 100px;
    text-align: center;
}

.inclusions-exclusions {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.inclusions h3, .exclusions h3 {
    color: #0A1F24;
    margin-bottom: 1rem;
}

.inclusions h3 i {
    color: #28a745;
}

.exclusions h3 i {
    color: #dc3545;
}

.inclusions ul, .exclusions ul {
    list-style: none;
    padding: 0;
}

.inclusions li, .exclusions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.tour-sidebar {
    position: sticky;
    top: 120px;
}

.booking-widget, .tour-info-widget, .contact-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-info {
    text-align: center;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2);
}

.price-info .price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.price-info .per-person {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 500;
}

.booking-form .form-group {
    margin-bottom: 1rem;
}

.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #eee;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
    border-color: #1CA8CB;
    outline: none;
}

.tour-info-list {
    list-style: none;
    padding: 0;
}

.tour-info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.tour-info-list i {
    color: #1CA8CB;
    width: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    border-left: 4px solid #1CA8CB;
}

.contact-item i {
    color: #1CA8CB;
    width: 20px;
    font-size: 1.1rem;
}

.contact-item span {
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-menu ul {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-thumbs {
        flex-wrap: wrap;
    }
    
    .day-header {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    margin: 0;
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="1" fill="rgba(28,168,203,0.1)"/><circle cx="70" cy="70" r="1.5" fill="rgba(17,61,72,0.1)"/></svg>') repeat;
    animation: float 40s linear infinite;
}

.services h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #0A1F24;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 2rem 1.5rem 1.5rem;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(28,168,203,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0px 15px 40px 0px rgba(28,168,203,0.2);
    border-color: rgba(28,168,203,0.3);
    background: rgba(255,255,255,0.95);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #1CA8CB 0%, #113D48 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(28,168,203,0.2);
    animation: pulse 2s infinite;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 0 30px rgba(28,168,203,0.4);
}

.service-icon i {
    font-size: 35px;
    color: white;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.2);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0A1F24;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-content h3 {
    color: #1CA8CB;
    transform: translateY(-5px);
}

.service-content p {
    font-size: 16px;
    color: #687179;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    flex: 1;
}

.service-card:hover .service-content p {
    color: #0A1F24;
}

.service-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #1CA8CB 0%, #113D48 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    margin-top: auto;
}

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

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(28,168,203,0.4);
    border-color: rgba(255,255,255,0.3);
    color: white;
}

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

/* Service Card Animation Delays */
.service-card:nth-child(1) {
    animation: slideInUp 0.6s ease-out 0.1s both;
}

.service-card:nth-child(2) {
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.service-card:nth-child(3) {
    animation: slideInUp 0.6s ease-out 0.3s both;
}

.service-card:nth-child(4) {
    animation: slideInUp 0.6s ease-out 0.4s both;
}

/* Activities */
.activities {
    background: #fff3e0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 4rem 2rem;
}

.activity-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

.category-card {
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

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

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: rotateY(360deg);
}

.category-icon i {
    font-size: 24px;
    color: white;
}

.category-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
    flex: 1;
    margin-bottom: 1rem;
}

.activity-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
    transform: rotateY(360deg);
}

.activity-icon i {
    font-size: 24px;
    color: white;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 0;
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="80" r="1" fill="rgba(28,168,203,0.1)"/><circle cx="80" cy="20" r="1.5" fill="rgba(17,61,72,0.1)"/></svg>') repeat;
    animation: float 30s linear infinite;
}

.about-wrapper {
    padding-bottom: 0;
    position: relative;
    z-index: 2;
}

.about-wrapper .about-image {
    position: relative;
    max-width: 500px;
    z-index: 1;
}

.about-wrapper .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.about-wrapper .about-image:hover img {
    transform: scale(1.05);
    box-shadow: 0px 8px 35px 0px rgba(0, 0, 0, 0.2);
}

.about-wrapper .about-image .about-image-2 {
    max-width: 300px;
    position: absolute;
    right: -40%;
    bottom: -25%;
    z-index: 2;
}

.about-wrapper .about-image .about-image-2 img {
    border-radius: 15px;
    border: 8px solid var(--white);
}

.about-wrapper .about-image .about-image-2 .about-tour {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #1CA8CB 0%, #113D48 100%);
    position: absolute;
    left: 20px;
    right: 20px;
    border-radius: 15px;
    bottom: 25px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.about-wrapper .about-image .about-image-2 .about-tour:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 35px 0px rgba(0, 0, 0, 0.3);
}

.about-wrapper .about-image .about-image-2 .about-tour .content h4 {
    font-size: 18px;
    color: var(--white);
    margin: 0;
    font-weight: 700;
}

.about-wrapper .about-image .about-image-2 .about-tour .content span {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
}

.about-wrapper .about-content {
    position: relative;
    z-index: 2;
    padding-left: 2rem;
}

.about-wrapper .about-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0A1F24;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-wrapper .about-content > p {
    font-size: 16px;
    color: #687179;
    line-height: 1.6;
    margin-bottom: 18px;
}

.about-cta {
    margin-top: 20px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1CA8CB 0%, #113D48 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(28,168,203,0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #113D48 0%, #1CA8CB 100%);
    box-shadow: 0 6px 20px rgba(28,168,203,0.4);
    color: white;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

.read-more-btn i {
    font-size: 12px;
    transition: all 0.3s ease;
}

.about-wrapper .about-content .about-area {
    position: relative;
    z-index: 1;
}

.about-wrapper .about-content .about-area .about-items {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255,255,255,0.8);
    border-radius: 15px;
    border: 1px solid rgba(28,168,203,0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.about-wrapper .about-content .about-area .about-items:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.95);
    box-shadow: 0px 8px 25px 0px rgba(28,168,203,0.15);
    border-color: rgba(28,168,203,0.3);
}

.about-wrapper .about-content .about-area .about-items .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    flex-shrink: 0;
    text-align: center;
    background: linear-gradient(135deg, #1CA8CB 0%, #113D48 100%);
    color: white;
    font-size: 24px;
    transition: all 0.4s ease;
    position: relative;
}

.about-wrapper .about-content .about-area .about-items:hover .icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(28,168,203,0.4);
}

.about-wrapper .about-content .about-area .about-items .content {
    flex: 1;
}

.about-wrapper .about-content .about-area .about-items .content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0A1F24;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.about-wrapper .about-content .about-area .about-items:hover .content h4 {
    color: #1CA8CB;
}

.about-wrapper .about-content .about-area .about-items .content p {
    font-size: 16px;
    color: #687179;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, #1CA8CB 0%, #113D48 100%);
    padding: 80px 2rem;
    margin: 2rem auto;
    border-radius: 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

.why-choose-us h2 {
    color: white;
    margin-bottom: 4rem;
    font-size: 48px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.feature-box {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature-box .icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    color: white;
    font-size: 35px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.feature-box:hover .icon {
    transform: rotateY(360deg);
    background: linear-gradient(45deg, rgba(255,255,255,0.3), rgba(255,255,255,0.2));
    border-color: rgba(255,255,255,0.4);
}

.feature-box .icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.feature-box h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 22px;
    font-weight: 700;
    transition: all 0.4s ease;
}

.feature-box:hover h4 {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.feature-box p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 1.6;
    transition: all 0.4s ease;
}

.feature-box:hover p {
    color: rgba(255,255,255,1);
}

/* Client Count */
.client-count {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 2rem;
    margin: 2rem auto;
    border-radius: 20px;
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
    position: relative;
    overflow: hidden;
}

.client-count::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="rgba(28,168,203,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(17,61,72,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(28,168,203,0.1)"/></svg>') repeat;
    animation: float 25s linear infinite reverse;
}

.count-box {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    border: 1px solid rgba(28,168,203,0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.count-box:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255,255,255,0.95);
    box-shadow: 0 25px 50px rgba(28,168,203,0.2);
    border-color: rgba(28,168,203,0.3);
}

.count-box h3 {
    font-size: 4rem;
    color: #1CA8CB;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1;
    position: relative;
    transition: all 0.4s ease;
}

.count-box:hover h3 {
    color: #113D48;
    text-shadow: 0 0 20px rgba(28,168,203,0.3);
    transform: scale(1.1);
}

.count-box h3::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1CA8CB, #113D48);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.count-box:hover h3::before {
    width: 80px;
    height: 6px;
    box-shadow: 0 0 15px rgba(28,168,203,0.5);
}

.count-box p {
    color: #687179;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.count-box:hover p {
    color: #0A1F24;
    transform: translateY(-5px);
}

.count-box::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #1CA8CB, #113D48);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.count-box:hover::after {
    opacity: 0.2;
    transform: scale(1.2) rotate(180deg);
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter {
    animation: countUp 1s ease-out;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #1CA8CB 0%, #113D48 100%);
    border-radius: 20px;
    margin: 2rem auto;
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 35s linear infinite;
}

.testimonials h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    position: relative;
    z-index: 2;
}

.testimonial-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.testimonial-images {
    flex: 1;
    position: relative;
}

.testimonial-image {
    display: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.testimonial-image.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-image:hover img {
    transform: scale(1.05);
}

.testimonial-reviews {
    flex: 1;
    position: relative;
}

.testimonial-card {
    display: none;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.testimonial-card.active {
    display: block;
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info span {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #ffd700;
    font-size: 16px;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-6, .col-md-3 {
    padding: 0 15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .col-lg-6, .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .about-wrapper .about-image .about-image-2 {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 2rem;
    }
}

/* Contact */
.contact {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 80px 2rem;
    margin: 2rem auto;
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 25s linear infinite;
}

.contact h2 {
    color: #0A1F24;
    text-align: center;
    margin-bottom: 4rem;
    font-size: 48px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.contact .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    flex: 1;
    max-width: 400px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-item:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.3);
}

.contact-info-item .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-info-item:hover .icon {
    transform: rotateY(360deg) scale(1.1);
    background: rgba(255,255,255,0.3);
}

.contact-info-item .content h4 {
    color: #0A1F24;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-info-item .content p {
    color: #687179;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.enquiry-form {
    flex: 1;
    max-width: 500px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.enquiry-form h3 {
    color: #0A1F24;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    background: #f8f9fa;
    color: #333;
    font-size: 16px;
    transition: all 0.4s ease;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: #aaa;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: #1CA8CB;
    background: white;
    outline: none;
    box-shadow: 0 5px 15px rgba(28,168,203,0.15);
}

.enquiry-form button {
    width: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 18px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.enquiry-form button::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;
}

.enquiry-form button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.2));
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.enquiry-form button:hover::before {
    left: 100%;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

.social-links a {
    color: #fff;
    margin: 0 15px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2) rotate(360deg);
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        margin-top: 80px;
    }

    .contact {
        flex-direction: column;
    }

    .enquiry-form {
        margin-left: 0;
        margin-top: 2rem;
    }
}
/* Footer Styles */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-section h3 {
    color: #1CA8CB;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: #1CA8CB;
    border-radius: 2px;
}

.footer-info h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-info p {
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
}

.footer-info i {
    color: #1CA8CB;
    margin-top: 3px;
    min-width: 16px;
    flex-shrink: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    padding: 7px 0;
    border-bottom: 1px solid #2a2a2a;
}

.footer-section ul li:last-child {
    border-bottom: none;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-section ul li a::before {
    content: 'â€º';
    color: #1CA8CB;
    font-size: 18px;
    line-height: 1;
}

.footer-section ul li a:hover {
    color: #1CA8CB;
    padding-left: 5px;
}

.footer-btn {
    background: #1CA8CB;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.footer-btn:hover {
    background: #113D48;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #aaa;
    font-size: 13px;
    margin: 0;
}

.footer-bottom .social-links {
    display: flex;
    gap: 10px;
}

.footer-bottom .social-links a {
    width: 35px;
    height: 35px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 0;
}

.footer-bottom .social-links a:hover {
    background: #1CA8CB;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
}
/* Hero Form Position Adjustment */
.hero-form {
    top: 50px !important;
    max-height: 85vh;
    overflow-y: auto;
}

.quick-form {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

.quick-form textarea {
    rows: 2 !important;
    min-height: 60px;
}

@media (max-width: 768px) {
    .hero-form {
        position: relative !important;
        top: 0 !important;
        max-height: none;
        margin-top: 30px;
    }
}
/* Contact Form Styling */
.enquiry-form select,
.enquiry-form input[type="date"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: white;
}

.enquiry-form select:focus,
.enquiry-form input[type="date"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.enquiry-form select option {
    padding: 8px;
}

/* Ensure consistent styling for all form elements */
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    font-family: inherit;
    transition: all 0.3s ease;
}

.enquiry-form input:hover,
.enquiry-form select:hover,
.enquiry-form textarea:hover {
    border-color: #007bff;
}
/* Updated Contact Form Styling */
.enquiry-form select,
.enquiry-form input[type="date"] {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 16px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.enquiry-form select:focus,
.enquiry-form input[type="date"]:focus {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.enquiry-form select option {
    background: #333;
    color: white;
    padding: 8px;
}

.enquiry-form select::placeholder {
    color: rgba(255,255,255,0.7);
}
/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Header */
    nav {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 10px;
        margin: 15px 0;
    }
    
    .book-now-btn {
        margin: 0;
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        padding: 1rem;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 1rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-form {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-top: 20px;
        padding: 1rem;
    }
    
    /* Contact Section */
    .contact .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info,
    .enquiry-form {
        max-width: 100%;
    }
    
    /* Testimonials */
    .testimonial-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Section Headings */
    section h2 {
        font-size: 2rem;
    }
    
    .fleet h2,
    .services h2,
    .why-choose-us h2,
    .testimonials h2,
    .contact h2,
    .about-wrapper .about-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .package-grid,
    .service-grid,
    .activity-categories {
        grid-template-columns: 1fr;
    }
    
    .fleet-grid {
        flex-direction: column;
    }
    
    .fleet-card {
        min-width: 100%;
    }
}
/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #333;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .book-now-btn {
        display: none;
    }
    
    .nav-links.active ~ .book-now-btn {
        display: block;
        position: fixed;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }
}
/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(17, 61, 72, 0.9);
        box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 400px;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 15px 20px;
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        margin-bottom: 5px;
    }
    
    .dropdown-menu a {
        padding: 10px 30px;
        font-size: 13px;
    }
    
    .nav-links li {
        margin: 10px 0;
        width: 90%;
    }
}
/* New Font Styling */
h1, .logo h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Transparent Hero Form */
.hero-form {
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
}

.hero-form h3 {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 600;
}

.hero-form .quick-form input,
.hero-form .quick-form select,
.hero-form .quick-form textarea {
    background: rgba(255,255,255,0.15) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    color: white !important;
    backdrop-filter: blur(10px);
}

.hero-form .quick-form input::placeholder,
.hero-form .quick-form select::placeholder,
.hero-form .quick-form textarea::placeholder {
    color: rgba(255,255,255,0.8) !important;
}

.hero-form .quick-form input:focus,
.hero-form .quick-form select:focus,
.hero-form .quick-form textarea:focus {
    border-color: rgba(255,255,255,0.6) !important;
    background: rgba(255,255,255,0.2) !important;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.hero-form .quick-form select option {
    background: rgba(0,0,0,0.9);
    color: white;
}

.hero-form .btn {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1)) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    color: white !important;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-form .btn:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.2)) !important;
    border-color: rgba(255,255,255,0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* Make Quick Booking Form Wider */
.hero-form {
    width: 350px !important;
    padding: 2rem !important;
}

@media (max-width: 768px) {
    .hero-form {
        width: 100% !important;
        max-width: 400px;
        margin: 0 auto;
    }
}
/* Service Pages CSS Fixes */

/* Add Google Fonts to all service pages */
.tour-details-section h1,
.tour-details-section h2,
.tour-details-section h3,
.breadcrumb-content h1 {
    font-family: 'Playfair Display', serif;
}

/* Breadcrumb Section Styling */
.breadcrumb-section {
    background: linear-gradient(135deg, #1CA8CB 0%, #113D48 100%);
    padding: 120px 0 60px;
    color: white;
    margin-top: 70px;
}

.breadcrumb-content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255,255,255,0.6);
}

/* Tour Details Section */
.tour-details-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.tour-details-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tour-details-section .row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.tour-details-section .col-lg-8 {
    flex: 2;
    min-width: 300px;
}

.tour-details-section .col-lg-4 {
    flex: 1;
    min-width: 300px;
}

/* Gallery Styling */
.tour-gallery {
    margin-bottom: 40px;
}

.tour-gallery .main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-thumbs {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumb-img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumb-img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Content Sections */
.tour-overview,
.detailed-itinerary,
.inclusions-exclusions {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.tour-overview h2,
.detailed-itinerary h2 {
    color: #0A1F24;
    margin-bottom: 20px;
    font-size: 2rem;
}

.tour-overview h3 {
    color: #1CA8CB;
    margin: 30px 0 20px 0;
    font-size: 1.5rem;
}

/* Highlights List */
.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlights-list i {
    color: #1CA8CB;
    font-size: 1.2rem;
    width: 20px;
}

/* Itinerary Days */
.itinerary-day {
    margin-bottom: 30px;
    border-left: 4px solid #1CA8CB;
    padding-left: 30px;
    position: relative;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.day-number {
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(28,168,203,0.3);
}

.day-header h3 {
    color: #0A1F24;
    margin: 0;
    font-size: 1.5rem;
}

/* Timeline */
.timeline {
    padding-left: 20px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.timeline-item .time {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: #1CA8CB;
    min-width: 120px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-item .activity h4 {
    color: #0A1F24;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-item .activity p {
    color: #687179;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-item .activity ul {
    list-style: none;
    padding: 0;
}

.timeline-item .activity ul li {
    padding: 5px 0;
    color: #687179;
    position: relative;
    padding-left: 20px;
}

.timeline-item .activity ul li:before {
    content: '•';
    color: #1CA8CB;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Inclusions/Exclusions */
.inclusions-exclusions .row {
    display: flex;
    gap: 30px;
}

.inclusions-exclusions .col-md-6 {
    flex: 1;
}

.inclusions h3,
.exclusions h3 {
    color: #0A1F24;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inclusions h3 i {
    color: #28a745;
}

.exclusions h3 i {
    color: #dc3545;
}

.inclusions ul,
.exclusions ul {
    list-style: none;
    padding: 0;
}

.inclusions ul li,
.exclusions ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #687179;
}

/* Sidebar */
.tour-sidebar {
    position: sticky;
    top: 100px;
}

.booking-widget,
.tour-info-widget,
.contact-widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.booking-widget h3,
.tour-info-widget h3,
.contact-widget h3 {
    color: #0A1F24;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* Price Info */
.price-info {
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.price-info .price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-info .per-person {
    font-size: 1rem;
    opacity: 0.9;
}

/* Booking Form */
.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #1CA8CB;
    outline: none;
    box-shadow: 0 0 10px rgba(28,168,203,0.2);
}

.booking-form .btn {
    width: 100%;
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28,168,203,0.3);
}

/* Tour Info List */
.tour-info-list {
    list-style: none;
    padding: 0;
}

.tour-info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.tour-info-list li:last-child {
    border-bottom: none;
}

.tour-info-list i {
    color: #1CA8CB;
    width: 20px;
    font-size: 1.1rem;
}

/* Contact Widget */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1CA8CB;
}

.contact-item i {
    color: #1CA8CB;
    width: 20px;
    font-size: 1.1rem;
}

.contact-item span {
    color: #0A1F24;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .breadcrumb-content h1 {
        font-size: 2rem;
    }
    
    .tour-details-section .row {
        flex-direction: column;
        gap: 30px;
    }
    
    .tour-details-section .col-lg-8,
    .tour-details-section .col-lg-4 {
        flex: none;
        width: 100%;
    }
    
    .tour-overview,
    .detailed-itinerary,
    .inclusions-exclusions {
        padding: 20px;
    }
    
    .day-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-item .time {
        align-self: center;
    }
    
    .inclusions-exclusions .row {
        flex-direction: column;
        gap: 20px;
    }
    
    .gallery-thumbs {
        justify-content: center;
    }
    
    .tour-sidebar {
        position: static;
    }
}

@media (max-width: 480px) {
    .breadcrumb-section {
        padding: 100px 0 40px;
    }
    
    .breadcrumb-content h1 {
        font-size: 1.5rem;
    }
    
    .tour-gallery .main-image img {
        height: 250px;
    }
    
    .day-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .booking-widget,
    .tour-info-widget,
    .contact-widget {
        padding: 20px;
    }
}
/* Dropdown Menu Styling */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #333;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu a:hover {
    background: #1CA8CB;
    color: white;
    padding-left: 25px;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu .view-all {
    background: #1CA8CB;
    color: white;
    font-weight: 600;
    text-align: center;
    margin: 5px 10px;
    border-radius: 5px;
}

.dropdown-menu .view-all:hover {
    background: #0A1F24;
    padding-left: 20px;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #444;
        margin-left: 20px;
        border-radius: 0;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 14px;
    }
}
/* About Us Page Styles */
.about-details-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-details-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-details-section .row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-details-section .col-lg-6 {
    flex: 1;
}

.about-image-section {
    position: relative;
}

.main-about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-badge h3 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
}

.experience-badge p {
    margin: 5px 0 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.about-content-section h2 {
    font-size: 2.5rem;
    color: #0A1F24;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.about-content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #687179;
    margin-bottom: 25px;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-content h4 {
    color: #0A1F24;
    margin-bottom: 8px;
    font-size: 18px;
}

.feature-content p {
    color: #687179;
    margin: 0;
    font-size: 14px;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: white;
}

.mission-vision-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-vision-section .row {
    display: flex;
    gap: 30px;
}

.mission-vision-section .col-lg-4 {
    flex: 1;
}

.mission-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.mission-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mission-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.mission-card .card-icon i {
    font-size: 30px;
    color: white;
}

.mission-card h3 {
    color: #0A1F24;
    margin-bottom: 20px;
    font-size: 24px;
}

.mission-card p {
    color: #687179;
    line-height: 1.6;
}

/* Services Overview Section */
.services-overview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0A1F24;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-header p {
    font-size: 18px;
    color: #687179;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-overview-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-overview-card .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-overview-card .service-icon i {
    font-size: 28px;
    color: white;
}

.service-overview-card h4 {
    color: #0A1F24;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-overview-card p {
    color: #687179;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

.why-choose-content {
    padding-right: 40px;
}

.choose-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
}

.choose-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.choose-text h4 {
    color: #0A1F24;
    margin-bottom: 10px;
    font-size: 20px;
}

.choose-text p {
    color: #687179;
    line-height: 1.6;
    margin: 0;
}

.choose-image {
    position: relative;
}

.choose-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.stats-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: #1CA8CB;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    color: #0A1F24;
    margin: 0;
    font-weight: 600;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28,168,203,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    color: #1CA8CB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0A1F24;
    color: white;
    transform: translateY(-3px);
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h4 {
    color: #0A1F24;
    margin-bottom: 8px;
    font-size: 20px;
}

.member-info p {
    color: #1CA8CB;
    margin-bottom: 5px;
    font-weight: 600;
}

.member-info span {
    color: #687179;
    font-size: 14px;
}

/* Contact Page Styles */
.contact-main-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-main-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-main-section .row {
    display: flex;
    gap: 40px;
}

.contact-main-section .col-lg-8 {
    flex: 2;
}

.contact-main-section .col-lg-4 {
    flex: 1;
}

.contact-form-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.main-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.main-contact-form .form-group {
    flex: 1;
}

.main-contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #0A1F24;
    font-weight: 600;
}

.main-contact-form input,
.main-contact-form select,
.main-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.main-contact-form input:focus,
.main-contact-form select:focus,
.main-contact-form textarea:focus {
    border-color: #1CA8CB;
    outline: none;
    box-shadow: 0 0 15px rgba(28,168,203,0.2);
}

.submit-btn {
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(28,168,203,0.4);
}

/* Contact Sidebar */
.contact-info-sidebar {
    position: sticky;
    top: 100px;
}

.contact-card,
.quick-links-card,
.social-media-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.card-header h3 {
    color: #0A1F24;
    margin-bottom: 10px;
    font-size: 22px;
}

.card-header p {
    color: #687179;
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.contact-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    color: white;
    font-size: 18px;
}

.detail-content h4 {
    color: #0A1F24;
    margin-bottom: 8px;
    font-size: 16px;
}

.detail-content p {
    color: #687179;
    margin-bottom: 5px;
    font-weight: 600;
}

.detail-content small {
    color: #999;
    font-size: 12px;
}

.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 15px;
}

.quick-links a {
    color: #687179;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    color: #1CA8CB;
    padding-left: 10px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-btn.facebook {
    background: #f8f9fa;
    color: #1877f2;
}

.social-btn.instagram {
    background: #f8f9fa;
    color: #e4405f;
}

.social-btn.youtube {
    background: #f8f9fa;
    color: #ff0000;
}

.social-btn.twitter {
    background: #f8f9fa;
    color: #1da1f2;
}

.social-btn:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-details-section .row,
    .why-choose-section .row,
    .contact-main-section .row {
        flex-direction: column;
        gap: 40px;
    }
    
    .main-contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .about-content-section,
    .why-choose-content {
        padding-right: 0;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .mission-vision-section .row {
        flex-direction: column;
    }
    
    .stats-overlay {
        flex-direction: column;
        gap: 20px;
    }
}
/* Activity Category Button */
.category-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.category-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(28,168,203,0.4);
    color: white;
}

/* WhatsApp Chat Widget */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
}

.whatsapp-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-chat-button i {
    font-size: 28px;
    color: white;
}

.chat-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-chat-button:hover .chat-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    max-height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.chat-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}

.chat-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.online-status {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.chat-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-close:hover {
    background: rgba(255,255,255,0.2);
}

.chat-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
    background: #f0f0f0;
}

.chat-message {
    margin-bottom: 15px;
}

.bot-message {
    background: white;
    padding: 15px;
    border-radius: 15px 15px 15px 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

.bot-message p {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.message-time {
    font-size: 11px;
    color: #999;
    display: block;
    text-align: right;
}

.chat-footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.quick-reply {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.quick-reply:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.chat-input-area {
    display: flex;
    gap: 10px;
    align-items: center;
}

#chatInput {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

#chatInput:focus {
    border-color: #25D366;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.2);
}

#sendChatBtn {
    width: 40px;
    height: 40px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#sendChatBtn:hover {
    background: #128C7E;
    transform: scale(1.1);
}

#sendChatBtn i {
    font-size: 16px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .whatsapp-chat-box {
        width: 300px;
        bottom: 70px;
        right: -10px;
    }
    
    .whatsapp-chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-chat-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-chat-button i {
        font-size: 24px;
    }
    
    .chat-tooltip {
        display: none;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(28, 168, 203, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 9998;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(28, 168, 203, 0.6);
    background: linear-gradient(135deg, #113D48, #1CA8CB);
}

.scroll-to-top i {
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Mobile positioning adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 85px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top i {
        font-size: 16px;
    }
    
    .whatsapp-chat-widget {
        bottom: 15px;
        right: 15px;
    }
}
/* About Section Read More Button */
.about-cta {
    margin-top: 30px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #1CA8CB 0%, #113D48 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(28,168,203,0.3);
}

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

.read-more-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #113D48 0%, #1CA8CB 100%);
    box-shadow: 0 15px 40px rgba(28,168,203,0.4);
    color: white;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.read-more-btn i {
    font-size: 14px;
    transition: all 0.4s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .read-more-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}


/* Footer Credit Link */
.footer-credit {
    color: #1CA8CB;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-credit:hover {
    color: #fff;
    text-decoration: underline;
}


/* Mobile Dropdown Fix */
@media (max-width: 768px) {
    /* Force mobile dropdown visibility rules to win against earlier blocks */
    .nav-links .dropdown-menu {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        visibility: hidden !important;
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    .nav-links .dropdown.active > .dropdown-menu {
        display: block !important;
        max-height: 500px !important;
        overflow-y: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 10px 0 !important;
    }

    .dropdown-menu {
        margin-top: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        padding: 0 !important;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px !important;
        padding: 10px 0 !important;
    }
    
    .dropdown-toggle {
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg) !important;
    }
    
    .dropdown-menu a {
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
}
/* Similar Destinations Section */
.similar-destinations {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.similar-destinations h2 {
    color: #0A1F24;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.destination-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.destination-card h4 {
    padding: 15px;
    margin: 0;
    color: #0A1F24;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.destination-card:hover h4 {
    background: #1CA8CB;
    color: white;
}

/* Similar Destinations Card Section - Footer Above */
.similar-destinations-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 2rem;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.similar-destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="80" r="1" fill="rgba(28,168,203,0.1)"/><circle cx="80" cy="20" r="1.5" fill="rgba(17,61,72,0.1)"/></svg>') repeat;
    animation: float 30s linear infinite;
}

.similar-destinations-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #0A1F24;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
}

.destinations-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-feature-card {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(28,168,203,0.1);
}

.destination-feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: rgba(28,168,203,0.3);
    background: rgba(255,255,255,0.95);
}

.destination-feature-card .card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.destination-feature-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.destination-feature-card:hover .card-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.destination-feature-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28,168,203,0.8), rgba(17,61,72,0.8));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-feature-card:hover .card-overlay {
    opacity: 1;
}

.destination-feature-card .overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.destination-feature-card:hover .overlay-content {
    transform: translateY(0);
}

.destination-feature-card .overlay-content i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.destination-feature-card .overlay-content span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destination-feature-card .card-content {
    padding: 25px;
    text-align: center;
}

.destination-feature-card .card-content h3 {
    color: #0A1F24;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.4s ease;
}

.destination-feature-card:hover .card-content h3 {
    color: #1CA8CB;
    transform: translateY(-5px);
}

.destination-feature-card .card-content p {
    color: #687179;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.destination-feature-card:hover .card-content p {
    color: #0A1F24;
}

.destination-feature-card .explore-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #1CA8CB 0%, #113D48 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.destination-feature-card .explore-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;
}

.destination-feature-card .explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(28,168,203,0.4);
    border-color: rgba(255,255,255,0.3);
    color: white;
}

.destination-feature-card .explore-btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .similar-destinations-section {
        padding: 60px 1rem;
    }
    
    .similar-destinations-section h2 {
        font-size: 2.5rem;
    }
    
    .destinations-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .destination-feature-card .card-content {
        padding: 20px;
    }
}
/* Honeymoon Package Styles */
.packages-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.packages-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0A1F24;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-header p {
    font-size: 18px;
    color: #687179;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.package-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.package-duration {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.package-card h3 {
    padding: 20px 25px 10px;
    margin: 0;
    color: #0A1F24;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.package-locations {
    padding: 0 25px;
    color: #687179;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-locations::before {
    content: '📍';
    font-size: 16px;
}

.package-features {
    padding: 0 25px;
    margin-bottom: 20px;
}

.package-features span {
    display: block;
    color: #687179;
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-features i {
    color: #ff6b6b;
    width: 16px;
    font-size: 14px;
}

.package-price {
    padding: 0 25px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 25px;
}

.package-card .btn {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
    text-align: center;
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

.package-card .btn:hover {
    background: linear-gradient(135deg, #113D48, #1CA8CB);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28,168,203,0.4);
    color: white;
}

/* Why Choose Honeymoon Section */
.why-choose-honeymoon {
    background: linear-gradient(135deg, #1CA8CB 0%, #113D48 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-honeymoon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

.why-choose-honeymoon h2 {
    color: white;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-align: center;
}

.why-choose-honeymoon .feature-box {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.why-choose-honeymoon .feature-box:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.why-choose-honeymoon .feature-box .icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    color: white;
    font-size: 35px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.why-choose-honeymoon .feature-box:hover .icon {
    transform: rotateY(360deg);
    background: linear-gradient(45deg, rgba(255,255,255,0.3), rgba(255,255,255,0.2));
    border-color: rgba(255,255,255,0.4);
}

.why-choose-honeymoon .feature-box h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 22px;
    font-weight: 700;
    transition: all 0.4s ease;
}

.why-choose-honeymoon .feature-box:hover h4 {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.why-choose-honeymoon .feature-box p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 1.6;
    transition: all 0.4s ease;
}

.why-choose-honeymoon .feature-box:hover p {
    color: rgba(255,255,255,1);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .package-card h3 {
        font-size: 1.2rem;
    }
    
    .why-choose-honeymoon h2 {
        font-size: 2rem;
    }
}

/* Package Category Tabs */
.pkg-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pkg-tab {
    padding: 12px 30px;
    border: 2px solid #1CA8CB;
    background: transparent;
    color: #1CA8CB;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.pkg-tab:hover {
    background: #1CA8CB;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(28,168,203,0.3);
}

.pkg-tab.active {
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(28,168,203,0.4);
}

.pkg-panel {
    display: none;
}

.pkg-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .pkg-tabs {
        gap: 10px;
    }
    .pkg-tab {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Ferry Service Cards */
.services-subtitle {
    text-align: center;
    color: #687179;
    font-size: 16px;
    margin: -2rem auto 3rem;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.ferry-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin-bottom: 1.5rem;
}

.ferry-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .ferry-img-wrap img {
    transform: scale(1.08);
}

/* Activity Cards with Images */
.activity-img-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.activity-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .activity-img-wrap img {
    transform: scale(1.08);
}

.activity-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .activity-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .activity-categories {
        grid-template-columns: 1fr;
    }
}

/* Water Sports Section */
.water-sports-section {
    background: linear-gradient(135deg, #0A1F24 0%, #113D48 100%);
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
}

.water-sports-section h2 {
    color: white;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.water-sports-section .services-subtitle {
    color: rgba(255,255,255,0.75);
    margin-bottom: 3rem;
}

.water-sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.water-sport-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.water-sport-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
    border-color: #1CA8CB;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.ws-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ws-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.water-sport-card:hover .ws-img-wrap img {
    transform: scale(1.08);
}

.ws-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    background: #1CA8CB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(28,168,203,0.5);
}

.ws-content {
    padding: 20px;
}

.ws-content h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ws-content p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ws-btn {
    display: inline-block;
    padding: 9px 22px;
    background: #1CA8CB;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ws-btn:hover {
    background: white;
    color: #113D48;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(28,168,203,0.4);
}

@media (max-width: 1024px) {
    .water-sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .water-sports-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section Fix */
.contact-subtitle {
    text-align: center;
    color: #687179;
    font-size: 16px;
    margin: -2rem auto 3rem;
    max-width: 600px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(6px);
    border-color: #1CA8CB;
    box-shadow: 0 8px 25px rgba(28,168,203,0.15);
}

.contact-info-item .icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.contact-info-item .content h4 {
    color: #0A1F24;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-info-item .content p {
    color: #687179;
    font-size: 14px;
    margin: 2px 0;
    line-height: 1.5;
}

/* Enquiry Form */
.enquiry-form {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.enquiry-form h3 {
    color: #0A1F24;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 0;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    background: #f8f9fa;
    color: #333;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: #1CA8CB;
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(28,168,203,0.1);
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: #aaa;
}

.enquiry-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1CA8CB, #113D48);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    margin-top: 5px;
}

.enquiry-form button:hover {
    background: linear-gradient(135deg, #113D48, #1CA8CB);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28,168,203,0.35);
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .enquiry-form {
        padding: 20px;
    }
}

/* Navbar Logo */
.nav-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-logo {
        height: 42px;
    }
}
