@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --action-purple: #6d28d9;
    --action-green: #16a34a;
    --dark-color: #2d3748;
    --light-color: #f7fafc;
    --text-color: #333;
    --nav-height: 92px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
    box-shadow: none;
    z-index: 1000;
    height: var(--nav-height);
    padding: 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(90deg, var(--action-green) 0%, var(--action-purple) 100%);
    box-shadow: 0 10px 28px rgba(22, 163, 74, 0.24), 0 10px 28px rgba(109, 40, 217, 0.24);
}

.nav-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo {
    color: #ffffff;
}

.logo i {
    font-size: 1.8rem;
}

.logo-image {
    width: auto;
    height: 52px;
    width: 170px;
    max-width: 170px;
    object-fit: contain;
    display: block;
}

.logo-image.logo-color {
    display: none;
    height: 52px;
    width: 170px;
    max-width: 170px;
}

.navbar.scrolled .logo-image.logo-white {
    display: none;
}

.navbar.scrolled .logo-image.logo-color {
    display: block;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0.08rem;
    align-items: center;
    flex-wrap: nowrap;
    flex: 0 0 auto;
    justify-content: flex-start;
    margin: 0;
}

.nav-menu > li {
    position: relative;
    flex-shrink: 0;
}

.nav-menu > .login-btn,
.nav-menu > .user-dropdown {
    margin-left: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.82rem 1.05rem;
    border-radius: 5px;
    display: block;
    white-space: nowrap;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.28px;
    font-family: 'Roboto Condensed', 'Arial Narrow', 'Segoe UI', sans-serif;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 52px;
}

.navbar.scrolled .nav-menu a {
    color: #ffffff;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.26), 0 8px 18px rgba(109, 40, 217, 0.24);
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.24), 0 8px 18px rgba(109, 40, 217, 0.22);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 180px;
    width: max-content;
    max-width: 220px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0.12rem 0.35rem;
    width: calc(100% - 0.7rem);
    padding: 0.62rem 1rem;
    color: var(--text-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.88), rgba(109, 40, 217, 0.84));
    color: white;
    padding-left: 1.2rem;
}

/* Legacy hotline item hidden */
.phone-link {
    display: none;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

/* Login Button Style */
.login-btn a {
    background: linear-gradient(135deg, var(--action-purple), var(--action-green));
    color: white !important;
    display: flex;
    align-items: center;
    gap: 0.42rem;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.22), 0 8px 18px rgba(109, 40, 217, 0.2);
    min-height: 52px;
    border-radius: 999px;
}

.login-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.3), 0 10px 20px rgba(109, 40, 217, 0.26);
}

/* User Dropdown */
.user-dropdown .dropdown-toggle {
    background: linear-gradient(135deg, var(--action-purple), var(--action-green));
    color: white !important;
}

.navbar.scrolled .dropdown-menu a {
    color: var(--text-color);
    box-shadow: none;
}

.navbar.scrolled .dropdown-menu a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--action-green), var(--action-purple));
    box-shadow: none;
}

.user-dropdown .dropdown-menu {
    min-width: 200px;
}

.user-dropdown .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-dropdown .dropdown-menu a i {
    width: 20px;
}

/* Hero Banner */
.hero-banner-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
        url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.5s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* Banner Controls */
.banner-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-control:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.banner-control.prev {
    left: 2rem;
}

.banner-control.next {
    right: 2rem;
}

/* Banner Indicators */
.banner-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.banner-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.banner-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.banner-indicators .indicator.active {
    background: white;
    width: 40px;
    border-radius: 10px;
}

/* ========================================
   PRESIDENT MESSAGE SECTION
======================================== */

.president-message-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    clear: both;
}

.president-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
    line-height: 1.4;
}

.president-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.president-left {
    position: sticky;
    top: 100px;
}

.president-image-wrapper {
    position: relative;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow:
        0 18px 50px rgba(15, 23, 42, 0.14),
        0 2px 8px rgba(15, 23, 42, 0.06);
}

.president-image {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 18px;
    filter: saturate(1.08) contrast(1.08);
}

.president-image-wrapper:hover .president-image {
    transform: scale(1.05);
}

.president-info {
    text-align: center;
}

