/* ========== CSS Variables ========== */
:root {
    --primary-color: #F4B430;
    --secondary-color: #08467C;
    --dark-color: #000000;
    --light-color: #F1F1F1;
    --white: #FFFFFF;
    --success-color: #2E8B57;
    --warning-color: #F4B430;
    --danger-color: #C0392B;
    --text-color: #1C1C1C;
    --border-color: #E0E0E0;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 25px rgba(0, 0, 0, 0.15);
}

/* ========== Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.page-banner{
    padding-top: 30px;
}
/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-success {
    background-color: var(--success-color);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* ========== Header ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.contain-typing {
    display: flex;
    justify-content: center;
}

.typing {
    text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  border-right: 3px solid #333;
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 4s steps(30) infinite, blink 0.7s infinite;
}

@keyframes typing {
  0% { width: 0; }
  50% { width: 240px; }
  100% { width: 0; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo i {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
    padding-left: 10px;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 5px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color);
}

/* ========== Hero Section ========== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../images/hero-bg.webp') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 80px 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-cta {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    display: inline-block;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-cta h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.hero-cta h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ========== Section Header ========== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h6 {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* ========== Destinations Section ========== */
.destinations {
    padding: 80px 0;
    background: url(../images/bg-destinations.webp) center/cover no-repeat fixed;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.destination-card{
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}


.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.destination-card h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

/* ========== About Section ========== */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h6 {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ========== Tours Grid ========== */
.featured-tours,
.tours-listing {
    padding: 50px 0;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tour-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.tour-content {
    padding: 25px;
}

.tour-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.tour-info i {
    color: var(--primary-color);
}

.tour-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.tour-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.tour-price .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.tour-price .per-person {
    font-size: 12px;
    color: #999;
    display: block;
}

.price_tour {
    display: grid;
    justify-content: center;
    position: relative;
}

.price_tour .discount {
    font-size: 15px;
    text-decoration: line-through;
    text-decoration-color: red;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    color: red;
    position: absolute;
    z-index: 0;
}

.discount_card {
    bottom: 30px;
    left: 5%;
}

.discount_similair {
    position: absolute;
    bottom: 32px;
    left: 0;
}

.dicount_detail {
    left: 23%;
}

.cta-content {
    padding-bottom: 20px;
    text-align: center;
}

.cta-content p {
    padding: 14px 0;
}

/* ========== Why Choose Us ========== */
.about-section,
.why-choose-us {
    padding: 80px 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.feature-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* ========== Reviews Section ========== */
.reviews-section {
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-header img {
    height: 30px;
}

.rating i {
    color: #ffa726;
}

.review-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
    color: var(--dark-color);
}

/* ========== Footer ========== */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.contact-list i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-links a img,
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}
.social-links a.facebook {
    background-color: #1877F2;
}

/* Instagram */
.social-links a.instagram {
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285AEB 90%
    );
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* ========== WhatsApp Float Button ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
}

/* ========== Fade-in Scroll Animation ========== */
.fade-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}


/* ========== Scroll Top Button ========== */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
    font-size: 20px;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* ========== Form Elements ========== */
.filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-group label {
    font-weight: 600;
    color: var(--dark-color);
}

.filter-group select {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.results-count {
    color: #666;
}

.results-count strong {
    color: var(--primary-color);
    font-size: 18px;
}

.form-field,
.form-group {
    margin-bottom: 15px;
}

.form-field label,
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-field input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ========== Utility Classes ========== */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

/* ========== Mobile Responsive ========== */
@media (max-width: 1024px) {
    .dicount_detail {
        left: 40%;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 20px 40px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-menu > li > a {
        display: block;
        padding: 15px 20px;
        border-radius: 8px;
        transition: background 0.3s;
    }

    .nav-menu > li > a:hover {
        background-color: var(--light-color);
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        background: var(--light-color);
        border-radius: 8px;
        margin-top: 10px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 12px 15px;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 510px) {
    .top-bar {
        font-size: 8px;
    }
}

@media (max-width: 350px) {
    .top-bar {
        font-size: 4px;
        opacity: 0;
    }
}


.about-page {
    padding: 80px 0;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.lead {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.about-page .about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.about-page .about-content-grid .about-image,
.about-page .about-content-grid .terme-image,
.about-page .about-content-grid .faq-image{
    width: 100%;
    height: 70vh;
    position: sticky;
    top: 160px;
}
.about-text h3 {
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-size: 24px;
}

.about-text p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 10px 0;
    color: #666;
}

.check-list i {
    color: var(--success-color);
    margin-right: 10px;
}

.about-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 10px;
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(90deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
}

.stat-card i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 18px;
    opacity: 0.9;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
}

.team-member h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/images/cta-bg.webp') center/cover;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .about-page .about-content-grid {
        grid-template-columns: 1fr;
    }
.about-page .about-content-grid .about-image, .about-page .about-content-grid .terme-image, .about-page .about-content-grid .faq-image{
    position: static;
}
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}