:root {
    --gold: #C7A24F;    
    --gold-primary: #C7A24F;
    --gold-light: #E4CA7A;
    --gold-dark: #A68741;
    --cream: #FAF9F6;
    --text-dark: #2C2C2C;
    --text-muted: #6C757D;

  /* Neutrals */
  --navy: #0F1419;
  --navy-light: #1A2332;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --cream: #FBF9F4;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-600: #4B5563;
  --gray-900: #111827;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
  
  --shadow-gold-sm: 0 4px 12px rgba(199, 162, 79, 0.2);
  --shadow-gold-md: 0 8px 24px rgba(199, 162, 79, 0.3);
  --shadow-gold-lg: 0 16px 48px rgba(199, 162, 79, 0.4);
  --shadow-gold-xl: 0 24px 64px rgba(199, 162, 79, 0.5);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
}


.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    background: transparent;
    color: var(--text-dark);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: var(--cream);
}

.lang-btn.active {
    background: var(--gold-primary);
    color: white;
    border-color: var(--gold-primary);
}

/* RTL Support */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .language-switcher {
    right: auto;
    left: 20px;
}

html[dir="rtl"] .search-container {
    flex-direction: row-reverse;
}

html[dir="rtl"] .tour-location,
html[dir="rtl"] .tour-type,
html[dir="rtl"] .tour-meta,
html[dir="rtl"] .included-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .dates-list {
    justify-content: flex-end;
}

html[dir="rtl"] .form-row {
    direction: rtl;
}

html[dir="rtl"] .price-row {
    flex-direction: row-reverse;
}

html[dir="rtl"] .footer-content {
    direction: rtl;
}

html[dir="rtl"] .modal-close {
    right: auto;
    left: 1.25rem;
}

/* Arabic Font Support */
html[lang="ar"] {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
}

/* Japanese Font Support */
html[lang="ja"] {
    font-family: 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
}



.hf-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(199, 162, 79, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  z-index: 1000;
}
.navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--navy);
  letter-spacing: 1px;
}
.brand-text {
  position: relative;
}
.brand-dot {
  color: var(--gold);
  font-size: 2rem;
  margin-left: 4px;
  animation: pulse 2s infinite;
}
.hf-navbar .nav-link {
  color: var(--gray-900) !important;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition-smooth);
}
.hf-navbar .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.hf-navbar .nav-link:hover::before {
  width: 70%;
}
.hf-navbar .nav-link:hover {
  color: var(--gold) !important;
}
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.dropdown-item {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: var(--transition-smooth);
}
.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(199, 162, 79, 0.1), rgba(199, 162, 79, 0.05));
  color: var(--gold);
}



.header {
    background:
                url('/assets/tour/inbound-hd-bg.png') center/cover;
    color: white;
    padding: 5rem 1rem 4rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.header-overlay {
    position: relative;
    z-index: 1;
}
.header-content {
    max-width: 900px;
    margin: 0 auto;
}
.header-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.header-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}



.search-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    color: var(--text-dark);
}
.search-input:focus {
    outline: none;
}
.search-input::placeholder {
    color: var(--text-muted);
}
.search-btn {
    padding: 1rem 2rem;
    background: var(--gold-primary);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}
.search-btn:hover {
    background: var(--gold-dark);
}




.filter-section {
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.filter-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 0.625rem 1.5rem;
    border: 2px solid var(--gold-light);
    background: white;
    color: var(--text-dark);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
}
.filter-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}
.filter-btn.active {
    background: var(--gold-primary);
    color: white;
    border-color: var(--gold-primary);
}




.main-content {
    padding: 3rem 0;
    min-height: 60vh;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}




.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}
.loading {
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
    font-size: 1.25rem;
    grid-column: 1 / -1;
}




.no-results {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}
.no-results svg {
    margin-bottom: 1.5rem;
}
.no-results h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.no-results p {
    color: var(--text-muted);
    font-size: 1.125rem;
}




.tour-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(199, 162, 79, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}
.tour-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 32px rgba(199, 162, 79, 0.25);
}
.tour-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.tour-card:hover .tour-image {
    transform: scale(1.08);
}
.tour-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(199, 162, 79, 0.95);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9375rem;
    backdrop-filter: blur(10px);
}
.tour-price-tag {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: white;
    color: var(--gold-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.tour-content {
    padding: 2rem;
}
.tour-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.tour-type {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tour-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--cream);
}
.tour-duration,
.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}
.star-icon {
    color: var(--gold-primary);
}
.tour-description {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}
.tour-dates {
    margin-bottom: 1.5rem;
}




