/* Color Variables */
:root {
    --primary-blue: #2FA4E7;
    --primary-blue-medium: #1F7FCF;
    --primary-blue-light: #6EC6F1;
    --secondary-orange: #F7931E;
    --secondary-orange-dark: #E56A0A;
    --secondary-orange-light: #FFC266;
    --white: #FFFFFF;
    --navbar-dark: #1a1f3a;
    --navbar-dark-hover: #2a3455;
}

/* Website Header Styles */
.website-header {
    background: var(--navbar-dark);
    padding: 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-bottom: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-dark {
    background-color: var(--navbar-dark) !important;
    padding: 1rem 0;
    border-radius: 0;
}

.navbar-dark .navbar-brand {
    color: var(--white) !important;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-dark .brand-icon {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.navbar-dark .brand-logo {
    height: 35px;
    width: auto;
    margin-right: 0.75rem;
    object-fit: contain;
}

.navbar-dark .brand-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
}

.navbar-dark .navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.navbar-dark .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-dark .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-dark .nav-link.active {
    color: var(--white) !important;
    font-weight: 600;
}

.btn-cta {
    background-color: var(--secondary-orange);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background-color: var(--secondary-orange-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.navbar-dark .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 0.25rem 0.5rem;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Styles */
.mobile-header {
    background-color: var(--navbar-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
}

.mobile-header .offcanvas-title {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.mobile-header .brand-icon {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.mobile-header .brand-text {
    color: var(--white);
}

.mobile-header .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.mobile-menu-body {
    background-color: #e8ecf1;
    padding: 0;
}

.mobile-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    font-family: sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-menu-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #333;
}

.mobile-menu-link.active {
    color: var(--secondary-orange);
    background-color: rgba(247, 147, 30, 0.1);
    font-weight: 600;
}

.mobile-cta-wrapper {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-cta-mobile {
    width: 100%;
    background-color: var(--secondary-orange);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-cta-mobile:hover {
    background-color: var(--secondary-orange-dark);
    color: var(--white);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

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

.hero-content-wrapper {
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    font-family: sans-serif;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
    font-family: sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-statistics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: sans-serif;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Countries Scroller in Hero */
.countries-scroller-wrapper {
    margin-bottom: 2rem;
}

.countries-scroller-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: sans-serif;
}

.countries-scroller-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countries-scroller {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 0.5rem 0;
}

.countries-scroller::-webkit-scrollbar {
    display: none;
}

.country-scroll-item {
    flex: 0 0 auto;
    min-width: 100px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.country-scroll-flag {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    overflow: hidden;
}

.country-scroll-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-scroll-flag .flag-placeholder {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.country-scroll-name {
    font-size: 0.85rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
    font-family: sans-serif;
    white-space: nowrap;
}

.scroll-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: scale(1.1);
}

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

/* Tracking Search Box in Hero */
.tracking-search-box {
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
}

.tracking-search-box .input-group {
    flex-wrap: nowrap;
}

.tracking-search-box .input-group-text {
    border: none;
    border-right: 1px solid #dee2e6;
    background-color: var(--white);
}

.tracking-search-box .input-group-text i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.tracking-search-box .form-control {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

.tracking-search-box .form-control:focus {
    box-shadow: 0 2px 15px rgba(47, 164, 231, 0.3);
    border-color: var(--primary-blue);
    background-color: var(--white);
}

.tracking-search-box .form-control::placeholder {
    color: #999;
}

.btn-search-tracking {
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    white-space: nowrap;
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-search-tracking i {
    font-size: 1rem;
}

.btn-search-tracking:hover {
    background-color: var(--primary-blue-medium);
    color: #fff;
}

.search-hint {
    text-align: center;
}

.search-hint small {
    font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-dark .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1rem;
    }
    
    .navbar-dark .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-dark .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    .btn-cta {
        width: 100%;
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-statistics {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .tracking-search-box {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .website-header {
        padding: 0;
    }
    
    .navbar-dark {
        padding: 0.75rem 0;
    }
    
    .navbar-dark .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-dark .brand-icon,
    .navbar-dark .brand-logo {
        font-size: 1.2rem;
        height: 30px;
        margin-right: 0.5rem;
    }
    
    .hero-section {
        min-height: 500px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .navbar-dark .navbar-brand {
        font-size: 0.95rem;
    }
    
    .navbar-dark .brand-icon,
    .navbar-dark .brand-logo {
        font-size: 1rem;
        height: 25px;
        margin-right: 0.5rem;
    }
    
    .hero-section {
        min-height: 450px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .tracking-search-box {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .tracking-search-box .input-group-lg {
        flex-wrap: nowrap;
    }
    
    .tracking-search-box .input-group-text {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1rem;
        border-radius: 8px 0 0 8px;
    }
    
    .tracking-search-box .form-control-lg {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        border-radius: 0;
    }
    
    .btn-search-tracking {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-radius: 0 8px 8px 0;
        min-width: 50px;
    }
    
    .btn-search-tracking i {
        font-size: 1.1rem;
    }
    
    .search-hint {
        padding: 0 1rem;
    }
    
    .search-hint small {
        font-size: 0.8rem;
    }
}

/* Countries Section Styles */
.countries-section {
    background-color: var(--white);
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    position: relative;
}

.countries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(110, 198, 241, 0.03), rgba(255, 255, 255, 0.3));
    z-index: 0;
}

.countries-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue-medium);
    margin-bottom: 1rem;
    font-family: sans-serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-family: sans-serif;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa;
}

.testimonials-scroller-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-scroller {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue) transparent;
    flex: 1;
    padding: 1rem 0;
}

.testimonials-scroller::-webkit-scrollbar {
    height: 6px;
}

.testimonials-scroller::-webkit-scrollbar-track {
    background: transparent;
}

.testimonials-scroller::-webkit-scrollbar-thumb {
    background-color: var(--primary-blue);
    border-radius: 3px;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.testimonial-profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
}

.testimonial-profile-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.5rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    font-family: sans-serif;
}

.testimonial-body {
    color: #555;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
    color: #666;
    font-family: sans-serif;
}

.testimonial-image-wrapper {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.testimonial-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.testimonial-scroll-btn {
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.testimonial-scroll-btn:hover {
    background-color: var(--primary-blue-medium);
}

.testimonial-scroll-btn:disabled,
.testimonial-scroll-btn[style*="pointer-events: none"] {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-scroll-btn i {
    font-size: 1.2rem;
}

/* Footer Styles */
/* Footer CTA Section */
.footer-cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    position: relative;
}

.footer-cta-card {
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.footer-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.footer-cta-card > * {
    position: relative;
    z-index: 2;
}

.footer-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    font-family: sans-serif;
    line-height: 1.3;
}

.footer-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-booking {
  background: linear-gradient(135deg, #f5f5f5 0%, #f7931e 100%);    color: #333;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: sans-serif;
    border: none;
}

.btn-cta-booking:hover {
    background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #333;
}

.btn-cta-booking i {
    font-size: 1rem;
}

.btn-cta-consult {
    background: linear-gradient(135deg, #20B2AA 0%, #008B8B 100%);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: sans-serif;
    border: none;
}

.btn-cta-consult:hover {
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.4);
    color: #ffffff;
}

.btn-cta-consult i {
    font-size: 1rem;
}

.website-footer {
    background-color: #ffffff;
    color: #333;
    padding: 3rem 0 1rem;
    border-top: 1px solid #e0e0e0;
}

.website-footer .row {
    align-items: flex-start;
}

.website-footer .col-lg-3 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-brand-icon {
    color: #4CAF50;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.footer-brand-icon i {
    color: #4CAF50;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    font-family: sans-serif;
}

.footer-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-family: sans-serif;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    color: #666;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Title */
.footer-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-family: sans-serif;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li a {
    color: #666;
    font-size: 0.95rem;
    text-decoration: none;
    font-family: sans-serif;
    transition: color 0.3s ease;
}

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

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.95rem;
    font-family: sans-serif;
}

.footer-contact-list li i {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-contact-list li span {
    line-height: 1.5;
}

.footer-divider {
    border-color: rgba(0, 0, 0, 0.1);
    margin: 2rem 0 1rem;
}

.footer-copyright-wrapper {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
    font-family: sans-serif;
}

@media (max-width: 991px) {
    .website-footer .col-lg-3 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-cta-section {
        padding: 3rem 0;
    }
    
    .footer-cta-card {
        padding: 3rem 2rem;
        border-radius: 16px;
    }
    
    .footer-cta-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-cta-booking,
    .btn-cta-consult {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
    
    .website-footer {
        padding: 2rem 0 1rem;
    }
    
    .website-footer .col-md-6,
    .website-footer .col-md-12 {
        margin-bottom: 2rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-brand-name {
        font-size: 1.25rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-contact-list li {
        font-size: 0.9rem;
    }
    
    .footer-links li a {
        font-size: 0.9rem;
    }
    
    .footer-copyright-wrapper {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .testimonials-section {
        padding: 2rem 0;
    }
    
    .testimonial-card {
        width: 280px;
    }
    
    .testimonial-scroll-btn {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-card {
        width: 260px;
        padding: 1.25rem;
    }
    
    .testimonial-profile-img,
    .testimonial-profile-placeholder {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-scroll-btn {
        width: 32px;
        height: 32px;
    }
    
    .testimonial-scroll-btn i {
        font-size: 1rem;
    }
}

/* Country Card Styles */
.country-card-wrapper {
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
}

.country-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
}

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

.country-flag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

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

.flag-placeholder {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    padding: 0;
}

.country-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #000;
}

.country-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

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

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

.country-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.country-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    font-family: sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.visa-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: sans-serif;
    align-self: flex-start;
}

.badge-business {
    background-color: var(--primary-blue);
    color: var(--white);
}

.badge-tourist {
    background-color: #8B5CF6;
    color: var(--white);
}

.country-card-footer {
    padding: 1rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.country-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
    font-family: sans-serif;
}

.country-info-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.country-info-item i {
    font-size: 0.9rem;
    color: var(--primary-blue);
}

.btn-booking {
    width: 100%;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-booking:hover {
    background-color: var(--primary-blue-medium);
    color: var(--white);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .country-card-wrapper {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
    
    .country-image {
        height: 180px;
    }
    
    .country-name {
        font-size: 1.2rem;
    }
    
    .country-info-row {
        font-size: 0.8rem;
    }
    
    .btn-booking {
        font-size: 0.85rem;
        padding: 0.45rem 0.9rem;
    }
}

@media (max-width: 576px) {
    .country-card-wrapper {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
    
    .country-image {
        height: 180px;
    }
    
    .country-name {
        font-size: 1.1rem;
    }
    
    .visa-type-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .country-info-row {
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    
    .country-info-item {
        font-size: 0.75rem;
    }
    
    .country-info-item i {
        font-size: 0.8rem;
    }
    
    .btn-booking {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    .country-card-footer {
        padding: 0.75rem;
    }
    
    .tracking-search-box {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .tracking-search-box .input-group-lg {
        flex-wrap: nowrap;
    }
    
    .tracking-search-box .form-control-lg {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        border-radius: 8px 0 0 8px;
    }
    
    .btn-search-tracking {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-radius: 0 8px 8px 0;
    }
    
    .btn-search-tracking i {
        font-size: 1rem;
    }
    
    .search-hint {
        padding: 0 1rem;
    }
    
    .search-hint small {
        font-size: 0.8rem;
    }
}

/* Tracking Modal Styles */
.timeline {
    position: relative;
    padding-left: 0;
}

.timeline-item {
    position: relative;
}

.timeline-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-top: 0.25rem;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 20px;
    width: 2px;
    height: calc(100% + 0.5rem);
    background-color: #dee2e6;
}

/* Visa Term Content - Preserve Line Breaks */
.visa-term-content {
    white-space: pre-line;
    word-wrap: break-word;
}

/* Load More Button */
.btn-load-more {
    background-color: #f7931f;
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: sans-serif;
    box-shadow: 0 2px 8px rgba(47, 164, 231, 0.3);
}

.btn-load-more:hover {
    background-color: var(--primary-blue-medium);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 164, 231, 0.4);
}

.btn-load-more i {
    margin-right: 0.5rem;
}
