/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
            width: 130px;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #0047AB;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid #0047AB;
    color: #0047AB;
}

.btn-outline:hover {
    background: rgba(0, 71, 171, 0.1);
}

.btn-primary {
    background: #0047AB;
    color: white;
}

.btn-primary:hover {
    background: #003d91;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #333;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: white;
    padding: 80px 20px 20px;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu li a {
    display: block;
    padding: 10px 0;
    font-weight: 500;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 60px;
}

.breadcrumb {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    color: white;
    padding: 0 20px;
}

.breadcrumb-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 10px;
    font-size: 14px;
}

.breadcrumb span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-actions {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.hero-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 4px;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Tour Content */
.tour-content {
    padding: 40px 0;
    background: white;
    position: relative;
    z-index: 2;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    overflow: hidden;
}

.tour-header {
    text-align: center;
    margin-bottom: 30px;
}

.tour-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tour-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #666;
    font-size: 16px;
}

.tour-duration {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.duration-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.duration-item i {
    font-size: 20px;
    color: #0047AB;
}

.duration-label {
    font-size: 14px;
    font-weight: 600;
}

.duration-value {
    font-size: 14px;
    color: #666;
}

/* Tour Details */
.tour-details-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
    max-width: 100%;
}

@media (min-width: 992px) {
    .tour-details-wrapper {
        grid-template-columns: calc(100% - 350px - 30px) 350px;
    }
}

.tour-info, .tour-sidebar {
    width: 100%;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.info-text {
    margin-bottom: 20px;
    color: #555;
}

.read-more {
    color: #0047AB;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
}

.meeting-points {
    margin-top: 30px;
}

.point-cards {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.point-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e0e7ff;
    flex: 0 0 calc(50% - 10px);
}

.point-type {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.point-name {
    font-size: 16px;
    font-weight: 600;
}

.languages {
    margin-top: 30px;
}

.language-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.language-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9f9f9;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
}

.practical-info {
    margin-top: 30px;
    margin-bottom: 30px;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e0e7ff;
}

.included-list {
    list-style: none;
    margin-top: 30px;
    margin-bottom: 30px;
}

.included-list h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.included-item i {
    color: #0047AB;
    margin-top: 6px;
}

.included-text {
    font-size: 14px;
    color: #555;
}

.day-by-day {
    margin-top: 30px;
}

.day-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid #e0e7ff;
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
}

.day-title {
    font-size: 16px;
    font-weight: 600;
}

.day-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.day-content {
    font-size: 14px;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.day-card.active .day-content {
    max-height: 1000px;
}

.day-card.active .day-toggle i {
    transform: rotate(180deg);
}

.gallery {
    margin-top: 30px;
}

.gallery-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    cursor: pointer;
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    font-size: 12px;
}

.mobile-booking-card {
    display: none;
    margin-top: 30px;
    margin-bottom: 60px;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 80vh;
}