.dates-label {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dates-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.date-badge {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}



.tour-included {
    margin-bottom: 2rem;
}
.included-label {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
}
.included-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}



.check-icon {
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.btn-book {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(199, 162, 79, 0.4);
}



.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(5px);
}
.modal.active {
    display: flex;
}
.modal-content {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
    padding: 0.5rem;
    transition: color 0.3s;
}
.modal-close:hover {
    color: var(--text-dark);
}
.modal-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--cream);
}
.modal-title {
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
    font-size: 2rem;
    font-weight: 800;
}
.modal-location {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.modal-type {
    color: var(--text-muted);
    font-size: 1rem;
}




.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--gold-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(199, 162, 79, 0.1);
}
.form-group textarea {
    resize: vertical;
}




.price-summary {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--cream) 0%, #FFFFFF 100%);
    border-radius: 12px;
    margin-top: 0.5rem;
    border: 2px solid var(--gold-light);
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}
.price-row:last-child {
    margin-bottom: 0;
}
.price-row.total {
    padding-top: 1rem;
    border-top: 2px solid var(--gold-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}
.price-value {
    font-weight: 600;
    color: var(--text-dark);
}
.price-total {
    color: var(--gold-primary);
    font-weight: 800;
}



.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 162, 79, 0.4);
}




.confirmation-modal {
    text-align: center;
    max-width: 550px;
}
.confirmation-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /*background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}
.confirmation-title {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 800;
}
.confirmation-message {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.125rem;
}


.booking-details {
    background: var(--cream);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
}
.detail-row {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.detail-row:last-child {
    margin-bottom: 0;
}
.detail-row strong {
    color: var(--text-dark);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}
.detail-row span {
    color: var(--text-muted);
    font-size: 1rem;
}
.booking-ref {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.125rem;
}
.total-row {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid var(--gold-light);
}
.confirm-total {
    color: var(--gold-primary);
    font-size: 2rem;
    font-weight: 800;
}



.hf-footer {
  color: #000;
  background: rgba(85, 87, 88, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E4E6EB;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.hf-footer a { 
  color: #000; 
  text-decoration: none; 
}
.hf-footer a:hover { 
  color: #D2AD67; 
}
.hf-heading {
  color: #D2AD67;
  letter-spacing: .02em;
  margin-bottom: .75rem;
}
.ft-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
#ft-container01, #ft-container02 {
  border-right: 1px solid rgba(251, 250, 246, 0.12);
}
#mailto01 {
  overflow-wrap: break-word;
}
.mb-2 h6 {
  font-weight: bold;
}
.col-md-4.mb-4 {
  margin: 0;
}
.hf-hours li {
  display: flex;
  justify-content: space-between;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hf-hours li:last-child { 
  border-bottom: 0; 
}
.hf-hours .day { 
  font-weight: 600; 
}
.hf-hours .time { 
  opacity: .8; 
}
.btn-gold {
    background: linear-gradient(135deg,#C7A24F,#E4CA7A);
    color: #fff;
    border: 0; border-radius:999px;
    padding: .7rem 1.4rem;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(199,162,79,.22);
    text-shadow: 0 1px 0 rgba(0,0,0,.18);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    line-height:1;
}
.btn-gold:hover { filter:brightness(1.05); transform:translateY(-2px); }
.social-icon {
  margin-left: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.social-icon img {
  margin-right: 10px;
  border-radius: 50%;
}
.hf-social-link {
  display: inline-flex;
  align-items: center; 
  justify-content: center;
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease, color .15s ease;
}
.hf-social-link:hover {
  transform: translateY(-2px);
  border-color: #D2AD67;
  color: #111;
}
.fab {
  margin-left:10px;
}



@media (max-width: 768px) {
    .header-title {
        font-size: 2.5rem;
    }

    .header-subtitle {
        font-size: 1.125rem;
    }

    .search-container {
        flex-direction: column;
        border-radius: 12px;
    }

    .search-btn {
        justify-content: center;
        border-radius: 0;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ft-container {
        font-size: .875em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    #ft-container01, #ft-container02 {
        max-width: 490px;
        border-bottom: 1px solid rgba(251, 250, 246, 0.12);
        border-right: none;
        padding-bottom: 15px;
    }    
}

@media (max-width: 480px) {
    .header-title {
        font-size: 2rem;
    }

    .tour-price-tag {
        font-size: 1.25rem;
        padding: 0.5rem 1rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .confirmation-title {
        font-size: 1.75rem;
    }
}