.president-name {
    font-size: 1.75rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.president-designation {
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.president-right {
    padding: 1rem 0;
}

.message-greeting {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.message-text {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.rich-text-content {
    color: inherit;
    line-height: inherit;
}

.rich-text-content > :first-child {
    margin-top: 0;
}

.rich-text-content > :last-child {
    margin-bottom: 0;
}

.rich-text-content p {
    margin: 0 0 0.9rem;
}

.rich-text-content ul,
.rich-text-content ol {
    margin: 0.75rem 0 0.9rem 1.5rem;
    padding-left: 1rem;
}

.rich-text-content li {
    margin-bottom: 0.4rem;
}

.rich-text-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.preview-text.rich-text-content,
.preview-conclusion.rich-text-content {
    color: #4a5568;
}

.preview-text.rich-text-content p,
.preview-conclusion.rich-text-content p {
    margin-bottom: 0.9rem;
}

.message-points {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.message-points > li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #1f2937;
    line-height: 1.8;
    align-items: flex-start;
    font-weight: 500;
}

.message-points > li > i {
    color: var(--secondary-color);
    font-size: 0.5rem;
    margin-top: 0.6rem;
    flex-shrink: 0;
}

.message-points > li > div {
    flex: 1;
}

.message-subpoints {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.75rem;
}

.message-subpoints li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #334155;
    line-height: 1.6;
}

.message-subpoints i {
    color: var(--secondary-color);
    font-size: 0.35rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.message-conclusion {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.8;
    margin-top: 2rem;
}

/* President Section Responsive */
@media (max-width: 1200px) {
    .president-content {
        grid-template-columns: 350px 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .president-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .president-left {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .president-message-section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .president-message-section {
        padding: 3rem 1.5rem;
    }
    
    .president-title {
        font-size: 1.75rem;
    }
    
    .message-greeting {
        font-size: 1.5rem;
    }
    
    .message-text,
    .message-conclusion {
        font-size: 1rem;
    }
    
    .president-content {
        gap: 2rem;
    }
    
    .president-left {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .president-image-wrapper {
        padding: 0.75rem;
        border-radius: 24px;
        box-shadow:
            0 12px 32px rgba(15, 23, 42, 0.12),
            0 2px 6px rgba(15, 23, 42, 0.06);
    }

    .president-image {
        max-height: 460px;
        border-radius: 14px;
    }
    
    .message-points > li {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .message-subpoints {
        padding-left: 1rem;
    }
}

/* ========================================
   TRAVEL BOOKING SECTION
======================================== */

.travel-booking-section {
    position: relative;
    margin-top: -48px;
    padding: 0 2rem 3rem;
    z-index: 10;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.overseas-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
    gap: 2rem;
    padding: 2.5rem;
    align-items: start;
}

.overseas-overview-copy h2 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1.15;
    color: #16213e;
}

.overseas-overview-copy > p {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    max-width: 760px;
}

.overview-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(102, 126, 234, 0.12);
    color: #4c51bf;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.overview-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.overview-point {
    display: flex;
    gap: 0.95rem;
    padding: 1.2rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.overview-point i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 1.1rem;
}

.overview-point h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    color: #1f2937;
}

.overview-point p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
    font-size: 0.94rem;
}

.overseas-overview-panel {
    padding: 1.5rem;
    border-radius: 20px;
    background: linear-gradient(160deg, #16213e 0%, #1f3c88 100%);
    color: #ffffff;
    box-shadow: 0 20px 48px rgba(22, 33, 62, 0.22);
}

.overseas-overview-panel h3 {
    margin: 0 0 1rem;
    font-size: 1.35rem;
}

.overview-service-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.overview-service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
}

.overview-service-list i {
    color: #8ef0b5;
    margin-top: 0.2rem;
}

.overview-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.overview-cta-group .btn {
    width: 100%;
    justify-content: center;
}

.booking-tabs {
    display: flex;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
}

.booking-tab {
    flex: 1;
    padding: 1.25rem 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    font-size: 0.95rem;
}

.booking-tab i {
    font-size: 1.5rem;
}

.booking-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.booking-tab.active {
    background: white;
    color: var(--primary-color);
}

.booking-content {
    display: none;
    padding: 2.5rem;
    animation: fadeIn 0.5s ease;
}

.booking-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.trip-type {
    display: flex;
    gap: 1.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #4a5568;
    font-weight: 500;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.class-passengers {
    display: flex;
    gap: 1rem;
}

.booking-select {
    padding: 0.5rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-form {
    margin-top: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.booking-input {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.booking-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.field-info {
    margin-top: 0.5rem;
    color: #718096;
    font-size: 0.85rem;
}

.search-select {
    position: relative;
}

.search-select-control {
    display: flex;
    align-items: center;
    position: relative;
}

.search-select-input {
    padding-right: 3rem;
}

.search-select-toggle {
    position: absolute;
    right: 0.75rem;
    background: transparent;
    border: none;
    color: #4a5568;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.search-select-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
    max-height: 240px;
    overflow-y: auto;
    padding: 0.35rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: var(--transition);
    display: none;
    z-index: 20;
}

.search-select.open .search-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.search-select-item {
    padding: 0.65rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #2d3748;
    font-weight: 500;
}

.search-select-item small {
    color: #718096;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.search-select-item:hover {
    background: rgba(102, 126, 234, 0.08);
    color: var(--primary-color);
}

.search-select-empty {
    padding: 1rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.search-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--action-purple) 0%, var(--action-green) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.search-btn:hover {
    background: linear-gradient(135deg, var(--action-green) 0%, var(--action-purple) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
}

.search-btn i {
    font-size: 1.2rem;
}

/* Explore Grid */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.explore-card {
    padding: 2rem;
    text-align: center;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.explore-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.explore-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.explore-card p {
    color: #718096;
    font-size: 0.95rem;
}

/* ========================================
   GLOBAL STATISTICS SECTION
======================================== */

.stats-globe-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: visible;
}

.globe-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    z-index: 2;
}

/* Globe Sphere */
.globe-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, #f0f0f0, #d5d5d5 50%, #b8b8b8 80%);
    box-shadow: 
        inset -30px -30px 60px rgba(0, 0, 0, 0.2),
        0 25px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Continents as simple shapes */
.continent {
    position: absolute;
    background: rgba(160, 160, 160, 0.4);
    border-radius: 50%;
}

.continent-1 {
    width: 80px;
    height: 90px;
    top: 25%;
    left: 20%;
    border-radius: 40% 60% 50% 50%;
}

.continent-2 {
    width: 70px;
    height: 80px;
    top: 35%;
    right: 25%;
    border-radius: 60% 40% 50% 50%;
}

.continent-3 {
    width: 60px;
    height: 70px;
    bottom: 30%;
    left: 30%;
    border-radius: 50% 50% 40% 60%;
}

.continent-4 {
    width: 50px;
    height: 55px;
    top: 45%;
    left: 45%;
    border-radius: 50%;
}

.continent-5 {
    width: 55px;
    height: 60px;
    bottom: 25%;
    right: 30%;
    border-radius: 45% 55% 55% 45%;
}

.globe-shine {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    border-radius: 50%;
}

/* Concentric Rings */
.globe-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(102, 126, 234, 0.15);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 {
    width: 400px;
    height: 400px;
}

.ring-2 {
    width: 500px;
    height: 500px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 600px;
    height: 600px;
    animation-delay: 1s;
}

@keyframes ringPulse {
    0%, 100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.03);
    }
}

/* Location Markers */
.marker {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #764ba2;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(118, 75, 162, 0.5);
    z-index: 10;
    animation: markerPulse 2.5s ease-in-out infinite;
}

.marker:nth-child(2) { animation-delay: 0.3s; }
.marker:nth-child(3) { animation-delay: 0.6s; }
.marker:nth-child(4) { animation-delay: 0.9s; }
.marker:nth-child(5) { animation-delay: 1.2s; }
.marker:nth-child(6) { animation-delay: 1.5s; }

@keyframes markerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 12px rgba(118, 75, 162, 0.5);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 5px 20px rgba(118, 75, 162, 0.9);
    }
}

/* Statistics Boxes */
.stat-box {
    position: absolute;
    text-align: center;
    opacity: 0;
    animation: statFadeIn 1s ease forwards;
}

.stat-num {
    font-size: 4.5rem;
    font-weight: 800;
    color: #764ba2;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
    line-height: 1.3;
}

.stat-1 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    animation-delay: 0.3s;
}

.stat-2 {
    bottom: 10%;
    left: 15%;
    animation-delay: 0.6s;
}

.stat-3 {
    top: 15%;
    right: 8%;
    animation-delay: 0.9s;
}

.stat-4 {
    top: 52%;
    right: 5%;
    transform: translateY(-50%);
    animation-delay: 1.2s;
}

@keyframes statFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Connection Lines */
.stat-box::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(118, 75, 162, 0.3), transparent);
}

.stat-1::after {
    right: -75px;
    top: 50%;
}

.stat-2::after {
    right: -70px;
    top: -30px;
    transform: rotate(45deg);
    width: 100px;
}

.stat-3::after {
    left: -75px;
    top: 50%;
}

.stat-4::after {
    left: -75px;
    top: 50%;
}

/* Responsive */
@media (max-width: 1024px) {
    .globe-wrapper {
        width: 350px;
        height: 350px;
    }
    
    .globe-sphere {
        width: 320px;
        height: 320px;
    }
    
    .ring-1 { width: 360px; height: 360px; }
    .ring-2 { width: 440px; height: 440px; }
    .ring-3 { width: 520px; height: 520px; }
    
    .stat-num {
        font-size: 3.5rem;
    }
    
    .stat-1 { left: 3%; }
    .stat-4 { right: 3%; }
}

@media (max-width: 768px) {
    .stats-globe-section {
        padding: 4rem 1rem;
    }
    
    .globe-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .globe-wrapper {
        width: 280px;
        height: 280px;
        margin-bottom: 3rem;
    }
    
    .globe-sphere {
        width: 260px;
        height: 260px;
    }
    
    .ring-1 { width: 290px; height: 290px; }
    .ring-2 { width: 340px; height: 340px; }
    .ring-3 { width: 390px; height: 390px; }
    
    .stat-box {
        position: static;
        margin-bottom: 2.5rem;
        transform: none !important;
    }
    
    .stat-box::after {
        display: none;
    }
    
    .stat-num {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .globe-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .globe-sphere {
        width: 220px;
        height: 220px;
    }
    
    .ring-1 { width: 250px; height: 250px; }
    .ring-2 { width: 290px; height: 290px; }
    .ring-3 { width: 330px; height: 330px; }
    
    .stat-num {
        font-size: 2.5rem;
    }
    
    .marker {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
}

/* ========================================
   FEATURED DESTINATIONS SECTION
======================================== */

.featured-section {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.domestic-section {
    background: #ffffff;
}

.featured-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}


.destinations-grid {
    display: flex;
    gap: 1.75rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 0;
    max-width: 1300px;
    margin: 0 auto;
}

/* Non-carousel destination lists (e.g., tours.php) */
.destinations-grid:not(.destinations-track) {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.destinations-grid:not(.destinations-track) .destination-card {
    max-width: none;
    width: 100%;
}

.destinations-carousel {
    position: relative;
    padding: 0 3rem;
}

.destinations-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 3.5rem) / 3);
    gap: 1.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0.1rem 1.2rem;
    margin: 0;
    scrollbar-width: none;
}

.destinations-track::-webkit-scrollbar {
    display: none;
}

.destinations-track .destination-card {
    flex: none;
    max-width: none;
    width: auto;
    scroll-snap-align: start;
}

.destination-clickable {
    cursor: pointer;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.86);
    color: #fff;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(30, 41, 59, 0.95);
}

