* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1ABDB5;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Global Image Styles for Responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 0;
    font-size: 13px;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-bar-left {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.social-icon {
    color: var(--text-light);
    font-size: 14px;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
}

/* Navbar */
.navbar {
    background-color: var(--text-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s;
}

.search-btn:hover {
    color: var(--primary-color);
}

.login-btn {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.login-btn:hover {
    color: var(--primary-color);
}

.book-now-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.book-now-btn:hover {
    background-color: #159890;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    z-index: 10;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    width: 90%;
    max-width: 700px;
}

.hero-welcome-sinhala {
    font-family: 'Noto Serif Sinhala', 'Yaldevi', serif;
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 
        3px 3px 15px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(255, 255, 255, 0.2);
    animation: fadeInDown 1.2s ease-out;
    text-transform: uppercase;
    line-height: 1.2;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 14px 35px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero-btn:hover {
    background-color: #159890;
}

/* Carousel Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 10;
}

.hero-arrow:hover {
    background-color: #159890;
}

.hero-arrow-left {
    left: 30px;
}

.hero-arrow-right {
    right: 30px;
}

/* Features Section */
.features-section {
    background-color: #f5f5f5;
    background-image: url('images/hsection2.svg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    position: relative;
    z-index: 5;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.features-label {
    color: #FFA500;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.features-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.teal-text {
    color: #1ABDB5;
}

.features-description {
    color: #888;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.feature-card {
    background-color: white;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #14b8a6;
    transition: height 0.5s ease;
    z-index: -1;
    border-radius: 8px;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    transition: color 0.5s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    color: white;
}

.feature-card:hover .feature-icon i {
    color: white !important;
}

.feature-icon i {
    display: block;
    color: #14b8a6 !important;
    font-size: 48px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 50px;
    transition: color 0.5s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-title {
    color: white;
}

.feature-text {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.6;
    transition: color 0.5s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-text {
    color: white;
}

.feature-reviews {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.5s ease;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-reviews {
    color: white;
}

.feature-reviews:hover {
    opacity: 0.8;
}

/* Destinations Section */
.destinations-section {
    padding: 80px 20px;
    background-color: white;
}

.destinations-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.destinations-label {
    color: #FFA500;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.destinations-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.destinations-description {
    color: #888;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    grid-template-rows: 300px 300px;
    gap: 20px;
}

.destination-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.destination-card.large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.destination-card.medium {
    grid-column: 2 / 3;
}

.destination-card.medium:nth-of-type(2) {
    grid-row: 1 / 2;
}

.destination-card.medium:nth-of-type(3) {
    grid-row: 2 / 3;
}

.destination-card.tall {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}

.destination-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 2;
}

.destination-country {
    color: #FFA500;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destination-name {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #1ABDB5;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FFA500, #FF6B35);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
}

/* Responsive Destinations */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .destination-card.large,
    .destination-card.medium,
    .destination-card.tall {
        grid-column: auto;
        grid-row: auto;
    }

    .destinations-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .destinations-section {
        padding: 60px 20px;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .destination-card {
        height: 250px;
    }

    .destinations-title {
        font-size: 28px;
    }

    .destination-name {
        font-size: 22px;
    }
}

/* Wave Divider (Torn Paper Effect) */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Tour Packages Section */
.packages-section {
    background-image: url('images/hsection3.svg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
}

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

.packages-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.packages-header-left {
    flex: 1;
}

.packages-label {
    color: #FFA500;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.packages-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.packages-description {
    color: #888;
    font-size: 15px;
    max-width: 600px;
    line-height: 1.6;
}

.packages-arrows {
    display: flex;
    gap: 10px;
}

.package-arrow {
    width: 45px;
    height: 45px;
    border: none;
    background-color: white;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.package-arrow:hover {
    background-color: #1ABDB5;
    color: white;
}

.packages-slider-wrapper {
    overflow: hidden;
    margin-bottom: 60px;
}

.packages-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.package-card {
    min-width: calc(33.333% - 20px);
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.package-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #1ABDB5;
    transition: width 0.5s ease;
    z-index: 10;
}

.package-card:hover::after {
    width: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.package-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.package-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #1ABDB5;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.package-duration i {
    margin-right: 5px;
}

.package-content {
    padding: 25px;
}

.package-location {
    color: #1ABDB5;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.package-name {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}

.package-rating i {
    color: #FFA500;
    font-size: 14px;
}

.package-rating span {
    color: #888;
    font-size: 13px;
    margin-left: 5px;
}

.package-text {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.package-price {
    color: #1ABDB5;
    font-size: 22px;
    font-weight: 700;
}

.package-price span {
    color: #888;
    font-size: 14px;
    font-weight: 400;
}

/* Top Categories */
.categories-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.category-box-title {
    background-color: #1ABDB5;
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-box-title h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.categories-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 0;
    flex: 1;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.categories-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.category-item {
    min-width: 160px;
    background-color: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #1ABDB5;
    transition: width 0.4s ease;
}

.category-item:hover::after {
    width: 100%;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.category-item i {
    font-size: 40px;
    color: #888;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.category-item:hover i {
    color: #1ABDB5;
}

.category-item p {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s;
}

.category-item:hover p {
    color: #1ABDB5;
}

/* Responsive Packages */
@media (max-width: 1024px) {
    .package-card {
        min-width: calc(50% - 15px);
    }

    .packages-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 60px 20px;
    }

    .packages-header {
        flex-direction: column;
        gap: 20px;
    }

    .package-card {
        min-width: 100%;
    }

    .packages-title {
        font-size: 28px;
    }

    .categories-wrapper {
        flex-direction: column;
    }

    .category-box-title {
        min-width: 100%;
        padding: 25px;
    }
}

/* Last Minute Deals Section */
.deals-section {
    background-color: white;
    padding: 80px 20px;
}

.deals-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.deals-label {
    color: #FFA500;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.deals-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.deals-description {
    color: #888;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.deal-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.deal-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.deal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}

.deal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
}

.deal-country {
    color: #FFA500;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deal-name {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.deal-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 15px;
}

.deal-rating i {
    color: #FFA500;
    font-size: 14px;
}

.deal-rating span {
    color: white;
    font-size: 13px;
    margin-left: 5px;
}

.deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.deal-price {
    color: #FFA500;
    font-size: 20px;
    font-weight: 700;
}

.deal-price span {
    color: white;
    font-size: 13px;
    font-weight: 400;
}

.deal-duration {
    color: white;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.deal-duration i {
    font-size: 14px;
}

.deals-button-wrapper {
    text-align: center;
}

.view-deals-btn {
    background-color: #1ABDB5;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.view-deals-btn:hover {
    background-color: #159890;
    transform: translateY(-2px);
}

/* Responsive Deals */
@media (max-width: 1024px) {
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .deals-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .deals-section {
        padding: 60px 20px;
    }

    .deals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .deals-title {
        font-size: 28px;
    }

    .deal-image {
        height: 300px;
    }
}

/* Testimonials Section */
.testimonials-section {
    display: none;
    background-image: url('https://images.unsplash.com/photo-1467269204594-9661b134dd2b?w=1600&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0 0 0;
    min-height: 400px;
    max-height: 550px;
    height: 50vh;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 189, 181, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 40px;
}

.testimonials-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    margin-bottom: 0;
    width: 100%;
}

.testimonials-left {
    flex: 1;
    min-width: 350px;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.testimonials-label {
    color: #FFC107;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 30px;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.testimonials-title {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.testimonials-title .teal-text {
    color: #FFC107;
    position: relative;
    display: inline-block;
}

.testimonials-title .teal-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFC107, #FF9800);
    border-radius: 2px;
}

.testimonials-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.8;
    max-width: 500px;
    font-weight: 300;
}

.testimonials-right {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out;
}

.testimonial-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.1) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 45px;
    border-radius: 25px;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 20px 60px rgba(26, 189, 181, 0.2);
    max-width: 500px;
    min-width: 380px;
    margin-left: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.testimonial-box:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 30px 80px rgba(26, 189, 181, 0.3);
    border-color: rgba(255, 193, 7, 0.5);
}

.testimonial-box::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 180px;
    color: rgba(255, 193, 7, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: -1;
}

.testimonial-content {
    display: flex;
    gap: 0;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}

.quote-icon {
    font-size: 50px;
    color: #FFC107;
    flex-shrink: 0;
    margin-bottom: 20px;
    opacity: 0.9;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.testimonial-details {
    flex: 1;
    width: 100%;
}

.testimonial-text {
    color: #fff;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 400;
    text-align: left;
    position: relative;
    padding-left: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFC107;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.testimonial-box:hover .author-avatar {
    transform: scale(1.1);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    color: #FFC107;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.author-job {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    opacity: 1;
}

@media (max-width: 900px) {
    .testimonials-section {
        padding: 50px 0 0 0;
        min-height: 300px;
        max-height: 450px;
        height: 45vh;
    }
    .testimonials-title {
        font-size: 36px;
    }
    .testimonials-container {
        padding: 0 20px;
    }
    .testimonial-box {
        padding: 30px 25px;
        min-width: 280px;
        max-width: 100%;
    }
    .testimonials-top {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .testimonials-top {
        flex-direction: column;
        gap: 30px;
    }
    .testimonials-title {
        font-size: 28px;
    }
    .testimonials-label {
        font-size: 14px;
        padding: 6px 15px;
    }
    .testimonials-container {
        padding: 0 15px;
    }
    .testimonial-box {
        min-width: 100%;
    }
    .quote-icon {
        font-size: 40px;
    }
}

/* Testimonial Tours Slider */
.testimonial-tours-wrapper {
    overflow: hidden;
}

.testimonial-tours-slider {
    display: flex;
    gap: 30px;
    animation: slideTestimonialTours 20s linear infinite;
}

@keyframes slideTestimonialTours {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-tour-card {
    min-width: calc(50% - 15px);
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: row;
}

.tour-card-image {
    width: 40%;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.discount-badge {
    position: absolute;
    top: 20px;
    left: -5px;
    background-color: #1ABDB5;
    color: white;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%);
}

.discount-badge.yellow {
    background-color: #FFA500;
}

.tour-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-card-location {
    color: #1ABDB5;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.tour-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.tour-card-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}

.tour-card-rating i {
    color: #FFA500;
    font-size: 13px;
}

.tour-card-rating span {
    color: #888;
    font-size: 12px;
    margin-left: 5px;
}

.tour-card-text {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.tour-card-footer {
    margin-bottom: 10px;
}

.tour-card-days {
    color: #1ABDB5;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tour-card-price {
    color: #1ABDB5;
    font-size: 20px;
    font-weight: 700;
}

.tour-card-price span {
    color: #888;
    font-size: 13px;
    font-weight: 400;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #1ABDB5;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
    background-color: #159890;
    transform: translateY(-3px);
}

.scroll-to-top.show {
    display: flex;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonials-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-tour-card {
        min-width: calc(50% - 15px);
    }

    .testimonials-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonial-box {
        padding: 25px;
    }

    .testimonial-tour-card {
        min-width: 100%;
    }

    .testimonials-title {
        font-size: 28px;
    }
}

/* Responsive Features */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .features-title {
        font-size: 36px;
    }

    /* Top Bar adjustments for tablets */
    .top-bar-left {
        gap: 15px;
    }

    .top-bar-item {
        font-size: 12px;
    }

    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .features-title {
        font-size: 28px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    /* Top Bar Responsive */
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
    }

    .top-bar-left {
        flex-direction: row;
        gap: 15px;
        font-size: 11px;
    }

    .top-bar-item:nth-child(3) {
        display: none;
    }

    .top-bar-right {
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .navbar-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 12px;
    }

    /* Hero Section Responsive for Tablet */
    .hero-section {
        height: 500px;
    }

    .hero-content {
        width: 85%;
        max-width: 600px;
        padding: 0 20px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 13px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 13px;
    }

    .hero-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .hero-arrow-left {
        left: 15px;
    }

    .hero-arrow-right {
        right: 15px;
    }

    .nav-right {
        gap: 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: none;
    }

    /* Show hamburger menu, hide desktop nav */
    .menu-toggle {
        display: block;
        min-width: 44px;
        min-height: 44px;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 65px);
        background-color: #fff;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 18px 25px;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: left;
        font-size: 14px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-link::after {
        display: none;
    }

    .login-btn {
        display: none;
    }

    .search-btn {
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
    }

    .book-now-btn {
        padding: 12px 20px;
        font-size: 11px;
        min-height: 44px;
    }

    .navbar-container {
        padding: 12px 15px;
    }

    .logo {
        font-size: 18px;
    }

    .logo i {
        font-size: 22px;
    }

    /* Hero Section Responsive for Mobile */
    .hero-section {
        height: 500px;
        min-height: 500px;
    }

    .hero-content {
        width: 90%;
        padding: 0 20px;
    }

    .hero-welcome-sinhala {
        font-size: clamp(28px, 6vw, 36px);
        margin-bottom: 12px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .hero-title {
        font-size: clamp(24px, 5vw, 32px);
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 13px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 13px;
        min-height: 44px;
    }

    .hero-arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .hero-arrow-left {
        left: 10px;
    }

    .hero-arrow-right {
        right: 10px;
    }

    /* Improve spacing and touch targets */
    .feature-card {
        padding: 30px 20px;
    }

    .package-card,
    .destination-card {
        min-height: 280px;
    }
}

/* Extra small devices (very small phones) */
@media (max-width: 360px) {
    .hero-section {
        height: 450px;
        min-height: 450px;
    }

    .hero-welcome-sinhala {
        font-size: clamp(24px, 5vw, 32px);
    }

    .hero-title {
        font-size: clamp(20px, 4.5vw, 28px);
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .navbar-container {
        padding: 10px 12px;
    }

    .logo span {
        font-size: 16px;
    }

    .nav-menu {
        width: 100%;
        left: -100%;
    }

    .nav-menu.active {
        left: 0;
    }
}
/* Footer Styles */
.footer {
    background-color: #1a2332;
    color: #fff;
}

/* Instagram Gallery */
.instagram-gallery {
    background-color: #1a2332;
    padding: 60px 0 40px;
}

.instagram-images {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
}

.instagram-item {
    width: 110px;
    height: 110px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-follow {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-follow-content {
    text-align: center;
    color: #fff;
}

.instagram-follow-content i {
    font-size: 24px;
    margin-bottom: 5px;
}

.instagram-follow-content p {
    font-size: 11px;
    font-weight: 500;
}

/* Footer Content */
.footer-content {
    padding: 60px 0;
    background-color: #1a2332;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 28px;
    color: var(--primary-color);
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #b8c5d6;
    margin-bottom: 25px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #b8c5d6;
}

.footer-contact strong {
    color: #fff;
    font-weight: 600;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.newsletter-text {
    font-size: 14px;
    line-height: 1.8;
    color: #b8c5d6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background-color: #2a3444;
    color: #fff;
}

.newsletter-input::placeholder {
    color: #7a8a9e;
}

.newsletter-btn {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-btn:hover {
    background-color: #15a09a;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #151d2a;
    padding: 20px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.payment-text {
    font-size: 14px;
    color: #b8c5d6;
    font-weight: 500;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: #b8c5d6;
}

.footer-bottom-right {
    display: flex;
    gap: 15px;
}

.footer-select {
    padding: 8px 15px;
    background-color: #2a3444;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

/* Footer Copyright */
.footer-copyright {
    background-color: #0f1419;
    padding: 20px 0;
}

.footer-copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 14px;
    color: #7a8a9e;
}

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

.footer-social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #2a3444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.footer-social-icon:hover {
    background-color: var(--primary-color);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .instagram-images {
        overflow-x: auto;
        justify-content: flex-start;
    }
}

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

    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-copyright-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .instagram-item {
        width: 90px;
        height: 90px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* About Page Styles */

/* Page Header */
.page-header {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #0a4a5c 0%, #1a5f7a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/home1.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-header-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.page-header-breadcrumb {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-header-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.page-header-breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb-separator {
    color: #fff;
}

.page-header-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60" preserveAspectRatio="none"><path d="M0,30 Q150,0 300,30 T600,30 T900,30 T1200,30 L1200,60 L0,60 Z" fill="white"/></svg>') bottom center no-repeat;
    background-size: 100% 100%;
    z-index: 3;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-subtitle {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #0a2540;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #4b5563;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 18px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-stat {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* About Image */
.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    margin: 0 auto;
}

.about-image-wrapper img {
    width: auto;
    height: 90%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(26, 189, 181, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-icon-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 50%;
    right: -15%;
    animation-delay: 0.5s;
}

.floating-icon-3 {
    bottom: 15%;
    right: 5%;
    animation-delay: 1s;
    background-color: #fbbf24;
}

.floating-icon-4 {
    bottom: 5%;
    left: 10%;
    animation-delay: 1.5s;
    background-color: #fbbf24;
}

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

/* About Responsive */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper {
        width: 400px;
        height: 400px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 32px;
    }

    .about-image-wrapper {
        width: 320px;
        height: 320px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .page-header {
        height: 250px;
    }

    .page-header-title {
        font-size: 28px;
    }
}

/* Core Features Section */
/* Core Features Section - Updated Design */
.core-features-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.core-features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.core-features-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.core-features-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.core-features-title .highlight-text {
    color: #14b8a6;
}

.core-features-description {
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #14b8a6;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 48px;
    color: #14b8a6;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.4;
}

.feature-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-link {
    color: #14b8a6;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: #0d9488;
}

/* Core Features Responsive */
@media (max-width: 992px) {
    .core-features-title {
        font-size: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .core-features-section {
        padding: 60px 20px;
    }

    .core-features-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 25px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(148,163,184,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(148,163,184,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.testimonials-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.testimonials-description {
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

.testimonials-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.traveler-circle {
    position: relative;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.3);
}

.traveler-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.quote-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #14b8a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
    animation: float 3s ease-in-out infinite;
}

.quote-icon i {
    font-size: 32px;
    color: #ffffff;
}

.quote-icon-1 {
    top: 20%;
    right: -10%;
}

.quote-icon-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1.5s;
}

.testimonials-right {
    position: relative;
    min-height: 400px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

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

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #14b8a6;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #14b8a6;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 14px;
    color: #64748b;
}

.testimonial-quote-icon {
    margin-bottom: 20px;
}

.testimonial-quote-icon i {
    font-size: 48px;
    color: #cbd5e1;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
    font-style: italic;
}

.testimonial-navigation {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #14b8a6;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover {
    background-color: #0d9488;
    transform: scale(1.1);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

/* Testimonials Responsive */
@media (max-width: 992px) {
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .traveler-circle {
        width: 400px;
        height: 400px;
    }

    .testimonials-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .traveler-circle {
        width: 320px;
        height: 320px;
    }

    .quote-icon {
        width: 60px;
        height: 60px;
    }

    .quote-icon i {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-name {
        font-size: 18px;
    }
}

/* Destinations Page Styles */
.destinations-header {
    background: linear-gradient(135deg, #0f4c75 0%, #1b5a7e 100%);
    position: relative;
}

.destinations-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.destinations-container {
    max-width: 1400px;
    margin: 0 auto;
}

.destinations-intro {
    text-align: center;
    margin-bottom: 50px;
}

.destinations-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.destinations-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.destinations-description {
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filter and Search Bar */
.filter-search-bar {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 20px;
    color: #64748b;
    font-size: 16px;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.filter-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    background-color: #ffffff;
    color: #64748b;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    border-color: #14b8a6;
    color: #14b8a6;
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: #14b8a6;
    color: #ffffff;
    border-color: #14b8a6;
}

.filter-btn i {
    font-size: 14px;
}

.sort-dropdown select {
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.sort-dropdown select:focus {
    outline: none;
    border-color: #14b8a6;
}

/* Results Info */
.results-info {
    margin-bottom: 30px;
}

.results-info p {
    color: #64748b;
    font-size: 15px;
}

.results-info span {
    color: #14b8a6;
    font-weight: 700;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateY(0);
    display: block;
    text-decoration: none;
    color: inherit;
}

.destination-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.destination-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
}

.destination-region {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.destination-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.destination-tours {
    display: inline-block;
    padding: 8px 20px;
    background-color: #14b8a6;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.destination-card:hover .destination-tours {
    background-color: #0d9488;
    transform: scale(1.05);
}

/* Hidden Cards */
.destination-card.hidden-card {
    display: none !important;
}

.destination-card.filter-hidden {
    display: none !important;
    opacity: 0;
}

/* See More Button */
.see-more-container {
    text-align: center;
    margin: 40px 0;
}

.see-more-btn {
    padding: 16px 40px;
    background-color: #14b8a6;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.see-more-btn:hover {
    background-color: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.see-more-btn:active {
    transform: translateY(0);
}

.see-more-btn i {
    transition: transform 0.3s ease;
}

.see-more-btn.expanded i {
    transform: rotate(180deg);
}

.see-more-container.hidden {
    display: none;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results i {
    font-size: 80px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 10px;
}

.no-results p {
    font-size: 16px;
    color: #64748b;
}

/* Destinations Responsive */
@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .destinations-title {
        font-size: 40px;
    }

    .filter-search-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        min-width: 100%;
    }

    .filter-controls {
        justify-content: center;
    }

    .sort-dropdown {
        width: 100%;
    }

    .sort-dropdown select {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .destinations-section {
        padding: 60px 20px;
    }

    .destinations-title {
        font-size: 32px;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-image {
        height: 300px;
    }

    .destination-name {
        font-size: 24px;
    }

    .filter-btn {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* Video Promo Section */
.video-promo-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/D1.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px;
}

.video-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.video-promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.video-promo-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #14b8a6;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.video-promo-title {
    font-size: 52px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.3;
}

.video-promo-title .highlight-yellow {
    color: #fbbf24;
}

.video-promo-description {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 50px;
}

.video-play-btn {
    position: relative;
    width: 100px;
    height: 100px;
    background: transparent;
    border: none;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.play-btn-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid #fbbf24;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
}

.play-btn-circle i {
    color: #ffffff;
    font-size: 24px;
    margin-left: 4px;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: #ffffff;
    color: #000000;
    transform: rotate(90deg);
}

.video-wrapper {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Video Promo Responsive */
@media (max-width: 992px) {
    .video-promo-section {
        min-height: 500px;
        padding: 80px 20px;
    }

    .video-promo-title {
        font-size: 40px;
    }

    .video-play-btn {
        width: 80px;
        height: 80px;
    }

    .play-btn-ring {
        width: 80px;
        height: 80px;
    }

    .play-btn-circle {
        width: 55px;
        height: 55px;
    }

    .play-btn-circle i {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .video-promo-section {
        min-height: 450px;
        padding: 60px 20px;
        background-attachment: scroll;
    }

    .video-promo-title {
        font-size: 32px;
    }

    .video-promo-description {
        font-size: 15px;
    }

    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -45px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}



.destination-detail-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.detail-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.detail-main {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Gallery */
.detail-gallery {
    position: relative;
}

.gallery-main {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 15px;
    background: #f9fafb;
}

.gallery-thumb {
    height: 100px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb.active {
    border-color: #14b8a6;
}

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

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Detail Info */
.detail-info {
    padding: 40px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.detail-name {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.detail-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.detail-location {
    color: #64748b;
    font-size: 16px;
}

.detail-location i {
    color: #14b8a6;
}

.detail-rating {
    color: #fbbf24;
    font-size: 14px;
}

.detail-rating i {
    font-size: 16px;
}

.detail-rating span {
    color: #1e293b;
    font-weight: 600;
    margin-left: 5px;
}

.detail-price {
    text-align: right;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #14b8a6;
    line-height: 1;
}

.price-per {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-top: 5px;
}

.detail-description,
.detail-highlights,
.detail-included {
    margin-bottom: 40px;
}

.detail-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.detail-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
}

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

.highlights-list li {
    padding: 12px 0;
    font-size: 15px;
    color: #64748b;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlights-list i {
    color: #14b8a6;
    font-size: 18px;
    margin-top: 2px;
}

/* Quick Info */
.detail-quick-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.quick-info-item i {
    font-size: 28px;
    color: #14b8a6;
}

.info-label {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 5px;
}

.info-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

/* Included/Excluded */
.detail-included {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.included-list,
.excluded-list {
    list-style: none;
    padding: 0;
}

.included-list li,
.excluded-list li {
    padding: 10px 0;
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.included-list i {
    color: #10b981;
    font-size: 16px;
}

.excluded-list i {
    color: #ef4444;
    font-size: 16px;
}

/* Sidebar */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.booking-form-card,
.contact-card,
.related-tours-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-group label i {
    color: #14b8a6;
    margin-right: 5px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.booking-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.booking-submit-btn i {
    margin-right: 8px;
}

/* Contact Card */
.contact-card {
    text-align: center;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 32px;
    color: #ffffff;
}

.contact-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.contact-phone,
.contact-email {
    display: block;
    padding: 12px;
    margin-bottom: 10px;
    background: #f9fafb;
    border-radius: 8px;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
    background: #14b8a6;
    color: #ffffff;
    transform: translateX(5px);
}

.contact-phone i,
.contact-email i {
    margin-right: 8px;
}

/* Related Tours */
.related-tours-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.related-tour-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.related-tour-item:last-child {
    border-bottom: none;
}

.related-tour-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.related-tour-info {
    flex: 1;
}

.related-tour-info h5 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.related-tour-info p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.related-tour-info p i {
    margin-right: 5px;
    color: #14b8a6;
}

.related-tour-price {
    font-size: 16px;
    font-weight: 700;
    color: #14b8a6;
}

/* Responsive */
@media (max-width: 1200px) {
    .detail-container {
        grid-template-columns: 1fr 350px;
    }
}

@media (max-width: 992px) {
    .detail-container {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        order: -1;
    }

    .detail-header {
        flex-direction: column;
        gap: 20px;
    }

    .detail-price {
        text-align: left;
    }

    .detail-included {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .destination-detail-section {
        padding: 40px 15px;
    }

    .detail-info {
        padding: 25px;
    }

    .detail-name {
        font-size: 28px;
    }

    .gallery-main {
        height: 300px;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-quick-info {
        grid-template-columns: 1fr;
    }

    .detail-meta {
        flex-direction: column;
        gap: 10px;
    }

    .price-amount {
        font-size: 32px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 20px;
    background-image: url('images/hsection4.svg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-choose-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.why-choose-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-choose-title .highlight-teal {
    color: #14b8a6;
}

.why-choose-description {
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.why-choose-content {
    position: relative;
    display: grid;
    grid-template-columns: 350px 1fr 350px;
    grid-template-rows: auto auto auto;
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Center Image */
.why-center-image {
    grid-column: 2;
    grid-row: 1 / 4;
    position: relative;
    z-index: 2;
}

.why-center-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Feature Cards */
.why-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 350px;
    width: 100%;
}

.why-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blue-card {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.yellow-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.green-card {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

/* Feature Icons */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 28px;
    color: #ffffff;
}

.blue-icon {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.yellow-icon {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.green-icon {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.green-icon i {
    color: #ffffff;
}

/* Feature Content */
.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Position Cards */
.top-left {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
}

.top-right {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
}

.middle-left {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
}

.middle-right {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
}

.bottom-center {
    grid-column: 2;
    grid-row: 4;
    justify-self: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-choose-content {
        grid-template-columns: 320px 1fr 320px;
        gap: 30px;
    }

    .why-feature-card {
        max-width: 320px;
        padding: 25px;
    }

    .why-center-image img {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .why-choose-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .why-center-image {
        order: -1;
        margin-bottom: 40px;
    }

    .why-center-image img {
        max-width: 350px;
    }

    .why-feature-card {
        max-width: 500px;
    }

    .top-left,
    .top-right,
    .middle-left,
    .middle-right,
    .bottom-center {
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 20px;
    }

    .why-choose-header {
        margin-bottom: 50px;
    }

    .why-choose-title {
        font-size: 32px;
    }

    .why-choose-subtitle {
        font-size: 14px;
    }

    .why-choose-description {
        font-size: 15px;
    }

    .why-center-image img {
        max-width: 280px;
    }

    .why-feature-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .why-choose-title {
        font-size: 26px;
    }

    .why-feature-card {
        padding: 20px 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

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

/* New Places Section */
.new-places-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.new-places-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Images */
.new-places-left {
    position: relative;
}

.new-places-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.secondary-image {
    position: absolute;
    bottom: -30px;
    right: -50px;
    width: 280px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 8px solid #ffffff;
    z-index: 3;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    background: #0f4c75;
    padding: 15px 40px;
    border-radius: 8px;
    z-index: 1;
}

.experience-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Plane Icons */
.plane-icon {
    position: absolute;
    color: #14b8a6;
    font-size: 24px;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

.plane-icon-1 {
    top: 80px;
    left: -80px;
    animation-delay: 0s;
}

.plane-icon-2 {
    top: 120px;
    left: -60px;
    font-size: 20px;
    animation-delay: 0.5s;
}

.plane-icon-3 {
    bottom: 150px;
    left: -100px;
    font-size: 28px;
    animation-delay: 1s;
}

.plane-icon i {
    transform: rotate(-45deg);
}

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

/* Dotted Lines */
.plane-icon-1::before,
.plane-icon-2::before,
.plane-icon-3::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background-image: repeating-linear-gradient(
        to right,
        #14b8a6 0px,
        #14b8a6 8px,
        transparent 8px,
        transparent 16px
    );
    right: -105px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
}

/* Right Side - Content */
.new-places-right {
    padding: 20px 0;
}

.new-places-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #14b8a6;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.new-places-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 25px;
}

.new-places-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* List */
.new-places-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.new-places-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #475569;
}

.new-places-list i {
    color: #fbbf24;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Discover Button */
.discover-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.discover-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(20, 184, 166, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .new-places-container {
        gap: 60px;
    }

    .main-image {
        max-width: 420px;
    }

    .secondary-image {
        width: 240px;
        right: -30px;
    }
}

@media (max-width: 992px) {
    .new-places-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .new-places-left {
        order: 2;
        display: flex;
        justify-content: center;
    }

    .new-places-right {
        order: 1;
        text-align: center;
    }

    .new-places-list {
        display: inline-block;
        text-align: left;
    }

    .experience-badge {
        left: 50%;
        top: -30px;
        transform: translateX(-50%) rotate(0deg);
    }

    .plane-icon-1 {
        top: 40px;
        left: 50%;
        transform: translateX(-200px);
    }

    .plane-icon-2 {
        top: 60px;
        left: 50%;
        transform: translateX(-160px);
    }

    .plane-icon-3 {
        top: 90px;
        left: 50%;
        transform: translateX(-220px);
    }
}

@media (max-width: 768px) {
    .new-places-section {
        padding: 60px 20px;
    }

    .new-places-title {
        font-size: 32px;
    }

    .new-places-subtitle {
        font-size: 14px;
    }

    .new-places-description {
        font-size: 15px;
    }

    .main-image {
        max-width: 350px;
    }

    .secondary-image {
        width: 200px;
        bottom: -20px;
        right: -20px;
        border: 5px solid #ffffff;
    }

    .experience-badge {
        padding: 12px 30px;
    }

    .experience-text {
        font-size: 14px;
    }

    .plane-icon {
        font-size: 20px;
    }

    .plane-icon-1,
    .plane-icon-2,
    .plane-icon-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .new-places-title {
        font-size: 26px;
    }

    .main-image {
        max-width: 100%;
    }

    .secondary-image {
        width: 160px;
    }

    .new-places-list li {
        font-size: 14px;
    }

    .discover-btn {
        padding: 14px 35px;
        font-size: 15px;
    }
}

/* Top Destinations Section - New Design */
.top-destinations-section {
    padding: 80px 20px;
    background: #ffffff;
}

.top-destinations-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

.top-destinations-label {
    font-size: 16px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.top-destinations-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 18px;
    line-height: 1.2;
}

.top-destinations-title .teal-highlight {
    color: #1ABDB5;
}

.top-destinations-description {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.top-destinations-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 25px;
}

/* Large Featured Card */
.top-dest-card.large-featured {
    grid-row: 1 / 3;
    height: 100%;
    min-height: 550px;
}

/* Small Cards Grid */
.small-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.top-dest-card.small {
    height: 100%;
    min-height: 260px;
}

.top-dest-card.tall {
    grid-column: 2;
    grid-row: 1 / 3;
    height: 100%;
    min-height: 545px;
}

/* Card Styles */
.top-dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.top-dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.top-dest-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.top-dest-country {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.top-dest-name {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.top-dest-card.small .top-dest-name {
    font-size: 24px;
}

/* Tour Badge */
.top-dest-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #14b8a6;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

/* Hover Effect */
.top-dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .top-destinations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .top-dest-card.large-featured {
        min-height: 500px;
    }

    .small-cards-grid {
        gap: 20px;
    }

    .top-dest-card.small {
        min-height: 240px;
    }

    .top-dest-card.tall {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .top-destinations-title {
        font-size: 36px;
    }

    .top-destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .top-dest-card.large-featured {
        grid-row: 1;
        min-height: 400px;
    }

    .small-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .top-dest-card.tall {
        grid-column: 1 / 3;
        grid-row: 2;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .top-destinations-section {
        padding: 60px 20px;
    }

    .top-destinations-header {
        margin-bottom: 40px;
    }

    .top-destinations-title {
        font-size: 30px;
    }

    .top-destinations-label {
        font-size: 14px;
    }

    .top-destinations-description {
        font-size: 15px;
    }

    .top-dest-card.large-featured {
        min-height: 350px;
    }

    .small-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .top-dest-card.small {
        min-height: 280px;
    }

    .top-dest-card.tall {
        grid-column: 1;
        grid-row: auto;
        min-height: 300px;
    }

    .top-dest-name {
        font-size: 26px;
    }

    .top-dest-card.small .top-dest-name {
        font-size: 22px;
    }

    .top-dest-content {
        bottom: 20px;
        left: 20px;
    }

    .top-dest-badge {
        top: 15px;
        right: 15px;
        padding: 6px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .top-destinations-title {
        font-size: 26px;
    }

    .top-dest-name {
        font-size: 22px;
    }

    .top-dest-card.small .top-dest-name {
        font-size: 20px;
    }

    .top-dest-country {
        font-size: 12px;
    }
}