.lightbox-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 14px;
    padding: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-close i {
    color: white;
    font-size: 20px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-arrow i {
    color: white;
}

.booking-card {
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e7ff;
    padding: 20px;
    position: sticky;
    top: 100px;
    width: 100%;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.price-label {
    font-size: 12px;
    color: #666;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
}

.price-person {
    font-size: 12px;
    color: #666;
}

.booking-options {
    margin-bottom: 20px;
}

.booking-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.booking-option input {
    width: 16px;
    height: 16px;
    accent-color: #0047AB;
}

.booking-option label {
    font-size: 14px;
    color: #555;
}

.date-selection {
    margin-bottom: 20px;
}

.date-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.date-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}

.participants-selection {
    margin-bottom: 20px;
}

.participants-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.participant-type {
    font-size: 14px;
    color: #555;
}

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

.participant-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.participant-btn:hover {
    background: #f5f5f5;
}

.participant-count {
    font-size: 14px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.booking-button {
    background: #0047AB;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.booking-button:hover {
    background: #003d91;
}

.booking-help {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.booking-help a {
    color: #0047AB;
    font-weight: 500;
}

.mobile-booking {
    position: fixed;
    bottom: -80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: bottom 0.3s;
}

.mobile-booking.visible {
    bottom: 0;
}

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

.mobile-tour-title {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.mobile-tour-price {
    font-size: 16px;
    font-weight: 700;
    color: #0047AB;
}

.mobile-booking-button {
    background: #0047AB;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
}

.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.info-modal-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    border: 1px solid #e0e7ff;
}

.info-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.info-modal-close:hover {
    background: #e0e0e0;
}

.info-modal-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.info-modal-text {
    color: #555;
    line-height: 1.8;
}

.info-modal-text p {
    margin-bottom: 15px;
}

.booking-highlights {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e7ff;
}

.booking-highlights .included-list {
    margin: 0;
}

.booking-highlights .included-item {
    margin-bottom: 10px;
}

.booking-highlights .included-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .nav-menu, .header-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .tour-sidebar {
        display: none;
    }

    .mobile-booking-card {
        display: block;
    }

    .container {
        padding: 0 15px;
    }

    .tour-info {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .tour-content {
        padding-bottom: 80px;
    }

    .point-card {
        flex: 0 0 100%;
    }

    .gallery-item {
        flex: 0 0 85%;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .tour-title {
        font-size: 24px;
    }

    .duration-item {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .duration-item {
        flex: 0 0 100%;
    }
}

.tour-tab {
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e7ff;
    margin-bottom: 30px;
}

.tour-tab-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.tour-tab-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.tour-tab-content {
    padding: 20px;
}

.tour-tab-section {
    margin-bottom: 30px;
}

.tour-tab-section:last-child {
    margin-bottom: 0;
}

.tour-tab-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.tour-tab-section .included-list {
    margin: 0;
}

.tour-tab-section .included-item {
    margin-bottom: 10px;
}

.tour-tab-section .included-item:last-child {
    margin-bottom: 0;
}

.tour-tab-section .included-item i {
    color: #0047AB;
    margin-top: 5px;
}

.tour-tab-section .included-text {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .tour-tab {
        margin: 0 -15px;
        border-radius: 0;
    }
}

/* About Page Styles */
.about-sections {
    padding: 80px 0;
}

.about-section {
    padding: 60px 0;
}

.about-section.alt-bg {
    background-color: #f5f7fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content.reverse {
    direction: rtl;
}

.about-content.reverse .about-text {
    direction: ltr;
}

.about-text h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #0047AB, #3B82F6);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

    .about-content.reverse {
        direction: ltr;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about-sections {
        padding: 40px 0;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-image img {
        height: 250px;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #0047AB, #3B82F6);
    color: white;
    padding: 100px 0 60px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-header-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(to right, #ffffff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .page-header {
        padding: 80px 0 40px;
    }

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

    .page-description {
        font-size: 16px;
    }

    .page-header-stats {
        gap: 40px;
    }

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

@media (max-width: 576px) {
    .page-header {
        padding: 60px 0 30px;
    }

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

    .page-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

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

    .stat-item {
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
}

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

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #0047AB, #3B82F6);
}

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

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

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-member h3 {
    font-size: 20px;
    color: #333;
    margin: 20px 0 5px;
    padding: 0 20px;
}

.team-member p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding: 0 20px;
}

/* Stats Section Styles */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0047AB, #3B82F6);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

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

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

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

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

    .team-section h2 {
        font-size: 28px;
    }

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

/* Timeline Section Styles */
.timeline-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.timeline-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.timeline-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #0047AB, #3B82F6);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #0047AB, #3B82F6);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #0047AB;
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #0047AB, #3B82F6);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Mission Section Styles */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0047AB, #3B82F6);
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.mission-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.mission-quote {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 50px;
    font-style: italic;
    position: relative;
    padding: 0 40px;
}

.mission-quote::before,
.mission-quote::after {
    content: '"';
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
}

.mission-quote::before {
    left: 0;
    top: -20px;
}

.mission-quote::after {
    right: 0;
    bottom: -40px;
}

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

.pillar {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
}

.pillar i {
    font-size: 36px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.pillar h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.pillar p {
    font-size: 14px;
    opacity: 0.9;
}

/* Impact Section Styles */
.impact-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.impact-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.impact-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #0047AB, #3B82F6);
}

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

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

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-icon {
    background: linear-gradient(135deg, #0047AB, #3B82F6);
    color: white;
    padding: 30px;
    text-align: center;
}

.impact-icon i {
    font-size: 36px;
}

.impact-content {
    padding: 30px;
}

.impact-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

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

.impact-content li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.impact-content li::before {
    content: '•';
    color: #0047AB;
    position: absolute;
    left: 0;
}

@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        justify-content: flex-start;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

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

@media (max-width: 576px) {
    .mission-pillars,
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .mission-quote {
        font-size: 20px;
        padding: 0 20px;
    }

    .timeline-section h2,
    .mission-text h2,
    .impact-section h2 {
        font-size: 28px;
    }
}

/* About Hero Section Styles */
.about-hero {
    height: 100vh;
    background-image: url('https://albatross-travel.com/img/68495eba1e8f2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 44, 105, 0.9), rgba(12, 62, 143, 0.8));
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.hero-stat .stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-stat .stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-cta .btn {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background: white;
    color: #0047AB;
    border: 2px solid white;
}

.hero-cta .btn-primary:hover {
    background: transparent;
    color: white;
}

.hero-cta .btn-outline {
    border: 2px solid white;
    color: white;
}

.hero-cta .btn-outline:hover {
    background: white;
    color: #0047AB;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    opacity: 0.8;
    animation: fadeIn 1s ease-out 1.2s both;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll i {
    font-size: 20px;
    animation: bounce 2s infinite;
}

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        gap: 40px;
    }

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

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

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

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.form-content > p {
    color: #666;
    margin-bottom: 30px;
}

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

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

.form-group:nth-last-child(2) {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0047AB;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    grid-column: 1 / -1;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 8px;
    background: #0047AB;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    background: #003380;
    transform: translateY(-2px);
}

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

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .form-group:nth-last-child(2) {
        grid-column: auto;
    }

    .form-container {
        padding: 20px;
    }
}

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

    .contact-card {
        padding: 20px;
    }

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

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

/* Destinations Page Styles */
.destinations-hero {
    height: 80vh;
    position: relative;
  background-image: url('https://albatross-travel.com/img/68496ac69f544.webp');

    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.destinations-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.destinations-hero .container {
    position: relative;
    z-index: 2;
}

.destinations-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.destinations-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.destinations-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.destinations-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.destinations-hero .hero-stat {
    text-align: center;
}

.destinations-hero .hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
    margin-bottom: 5px;
}

.destinations-hero .hero-stat .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.destinations-hero .hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.destinations-hero .hero-cta .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.destinations-hero .hero-cta .btn-primary {
    background: #0047AB;
    color: white;
    border: 2px solid #0047AB;
}

.destinations-hero .hero-cta .btn-primary:hover {
    background: #003d91;
    border-color: #003d91;
    transform: translateY(-2px);
}

.destinations-hero .hero-cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.destinations-hero .hero-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.destinations-hero .hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.destinations-hero .hero-scroll:hover {
    transform: translateX(-50%) translateY(-5px);
}

.destinations-hero .hero-scroll span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destinations-hero .hero-scroll i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* Destinations Section Styles */
.destinations-section {
    padding: 80px 0;
    position: relative;
}

.destinations-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.destinations-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0047AB;
}

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

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

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

.destination-image {
    height: 250px;
    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-content {
    padding: 25px;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.destination-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.destination-content .btn {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.destination-content .btn-outline {
    border: 2px solid #0047AB;
    color: #0047AB;
}

.destination-content .btn-outline:hover {
    background: #0047AB;
    color: white;
}

/* Section-specific styles */
.coastal-section {
    background-color: #f8f9fa;
}

.mountain-section {
    background-color: white;
}

.cultural-section {
    background-color: #f8f9fa;
}

/* Responsive styles */
@media (max-width: 992px) {
    .destinations-hero .hero-title {
        font-size: 2.8rem;
    }

    .destinations-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .destinations-hero .hero-stats {
        gap: 30px;
    }

    .destinations-hero .hero-stat .stat-number {
        font-size: 2rem;
    }

    .destinations-section {
        padding: 60px 0;
    }

    .destinations-section h2 {
        font-size: 2rem;
    }

    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .destinations-hero .hero-title {
        font-size: 2.2rem;
    }

    .destinations-hero .hero-subtitle {
        font-size: 1rem;
    }

    .destinations-hero .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .destinations-hero .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .destinations-hero .hero-cta .btn {
        width: 100%;
    }

    .destinations-section {
        padding: 40px 0;
    }

    .destinations-section h2 {
        font-size: 1.8rem;
    }

    .destination-image {
        height: 200px;
    }

    .destination-content {
        padding: 20px;
    }

    .destination-content h3 {
        font-size: 1.3rem;
    }
}