.carousel-nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.carousel-prev {
    left: 0.3rem;
}

.carousel-next {
    right: 0.3rem;
}

.destination-card {
    flex: 1 1 300px;
    max-width: 320px;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.12);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.18);
}

.destination-media {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.destination-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .destination-media img {
    transform: scale(1.08);
}

.destination-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95));
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-domestic {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.destination-price {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: rgba(15, 23, 42, 0.85);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3);
}

.destination-price small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
}

.destination-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.destination-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.destination-region {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    color: #7c8ba1;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.destination-head h3 {
    font-size: 1.45rem;
    color: #1f2937;
    margin: 0;
}

.destination-rating {
    background: #fff5d1;
    color: #b7791f;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
}

.destination-description {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.destination-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.destination-meta span {
    background: #edf2ff;
    color: #4c51bf;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.destination-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-pill {
    border-radius: 999px;
    padding: 0.65rem 1.35rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-outline {
    color: var(--primary-color);
    border-color: rgba(102, 126, 234, 0.4);
}

.btn-outline:hover {
    background: rgba(102, 126, 234, 0.08);
    color: var(--secondary-color);
}

.btn-solid {
    background: linear-gradient(135deg, var(--action-purple), var(--action-green));
    color: #fff;
    box-shadow: 0 15px 25px rgba(109, 40, 217, 0.3);
}

.btn-solid:hover {
    background: linear-gradient(135deg, var(--action-green), var(--action-purple));
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(22, 163, 74, 0.3);
}

/* Responsive - Stack on mobile */
@media (max-width: 1200px) {
    .destinations-grid {
        gap: 1.25rem;
    }

    .destinations-grid:not(.destinations-track) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .destinations-track {
        grid-auto-columns: calc((100% - 1.25rem) / 2);
    }

    .destination-card {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .destinations-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .destinations-grid:not(.destinations-track) {
        grid-template-columns: 1fr;
    }

    .destinations-carousel {
        padding: 0 0.5rem;
    }

    .destinations-track {
        grid-auto-columns: 100%;
        gap: 1rem;
    }

    .carousel-nav {
        display: none;
    }
    
    .destination-card {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .destination-media {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .destination-media {
        height: 200px;
    }
}

/* ========================================
   AREAS OF ACTIVITY SECTION
======================================== */

.activity-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.activity-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 4rem;
}

.activity-items {
    max-width: 1200px;
    margin: 0 auto;
}

.activity-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
}

.activity-item:last-child {
    margin-bottom: 0;
}

.activity-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.activity-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 360px;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.activity-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    text-align: center;
    line-height: 1.2;
    letter-spacing: 2px;
    white-space: nowrap;
    pointer-events: none;
    text-transform: uppercase;
}

.activity-content {
    padding: 2rem;
}

.activity-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.activity-logo h3 {
    font-size: 1.5rem;
    color: #2d3748;
    font-weight: 700;
    letter-spacing: 1px;
}

.activity-description {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-read-more {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--action-purple), var(--action-green));
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, var(--action-green), var(--action-purple));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .activity-item {
        gap: 3rem;
    }
    
    .activity-image {
        height: 320px;
    }
    
    .activity-watermark {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .activity-section {
        padding: 3rem 1.5rem;
    }
    
    .activity-section .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .activity-item,
    .activity-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .activity-image {
        height: 300px;
    }
    
    .activity-watermark {
        font-size: 2rem;
    }
    
    .activity-content {
        padding: 1rem;
    }
    
    .activity-logo h3 {
        font-size: 1.25rem;
    }
    
    .activity-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .activity-image {
        height: 250px;
    }
    
    .activity-watermark {
        font-size: 1.5rem;
    }
    
    .activity-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .btn-read-more {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   FEATURES SECTION
======================================== */

.features-section {
    padding: 5rem 2rem;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: #718096;
    font-size: 1rem;
    line-height: 1.6;
}

/* ========================================
   CTA SECTION
======================================== */

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--action-green) 0%, var(--action-purple) 100%);
    text-align: center;
    color: white;
    box-shadow: 0 14px 30px rgba(22, 163, 74, 0.18), 0 14px 30px rgba(109, 40, 217, 0.16);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.footer-brand-image {
    width: auto;
    height: 48px;
    width: 190px;
    max-width: 190px;
    object-fit: contain;
    display: block;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-col p {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a,
.footer-col ul li {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.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;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e0;
}

/* ========================================
   SCROLL INDICATOR
======================================== */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 5;
}

.scroll-indicator span {
    width: 2px;
    height: 15px;
    background: white;
    animation: scrollDown 1.5s ease-in-out infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* ========================================
   HAMBURGER MENU (MOBILE)
======================================== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: #ffffff;
}

/* ========================================
   CONTAINER
======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
    :root {
        --nav-height: 84px;
    }

    .nav-container {
        padding: 0 1.25rem;
    }

    .logo-image {
        height: 50px;
        width: 145px;
        max-width: 145px;
    }

    .logo-image.logo-color {
        height: 50px;
        width: 145px;
        max-width: 145px;
    }

    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.5rem 0.65rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (min-width: 1201px) {
    .logo {
        margin-right: 0.25rem;
    }

    .nav-menu a {
        padding: 0.38rem 0.45rem;
        font-size: 0.72rem;
    }

    .nav-menu > li > a {
        gap: 0.25rem;
    }
}

@media (max-width: 1200px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-image {
        height: 50px;
        width: 130px;
        max-width: 130px;
    }

    .logo-image.logo-color {
        height: 50px;
        width: 130px;
        max-width: 130px;
    }

    .nav-hotline {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        overflow-y: auto;
        align-items: flex-start;
    }

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

    .nav-menu > li {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .nav-menu > .login-btn,
    .nav-menu > .user-dropdown {
        margin-left: 0;
    }

    .nav-menu a {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem 1rem;
        color: #334155;
        box-shadow: none;
    }

    .navbar.scrolled .nav-menu a {
        color: #334155;
    }

    .navbar.scrolled .nav-menu a:hover,
    .navbar.scrolled .nav-menu a.active,
    .nav-menu a:hover,
    .nav-menu a.active {
        color: #0f172a;
        background: rgba(109, 40, 217, 0.08);
        box-shadow: none;
    }

    .nav-menu .login-btn a,
    .navbar.scrolled .nav-menu .login-btn a,
    .nav-menu .user-dropdown .dropdown-toggle,
    .navbar.scrolled .nav-menu .user-dropdown .dropdown-toggle {
        color: #ffffff !important;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .login-btn a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 80px;
    }

    .nav-hotline {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        overflow-y: auto;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .nav-menu > .login-btn,
    .nav-menu > .user-dropdown {
        margin-left: 0;
    }
    
    .nav-menu a {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .login-btn a {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .travel-booking-section {
        margin-top: -28px;
        padding: 0 1rem 2rem;
    }

    .overseas-overview {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .overview-points {
        grid-template-columns: 1fr;
    }
    
    .booking-tabs {
        flex-wrap: wrap;
    }
    
    .booking-tab {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 120px;
        font-size: 0.85rem;
    }
    
    .booking-tab i {
        font-size: 1.2rem;
    }
    
    .booking-content {
        padding: 1.5rem;
    }
    
    .booking-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trip-type {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .class-passengers {
        flex-direction: column;
        width: 100%;
    }
    
    .booking-select {
        width: 100%;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .banner-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .banner-control.prev {
        left: 1rem;
    }
    
    .banner-control.next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-height: 76px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }

    .logo-image {
        height: 38px;
        width: 118px;
        max-width: 118px;
    }

    .logo-image.logo-color {
        height: 38px;
        width: 118px;
        max-width: 118px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .booking-tabs {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    .booking-tab {
        flex: 1 1 100%;
        padding: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .explore-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

/* ========================================
   SERVICE PAGES STYLES
======================================== */

.page-header {
    padding: 140px 2rem 80px;
    background: linear-gradient(135deg, var(--action-green), var(--action-purple));
    color: white;
    text-align: center;
    box-shadow: 0 14px 30px rgba(22, 163, 74, 0.18), 0 14px 30px rgba(109, 40, 217, 0.16);
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-header-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.7;
}

.service-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.service-intro h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.75rem;
}

.feature-box h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-box p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.feature-box ul {
    list-style: none;
    padding: 0;
}

.feature-box ul li {
    padding: 0.5rem 0;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-box ul li i {
    color: #4ade80;
    font-size: 0.875rem;
}

.booking-form-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.booking-form-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

.nav-page-panel {
    margin-bottom: 4rem;
}

.nav-page-panel-head {
    max-width: 820px;
    margin: 0 auto 2rem;
    text-align: center;
}

.nav-page-panel-head h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.nav-page-panel-head p {
    color: #4a5568;
    line-height: 1.7;
}

.nav-page-detail-grid {
    margin-bottom: 0;
}

.nav-page-detail-box h3 {
    text-align: left;
}

.nav-page-detail-box p {
    margin-bottom: 0;
}

.nav-page-link-box {
    text-decoration: none;
    display: block;
}

.nav-page-link-box h3,
.nav-page-link-box p {
    text-align: left;
}

.nav-page-link-box .btn-read-more {
    display: inline-flex;
}

.nav-page-cta p {
    text-align: center;
    color: #4a5568;
    max-width: 720px;
    margin: 0 auto 1.75rem;
    line-height: 1.7;
}

.nav-page-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-page-secondary-btn {
    background: white;
    color: #4338ca;
    border: 1px solid rgba(67, 56, 202, 0.18);
    box-shadow: none;
}

.nav-page-secondary-btn:hover {
    background: #eef2ff;
    color: #312e81;
    box-shadow: none;
}

.flight-booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.flight-booking-form .form-group {
    display: flex;
    flex-direction: column;
}

.flight-booking-form label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flight-booking-form label i {
    color: var(--primary-color);
}

.flight-booking-form input,
.flight-booking-form select {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.flight-booking-form input:focus,
.flight-booking-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .service-intro h2 {
        font-size: 2rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .flight-booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-form-section {
        padding: 2rem 1.5rem;
    }

    .nav-page-panel-head h2 {
        font-size: 1.7rem;
    }
}

/* ========================================
   LOGIN PAGE STYLES
======================================== */

.login-section {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 2rem 2rem;
}

.login-container {
    max-width: 1100px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 650px;
}

.login-left {
    position: relative;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=800');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95));
}

.login-content {
    position: relative;
    z-index: 2;
}

.login-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.login-content h2 i {
    font-size: 2.5rem;
}

.login-content > p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.login-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-features li {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.95;
}

.login-features li i {
    font-size: 1.5rem;
    color: #4ade80;
}

.login-right {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-wrapper {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.login-form-wrapper h1 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.login-subtitle {
    color: #718096;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Alert Messages */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.alert i {
    font-size: 1.25rem;
}

.alert-error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-success {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

/* Form Styles */
.login-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #718096;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #4a5568;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--secondary-color);
}

.btn-login {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    position: relative;
    background: white;
    padding: 0 1rem;
    color: #718096;
    font-size: 0.9rem;
    font-weight: 600;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-social {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-google {
    color: #db4437;
}

.btn-google:hover {
    background: #db4437;
    color: white;
    border-color: #db4437;
}

.btn-facebook {
    color: #4267B2;
}

.btn-facebook:hover {
    background: #4267B2;
    color: white;
    border-color: #4267B2;
}

.signup-link {
    text-align: center;
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.signup-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: var(--secondary-color);
}

.demo-credentials {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.demo-credentials p {
    margin: 0.25rem 0;
    color: #4a5568;
    font-size: 0.9rem;
}

.demo-credentials strong {
    color: #2d3748;
}

/* Login Page Responsive */
@media (max-width: 1024px) {
    .login-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .login-left {
        display: none;
    }
    
    .login-section {
        padding: 120px 1.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .login-section {
        padding: 100px 1rem 2rem;
    }
    
    .login-right {
        padding: 2rem 1.5rem;
    }
    
    .login-form-wrapper h1 {
        font-size: 1.75rem;
    }
    
    .demo-credentials {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .login-right {
        padding: 1.5rem 1rem;
    }
    
    .login-form-wrapper h1 {
        font-size: 1.5rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }

    .footer-brand-image {
        width: 150px;
        max-width: 150px;
        height: 38px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .social-login {
        gap: 0.5rem;
    }
    
    .btn-social {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
}

/* ========================================
   CONTACT PAGE BLOCKS
======================================== */

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-panel,
.contact-form-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    padding: 1.5rem;
}

.contact-info-panel h2,
.contact-form-panel h2 {
    color: #0f172a;
    margin-bottom: 0.6rem;
}

.contact-info-panel > p {
    color: #64748b;
    margin-bottom: 1rem;
}

.contact-detail-list {
    display: grid;
    gap: 0.85rem;
}

.contact-detail-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.85rem 0.9rem;
    background: #f8fafc;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--action-purple), var(--action-green));
}

.contact-detail-body h3 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.contact-detail-body p,
.contact-detail-body a {
    color: #334155;
    text-decoration: none;
    margin: 0;
}

.contact-detail-body a:hover {
    color: var(--action-purple);
}

.contact-detail-body small {
    color: #64748b;
}

.contact-form-grid .form-group {
    margin-bottom: 1rem;
}

.contact-form-grid .form-group-full {
    grid-column: 1 / -1;
}

.contact-form-grid label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.45rem;
}

.contact-form-grid .form-input,
.contact-form-grid .form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.25s ease;
}

.contact-form-grid .form-input:focus,
.contact-form-grid .form-textarea:focus {
    outline: none;
    border-color: var(--action-purple);
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.15);
}

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

/* ========================================
   CONTACT MAP SECTION
======================================== */

.contact-map-section {
    padding: 1rem 2rem 4rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-map-shell {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.contact-map-head {
    padding: 1.5rem 1.5rem 1rem;
    background: linear-gradient(135deg, var(--action-green) 0%, var(--action-purple) 100%);
    color: #f8fafc;
}

.contact-map-copy {
    max-width: 760px;
}

.map-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-map-head h2 {
    margin-bottom: 0.4rem;
    font-size: 1.8rem;
}

.contact-map-head p {
    color: rgba(248, 250, 252, 0.9);
    margin-bottom: 1rem;
}

.map-stat-strip {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin: 0 0 1rem;
}

.map-stat-card {
    min-width: 130px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.map-stat-card strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.map-stat-card span {
    display: block;
    color: rgba(248, 250, 252, 0.88);
    font-size: 0.82rem;
    line-height: 1.35;
}

.pin-controls {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    align-items: center;
}

.pin-controls label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
}

.pin-controls select,
.pin-controls button {
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.55rem 0.8rem;
    font-size: 0.9rem;
}

.pin-controls button {
    cursor: pointer;
    background: #ffffff;
    color: #0f172a;
    transition: all 0.25s ease;
}

.pin-controls button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    min-height: 520px;
}

.mia-map {
    min-height: 520px;
}

.map-panel {
    border-left: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-panel h3 {
    font-size: 1.2rem;
    color: #0f172a;
}

.map-panel-note {
    margin-top: -0.35rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    color: #075985;
    font-size: 0.82rem;
    line-height: 1.4;
}

.map-insight-card {
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.map-insight-card h4 {
    margin: 0 0 0.45rem;
    color: #0f172a;
}

.map-insight-card p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
    font-size: 0.9rem;
}

.pin-legend {
    list-style: none;
    display: grid;
    gap: 0.45rem;
    font-size: 0.92rem;
    color: #334155;
}

.pin-legend li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pin-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.pin-dot.office { background: #2563eb; }
.pin-dot.meeting { background: #14b8a6; }
.pin-dot.airport { background: #ef4444; }
.pin-dot.hotel { background: #f59e0b; }
.pin-dot.visa { background: #8b5cf6; }
.pin-dot.hq { background: #0ea5e9; }
.pin-dot.branch { background: #14b8a6; }
.pin-dot.partner { background: #f59e0b; }
.pin-dot.custom { background: #8b5cf6; }

.quick-drops {
    display: grid;
    gap: 0.55rem;
}

.quick-drops button {
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 0.65rem 0.7rem;
    background: #ffffff;
    text-align: left;
    font-size: 0.86rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-drops button:hover {
    background: #eff6ff;
    border-color: #93c5fd;
}

.map-route-links {
    display: grid;
    gap: 0.6rem;
}

.map-route-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    color: #1d4ed8;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.map-route-links a:hover {
    background: #eff6ff;
    border-color: #93c5fd;
    transform: translateY(-1px);
}

.map-route-links a::after {
    content: '\2192';
    font-size: 1rem;
}

.pin-list-wrap h4 {
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.pin-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    max-height: 180px;
    overflow-y: auto;
}

.pin-list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    font-size: 0.86rem;
    color: #334155;
}

.pin-list li strong {
    color: #0f172a;
    font-size: 0.88rem;
}

.map-pin-wrap {
    background: transparent;
    border: 0;
}

.map-pin {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.2), 0 8px 18px rgba(15, 23, 42, 0.35);
}

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

    .map-panel {
        border-left: 0;
        border-top: 1px solid #e2e8f0;
    }

    .mia-map {
        min-height: 430px;
    }
}

@media (max-width: 768px) {
    .contact-map-section {
        padding: 1rem 1rem 3rem;
    }

    .contact-map-head h2 {
        font-size: 1.45rem;
    }

    .pin-controls {
        gap: 0.5rem;
    }

    .map-stat-strip {
        gap: 0.6rem;
    }

    .map-stat-card {
        flex: 1 1 140px;
    }

    .pin-controls select,
    .pin-controls button {
        width: 100%;
    }
}
