/* === GLOBAL STYLES === */
:root {
    --primary: #1a3a6b;
    --primary-light: #2a4f8a;
    --primary-dark: #0d2444;
    --secondary: #e6b85e;
    --secondary-light: #f0d08c;
    --secondary-dark: #d9a037;
    --accent: #8c6d46;
    --light: #f8f5f0;
    --dark: #1a1a1a;
    --text: #333333;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

.home-page {
    padding-top: 80px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.3rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn {
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* === NAVIGATION === */
/* === NAVBAR STYLES === */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    background-color: #0d2444 !important;
}

/* Navbar when scrolled */
.navbar.scrolled {
    background-color: rgba(26, 58, 107, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

/* Logo styles */
.navbar .logo {
    height: 40px;
    transition: all 0.5s ease;
}

.navbar.scrolled .logo {
    height: 35px;
}

/* Nav links - initial state (transparent navbar) */
.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
    position: relative;
}

/* Nav links - scrolled state */
.navbar.scrolled .nav-link {
    color: var(--white);
}

/* Nav link hover/active underline */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

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

/* Nav link hover/active color */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary);
}

/* Search box - initial state (transparent navbar) */
.search-box {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5px 15px;
    transition: all 0.3s ease;
}

/* Search box - scrolled state */
.navbar.scrolled .search-box {
    background-color: rgba(255, 255, 255, 0.2);
}

.search-box input {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 8px;
    width: 0;
    transition: width 0.3s ease;
    opacity: 0;
}

.search-box.active input {
    width: 200px;
    opacity: 1;
}

.search-box button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
}

/* Book Consultation button */
.book-consultation {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.book-consultation:hover {
    background-color: var(--white);
    color: var(--dark);
}

/* === HERO SLIDER === */
.hero-slider {
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-slider .item {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider .slide-1 {
    background-image: url('../resources/images/singapore.jpg');
}

.hero-slider .slide-2 {
    background-image: url('../resources/images/china.jpg');
}

.hero-slider .slide-3 {
    background-image: url('../resources/images/dubai.jpg');
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 100px 0;
    color: var(--white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.slide-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* === SECTION STYLES === */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header.text-left {
    text-align: left;
}

.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.section-header.text-left h2::after {
    left: 0;
    transform: none;
}

/* === TRUSTED BRANDS === */
.trusted-brands {
    padding: 80px 0;
    background-color: var(--white);
}

.brands-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.brands-carousel img {
    max-height: 100px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    object-fit: contain;
}

.brands-carousel img:hover {
    opacity: 1;
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.5);
    transition: all 0.3s ease-in-out;
}

/* === DESTINATION SHOWCASE === */
.destination-showcase {
    padding: 80px 0;
}

.destination-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.destination-image {
    width: 100%;
    height: 100%;
}

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

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease;
}

.destination-card:hover .destination-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* === EXPERIENCE SECTION === */
.experience-section {
    padding: 80px 0;
    background-color: var(--light);
}

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

.feature-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--white);
    border-radius: 30px;
    margin: 20px 0;
}

.award-badge i {
    color: var(--secondary);
    font-size: 1.2rem;
}

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

.benefits-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list i {
    color: var(--secondary);
}

/* === BLOG SECTION === */
.blog-section {
    padding: 80px 0;
    background-color: var(--white);
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    height: 100%;
}

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

.blog-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
}

.blog-content {
    padding: 20px;
}

.blog-author {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 500;
}

.read-more:hover {
    color: var(--primary-dark);
}

/* === TOUR TYPES === */
.tour-types {
    padding: 80px 0;
    background-color: var(--light);
}

.tours-carousel .owl-stage {
    display: flex;
    padding: 20px 0;
}

.tour-type-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    height: 100%;
}

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

.tour-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* === ABOUT SECTION === */
.about-section {
    padding: 80px 0;
}

.consultation-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: var(--light);
    border-radius: 8px;
    margin: 20px 0;
}

.consultation-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

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

.checklist i {
    color: var(--secondary);
}

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

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* === FOOTER === */
.main-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

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

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

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

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary);
    width: 20px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.95rem;
}

.newsletter-form button {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--white);
}
.main-footer h3{
    color: #fff;
}

.main-footer h5{
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    color: #fff;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

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

/* === RESPONSIVE STYLES === */
@media (max-width: 992px) {
    .hero-slider .slide-content h1 {
        font-size: 2.8rem;
    }

    .slide-content {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .hero-slider .slide-content h1 {
        font-size: 2.2rem;
    }

    .hero-slider .slide-content p {
        font-size: 1rem;
    }

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

    .navbar .search-box {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .navbar-brand .logo {
        height: 30px;
    }

    .hero-slider {
        height: 70vh;
    }

    .hero-slider .item {
        height: 70vh;
    }

    .hero-slider .slide-content h1 {
        font-size: 1.8rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}