:root {
    --primary-blue: #38B6FF;
    --primary-orange: #FF7A00;
    --primary-white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--text-dark);
    background-color: var(--primary-white);
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: var(--primary-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text h1 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text span {
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://kafatours.com/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-white);
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--primary-white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #E06D00;
}

/* About Section */
.about {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-orange);
    bottom: -10px;
    left: 25%;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Packages Section */
.packages {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.packages-container {
    max-width: 1400px;
    margin: 0 auto;
}

.package-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem 1rem;
    background-color: var(--primary-white);
    border: 1px solid var(--primary-blue);
    border-radius: 50px;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button.active {
    background-color: var(--primary-blue);
    color: var(--primary-white);
}

.tab-button:hover {
    background-color: var(--primary-blue);
    color: var(--primary-white);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background-color: var(--primary-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-image {
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-info {
    padding: 1.5rem;
}

.package-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.package-duration {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--primary-white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.package-highlights {
    margin-bottom: 1.5rem;
}

.package-highlights li {
    margin-bottom: 0.5rem;
    list-style-position: inside;
}

.package-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.package-button {
    display: block;
    text-align: center;
    background-color: var(--primary-blue);
    color: var(--primary-white);
    padding: 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.package-button:hover {
    background-color: #2A9CE8;
}

/* Culinary Section */
.culinary {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.culinary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.culinary-card {
    background-color: var(--primary-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.culinary-image {
    height: 200px;
    overflow: hidden;
}

.culinary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.culinary-info {
    padding: 1.5rem;
}

.culinary-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.culinary-type {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--primary-white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

.testimonial-card {
    min-width: 300px;
    scroll-snap-align: start;
    background-color: var(--primary-white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-icon {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.contact-map {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: #1A1A1A;
    color: var(--primary-white);
    padding: 3rem 5% 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-col h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 1rem;
    color: #CCCCCC;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333333;
    border-radius: 50%;
    color: var(--primary-white);
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-orange);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333333;
    color: #CCCCCC;
    font-size: 0.9rem;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    padding: 0.8rem 0;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.8rem;
}

.mobile-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.mobile-nav-item.active {
    color: var(--primary-blue);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .mobile-bottom-nav {
        display: block;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .package-tabs {
        justify-content: flex-start;
    }
    
    .tab-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}
/* Package Includes */
.package-includes {
    margin-bottom: 1rem;
}

.package-includes h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.package-includes ul {
    list-style: none;
}

.package-includes li {
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
}

.package-includes i {
    color: var(--primary-orange);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Price Options */
.price-options {
    margin-bottom: 1.5rem;
}

.price-options h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.price-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.price-tier {
    background-color: var(--bg-light);
    padding: 0.5rem;
    border-radius: 5px;
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.person-count {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.tier-price {
    display: block;
    font-weight: 600;
    color: var(--primary-orange);
}
/* Popular Packages Section */
.packages .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.package-card.popular {
    position: relative;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 5px 20px rgba(255, 122, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.package-rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--primary-orange);
    font-size: 0.8rem;
}

.package-rating i {
    margin-right: 0.3rem;
}

.package-rating span {
    color: var(--text-light);
    margin-left: 0.3rem;
}

.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.view-all-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-blue);
}

.view-all-button:hover {
    background-color: transparent;
    color: var(--primary-blue);
}
/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

/* Package Rating */
.package-rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--primary-orange);
    font-size: 0.8rem;
}

.package-rating i {
    margin-right: 0.3rem;
}

.package-rating span {
    color: var(--text-light);
    margin-left: 0.3rem;
}

/* Tab Button Active State */
.tab-button.active {
    background-color: var(--primary-blue);
    color: var(--primary-white);
    position: relative;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: var(--primary-orange);
}
/* Custom Package Section */
.custom-package {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.custom-container {
    max-width: 1200px;
    margin: 0 auto;
}

.custom-content {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.custom-info {
    flex: 1;
}

.custom-option h3, .custom-features h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.option-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--primary-orange);
}

.option-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.option-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
}

.option-card ul {
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.option-card li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.option-price {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.1rem;
}

.custom-features ul {
    margin-left: 0;
    list-style: none;
}

.custom-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-features i {
    color: var(--primary-orange);
}

.custom-cta {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.custom-cta:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
}

.custom-cta i {
    margin-right: 0.5rem;
}

.custom-gallery {
    flex: 1;
}

.gallery-slider {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.slider-container {
    display: flex;
    height: 400px;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    margin: 0;
    text-align: center;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 10;
}

.slider-prev, .slider-next {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--primary-white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background-color: var(--primary-white);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .custom-content {
        flex-direction: column;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-slider {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .slider-prev, .slider-next {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}
/* Fishing Package Section */
.fishing-package {
    padding: 5rem 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/fishing-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.fishing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fishing-content {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.fishing-info {
    flex: 2;
}

.fishing-card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.fishing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--primary-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.fishing-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.fishing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.fishing-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fishing-features i {
    color: var(--primary-orange);
}

.fishing-price {
    text-align: center;
    margin-top: 2rem;
}

.fishing-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.fishing-price .duration {
    font-size: 1rem;
    color: var(--text-light);
}

.fishing-destinations {
    margin-top: 2rem;
}

.fishing-destinations h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: white;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.destination-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 120px;
}

.destination-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-item:hover img {
    transform: scale(1.1);
}

.destination-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
}

.fishing-cta {
    flex: 1;
    display: flex;
    align-items: center;
}

.cta-content {
    background-color: var(--primary-blue);
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.cta-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    margin-top: auto;
}

.cta-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button i {
    margin-right: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .fishing-content {
        flex-direction: column;
    }
    
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
    
    .fishing-card {
        padding: 1.5rem;
    }
    
    .cta-content {
        padding: 1.5rem;
    }
}