/* Global Styles */
:root {
    --primary-color: var(--primary);
    --secondary-color: var(--secondary);
    --accent-color: #00a8ff;
    --dark-bg: #0a1628;
    --light-bg: #f8f9fa;
    --text-dark: var(--dark-black-color);
    --text-light: var(--text-dark-gray-color);
    --card-bg: #ffffff;
    --dark-color: var(--dark-black-color);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtext {
    font-size: 0.9rem;
    color: var(--text-color);
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-color), #06b6d4);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Products dropdown */
.custom-dropdown {
    position: relative;
    cursor: pointer;
}

/* Arrow icon */
.arrow-icon {
    display: inline-block;
    margin-left: 6px;
    margin-bottom: 3px;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.custom-dropdown:hover .arrow-icon {
    transform: rotate(-135deg);
}

/* Dropdown container */
.dropdown-menu-custom {
    position: absolute;
    top: 120%;
    left: 0;
    list-style-type: none;
    min-width: 200px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
    padding: 10px 0;
    z-index: 999;
}

/* Show dropdown on hover */
.custom-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.dropdown-item-custom {
    display: block;
    padding: 10px 20px;
    color: var(--dark-color);
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, padding-left 0.3s ease;
}

/* Hover effect for dropdown items */
.dropdown-item-custom:hover {
    background: rgba(0, 0, 0, 0.04);
    padding-left: 26px;
    color: var(--primary-color);
}

/* Badge styling */
.badge-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.badge-link:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Hero Section */
.hero-section {
    padding: 140px 0 100px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    position: relative;
        background: url('../../assets/news/news_cover.avif') center center / cover no-repeat;

    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('../../assets/news/news_cover.avif'); */
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.badge-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    /* font-size: 1rem; */
    /* font-weight: 600; */
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    /* font-size: 3.5rem; */
    /* font-weight: 700; */
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    /* font-size: 1rem; */
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 600px;
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Growth Section */
.growth-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.section-title {
    /* font-size: 2rem; */
    /* font-weight: 700; */
    /* color: var(--primary-color); */
    margin-bottom: 2rem;
}

.growth-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.growth-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: translateX(10px);
}

.growth-number {
    font-size: 1.5rem;
    font-weight: 700;
    /* color: var(--primary-color); */
    min-width: 40px;
}

.growth-content p {
    margin-bottom: 1rem;
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* News Card */
/* .news-card {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.3);
    color: white;
    height: 100%;
} */
 
.news-card {
    /* background: linear-gradient(135deg, #0066cc 0%, #003d7a 100%); */
    background: linear-gradient(135deg, #5331ff 0%, #559def 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.3);
    color: white;
    height: 100%;
}
 
.news-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.news-header i {
    /* font-size: 2rem; */
    color: var(--accent-color);
}

.news-header h4 {
    /* font-size: 1.8rem; */
    /* font-weight: 700; */
    margin: 0;
    color: var(--card-bg);
}

.news-subtitle {
    /* font-size: 1.8rem; */
    margin-bottom: 1.5rem;
    /* font-weight: 600; */
    color: var(--card-bg);
}

.news-list {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 1rem;
}

.news-list::-webkit-scrollbar {
    width: 6px;
}

.news-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.news-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.news-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: slideInLeft 0.5s ease forwards;
    opacity: 0;
}

.news-item:nth-child(1) {
    animation-delay: 0.1s;
}

.news-item:nth-child(2) {
    animation-delay: 0.2s;
}

.news-item:nth-child(3) {
    animation-delay: 0.3s;
}

.news-item:nth-child(4) {
    animation-delay: 0.4s;
}

.news-item:nth-child(5) {
    animation-delay: 0.5s;
}

.news-item:nth-child(6) {
    animation-delay: 0.6s;
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.news-icon {
    min-width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.news-text h5 {
    /* font-size: 1rem; */
    /* font-weight: 600; */
    margin-bottom: 0.5rem;
    color: var(--card-bg);
}

.news-text p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    color: var(--card-bg);
}

.sub-list {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.sub-list li {
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    color: var(--card-bg);
}

.sub-list li::before {
    content: '→';
    position: absolute;
    left: 0;
}

.chart-image {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.chart-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.chart-image img:hover {
    transform: scale(1.05);
}

/* Partnerships Section */
.partnerships-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.partnership-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.partnership-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.partnership-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.partnership-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.brand-subtext {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Travel Section */
.travel-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    margin-bottom: 4rem;
}

.section-main-title {
    /* font-size: 2rem; */
    /* font-weight: 700; */
    /* color: var(--secondary-color); */
    margin-bottom: 1rem;
}

.section-subtitle {
    /* font-size: 1rem; */
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
}

.travel-brand-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
}

.travel-logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.travel-images img {
    transition: transform 0.3s ease;
}

.travel-images img:hover {
    transform: scale(1.05);
}

.travel-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-content h4 {
    /* font-size: 1.5rem; */
    /* font-weight: 600; */
    margin-bottom: 0.5rem;
    /* color: var(--secondary-color); */
}

.feature-content p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.sustainability-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 20px;
    color: white;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.sustainability-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.quote-icon {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.sustainability-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sustainability-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.upcoming-features p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-register {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-info {
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.contact-info a {
    color: white;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    /* font-size: 1.25rem; */
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    /* background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); */
    background: linear-gradient(90deg, #6c757d, #fff);
}

.footer-links {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
    padding-left: 5px;
}

.footer-links i {
    /* color: var(--primary-color); */
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), #06b6d4);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-main-title {
        font-size: 2rem;
    }

    .partnership-title {
        font-size: 2rem;
    }

    .travel-logo {
        font-size: 2.5rem;
    }

    .partnership-logo {
        align-items: flex-start;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-card,
    .news-card {
        padding: 2rem;
    }

    .growth-section,
    .travel-section {
        padding: 60px 0;
    }

    .partnerships-section {
        padding: 60px 0;
    }

    .section-main-title {
        font-size: 1.8rem;
    }

    .feature-card {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .logo-container {
        margin-left: -100px;
    }
}