/* ================================================================
 *    TRAVHAWK PREMIUM HEADER v7.0
 *    Color Scheme: Navy #0a1628 | Teal #00c9a7 | Dark #061020
 * ================================================================ */

:root {
	  --th-primary: #061020;
	  --th-navy: #0a1628;
	  --th-accent: #00c9a7;
	  --th-accent-dark: #00a88c;
	  --th-accent-light: #00e5c4;
	  --th-white: #ffffff;
	  --th-text-muted: #8899aa;
	  --th-border: rgba(255,255,255,0.08);
	  --th-container: 1540px;
	  --th-header-height: 76px;
	  --th-radius: 8px;
	  --th-shadow: 0 4px 32px rgba(0,0,0,0.18);
	  --th-transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* === ANNOUNCEMENT BAR === */
.th-announcement-bar {
	  background: linear-gradient(90deg, #061020 0%, #0a1c35 100%);
	  border-bottom: 1px solid var(--th-border);
	  padding: 10px 0;
	  text-align: center;
	  position: relative;
	  z-index: 1001;
}
.th-announce-inner {
	  max-width: var(--th-container);
	  margin: 0 auto;
	  padding: 0 24px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  gap: 10px;
	  position: relative;
}
.th-badge-pulse {
	  display: inline-block;
	  width: 8px;
	  height: 8px;
	  background: var(--th-accent);
	  border-radius: 50%;
	  flex-shrink: 0;
	  animation: pulse 2s infinite;
}
@keyframes pulse {
	0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(0,201,167,0.4); }
	50% { opacity: 0.8; transform: scale(1.1); box-shadow: 0 0 0 6px rgba(0,201,167,0); }
}
.th-announce-text {
	  font-family: 'Inter', sans-serif;
	  font-size: 13px;
	  font-weight: 400;
	  color: rgba(255,255,255,0.8);
	  letter-spacing: 0.01em;
}
.th-announce-text strong { color: var(--th-white); font-weight: 600; }
.th-announce-text a { color: var(--th-accent); text-decoration: none; font-weight: 500; }
.th-announce-text a:hover { text-decoration: underline; }
.th-announce-close {
	  background: none;
	  border: none;
	  color: rgba(255,255,255,0.5);
	  font-size: 18px;
	  cursor: pointer;
	  padding: 0 4px;
	  line-height: 1;
	  position: absolute;
	  right: 24px;
	  top: 50%;
	  transform: translateY(-50%);
	  transition: color 0.2s;
}
.th-announce-close:hover { color: var(--th-white); }

/* === MAIN HEADER === */
.th-site-header {
	  background: rgba(255,255,255,0.98);
	  backdrop-filter: blur(12px);
	  -webkit-backdrop-filter: blur(12px);
	  border-bottom: 1px solid rgba(0,0,0,0.07);
	  position: sticky;
	  top: 0;
	  z-index: 1000;
	  transition: var(--th-transition);
	  height: var(--th-header-height);
}
.th-site-header.scrolled {
	  box-shadow: 0 2px 24px rgba(0,0,0,0.1);
	  background: rgba(255,255,255,1);
}
.th-header-inner {
	  height: 100%;
	  display: flex;
	  align-items: center;
}
.th-header-container {
	  max-width: var(--th-container);
	  margin: 0 auto;
	  padding: 0 32px;
	  width: 100%;
	  display: flex;
	  align-items: center;
	  gap: 0;
}

/* === LOGO === */
.th-header-logo { flex-shrink: 0; }
.th-logo-link { display: flex; align-items: center; text-decoration: none; }
.th-logo-link img { height: 44px; width: auto; display: block; }
.th-logo-text {
	  font-family: 'Inter', sans-serif;
	  font-size: 22px;
	  font-weight: 300;
	  color: var(--th-navy);
	  letter-spacing: 0.08em;
	  text-transform: uppercase;
	  line-height: 1;
}
.th-logo-text strong { font-weight: 900; color: var(--th-navy); }
.th-logo-text span {
	  display: block;
	  font-size: 8px;
	  font-weight: 500;
	  letter-spacing: 0.2em;
	  color: var(--th-accent);
	  margin-top: 2px;
}

/* === NAVIGATION === */
.th-header-nav {
	  flex: 1;
	  display: flex;
	  justify-content: center;
	  align-items: center;
}
.th-nav-list {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	  display: flex;
	  align-items: center;
	  gap: 4px;
}
.th-nav-item { position: relative; }
.th-nav-link {
	  display: flex;
	  align-items: center;
	  gap: 4px;
	  padding: 8px 16px;
	  font-family: 'Inter', sans-serif;
	  font-size: 14.5px;
	  font-weight: 500;
	  color: #1a2840;
	  text-decoration: none;
	  border-radius: 6px;
	  transition: var(--th-transition);
	  white-space: nowrap;
	  letter-spacing: -0.01em;
}
.th-nav-link:hover { color: var(--th-accent); background: rgba(0,201,167,0.06); }
.th-nav-arrow { transition: transform 0.2s; opacity: 0.5; }
.th-has-dropdown:hover .th-nav-arrow { transform: rotate(180deg); opacity: 1; }

/* Dropdown */
.th-dropdown {
	  position: absolute;
	  top: calc(100% + 8px);
	  left: 0;
	  background: #fff;
	  border: 1px solid rgba(0,0,0,0.08);
	  border-radius: 10px;
	  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
	  min-width: 210px;
	  list-style: none;
	  padding: 8px;
	  margin: 0;
	  opacity: 0;
	  visibility: hidden;
	  transform: translateY(-8px);
	  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
	  z-index: 999;
}
.th-has-dropdown:hover .th-dropdown {
	  opacity: 1;
	  visibility: visible;
	  transform: translateY(0);
}
.th-dropdown li a {
	  display: block;
	  padding: 9px 14px;
	  font-family: 'Inter', sans-serif;
	  font-size: 14px;
	  font-weight: 400;
	  color: #2a3a50;
	  text-decoration: none;
	  border-radius: 6px;
	  transition: all 0.15s;
}
.th-dropdown li a:hover {
	  background: rgba(0,201,167,0.07);
	  color: var(--th-accent);
	  padding-left: 18px;
}

/* === HEADER ACTIONS === */
.th-header-actions {
	  display: flex;
	  align-items: center;
	  gap: 12px;
	  flex-shrink: 0;
}
.th-header-phone {
	  display: flex;
	  align-items: center;
	  gap: 7px;
	  font-family: 'Inter', sans-serif;
	  font-size: 14px;
	  font-weight: 600;
	  color: #1a2840;
	  text-decoration: none;
	  padding: 8px 4px;
	  transition: color 0.2s;
	  white-space: nowrap;
}
.th-header-phone:hover { color: var(--th-accent); }
.th-header-phone svg { color: var(--th-accent); flex-shrink: 0; }
.th-btn-check-header {
	  display: flex;
	  align-items: center;
	  gap: 8px;
	  background: var(--th-accent);
	  color: #fff;
	  border: none;
	  border-radius: 50px;
	  padding: 11px 22px;
	  font-family: 'Inter', sans-serif;
	  font-size: 14px;
	  font-weight: 600;
	  cursor: pointer;
	  transition: var(--th-transition);
	  white-space: nowrap;
	  letter-spacing: -0.01em;
}
.th-btn-check-header:hover {
	  background: var(--th-accent-dark);
	  transform: translateY(-1px);
	  box-shadow: 0 6px 20px rgba(0,201,167,0.35);
}
.th-btn-check-header svg { flex-shrink: 0; }

/* === HAMBURGER === */
.th-hamburger {
	  display: none;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  gap: 5px;
	  width: 40px;
	  height: 40px;
	  background: none;
	  border: 1px solid rgba(0,0,0,0.12);
	  border-radius: 8px;
	  cursor: pointer;
	  padding: 8px;
	  transition: all 0.2s;
}
.th-hamburger span {
	  display: block;
	  width: 20px;
	  height: 2px;
	  background: #1a2840;
	  border-radius: 2px;
	  transition: all 0.25s;
}
.th-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.th-hamburger.active span:nth-child(2) { opacity: 0; }
.th-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === AVAILABILITY MODAL === */
.th-modal-overlay {
	  position: fixed;
	  inset: 0;
	  background: rgba(6,16,32,0.75);
	  backdrop-filter: blur(6px);
	  -webkit-backdrop-filter: blur(6px);
	  z-index: 9999;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 20px;
	  opacity: 0;
	  visibility: hidden;
	  transition: all 0.3s ease;
}
.th-modal-overlay.active {
	  opacity: 1;
	  visibility: visible;
}
.th-modal-box {
	  background: #fff;
	  border-radius: 20px;
	  padding: 48px 44px;
	  max-width: 480px;
	  width: 100%;
	  position: relative;
	  transform: translateY(24px) scale(0.97);
	  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
	  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.th-modal-overlay.active .th-modal-box {
	  transform: translateY(0) scale(1);
}
.th-modal-close {
	  position: absolute;
	  top: 18px;
	  right: 18px;
	  background: #f4f6f9;
	  border: none;
	  width: 32px;
	  height: 32px;
	  border-radius: 50%;
	  font-size: 18px;
	  cursor: pointer;
	  color: #5a6a7a;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  transition: all 0.2s;
	  line-height: 1;
}
.th-modal-close:hover { background: #e8ecf0; color: #1a2840; }
.th-modal-icon {
	  width: 60px;
	  height: 60px;
	  background: linear-gradient(135deg, rgba(0,201,167,0.15) 0%, rgba(0,201,167,0.05) 100%);
	  border-radius: 16px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  margin: 0 auto 20px;
	  color: var(--th-accent);
}
.th-modal-title {
	  font-family: 'Inter', sans-serif;
	  font-size: 26px;
	  font-weight: 800;
	  color: var(--th-navy);
	  text-align: center;
	  margin: 0 0 10px;
	  letter-spacing: -0.03em;
}
.th-modal-subtitle {
	  font-family: 'Inter', sans-serif;
	  font-size: 15px;
	  font-weight: 400;
	  color: #5a6a7a;
	  text-align: center;
	  margin: 0 0 28px;
	  line-height: 1.5;
}
.th-modal-input-wrap {
	  display: flex;
	  gap: 0;
	  border: 2px solid #e2e8f0;
	  border-radius: 12px;
	  overflow: hidden;
	  transition: border-color 0.2s;
	  background: #fff;
}
.th-modal-input-wrap:focus-within { border-color: var(--th-accent); box-shadow: 0 0 0 4px rgba(0,201,167,0.1); }
.th-modal-input {
	  flex: 1;
	  border: none;
	  outline: none;
	  padding: 14px 18px;
	  font-family: 'Inter', sans-serif;
	  font-size: 16px;
	  font-weight: 500;
	  color: var(--th-navy);
	  background: transparent;
	  text-transform: uppercase;
	  letter-spacing: 0.05em;
}
.th-modal-input::placeholder { color: #aab4c0; text-transform: none; letter-spacing: 0; font-weight: 400; }
.th-modal-submit {
	  display: flex;
	  align-items: center;
	  gap: 6px;
	  background: var(--th-accent);
	  color: #fff;
	  border: none;
	  padding: 14px 20px;
	  font-family: 'Inter', sans-serif;
	  font-size: 14px;
	  font-weight: 700;
	  cursor: pointer;
	  transition: background 0.2s;
	  white-space: nowrap;
}
.th-modal-submit:hover { background: var(--th-accent-dark); }
.th-modal-hint {
	  font-family: 'Inter', sans-serif;
	  font-size: 13px;
	  color: #8899aa;
	  text-align: center;
	  margin: 12px 0 0;
}
.th-modal-trust {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  gap: 8px;
	  margin-top: 24px;
	  padding-top: 20px;
	  border-top: 1px solid #f0f4f8;
	  font-family: 'Inter', sans-serif;
	  font-size: 13px;
	  color: #5a6a7a;
}
.th-modal-trust span:first-child { color: #00b67a; font-size: 15px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
	.th-header-phone { display: none; }
	.th-hamburger { display: flex; }
	.th-header-nav {
		    position: fixed;
		    top: 0;
		    right: -100%;
		    width: 300px;
		    height: 100vh;
		    background: #fff;
		    flex-direction: column;
		    justify-content: flex-start;
		    padding: 80px 24px 40px;
		    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
		    transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
		    z-index: 1001;
		    border-left: 1px solid rgba(0,0,0,0.06);
		    overflow-y: auto;
	}
	.th-header-nav.active { right: 0; }
	.th-nav-list { flex-direction: column; gap: 2px; width: 100%; }
	.th-nav-link { width: 100%; font-size: 16px; padding: 12px 16px; border-radius: 8px; }
	.th-dropdown {
		    position: static;
		    box-shadow: none;
		    border: none;
		    background: #f8fafc;
		    border-radius: 8px;
		    opacity: 1;
		    visibility: visible;
		    transform: none;
		    display: none;
		    margin-top: 4px;
	}
	.th-has-dropdown.open .th-dropdown { display: block; }
	.th-btn-check-header { padding: 10px 18px; font-size: 13px; }
}
@media (max-width: 640px) {
	.th-header-container { padding: 0 20px; }
	.th-btn-check-header span { display: none; }
	.th-modal-box { padding: 36px 24px; }
	.th-modal-title { font-size: 22px; }
}
@media (max-width: 480px) {
	.th-announce-close { display: none; }
}
}
}
	}
	}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}

/* === LOGO IMAGE SIZE FIX === */
.th-site-header .custom-logo-link,
.th-site-header .custom-logo-link img,
.th-logo-link .custom-logo,
.th-logo-link img,
.th-header-logo img {
  height: 44px !important;
  width: auto !important;
  max-height: 44px !important;
  display: block;
}
.th-logo-link .custom-logo-link {
  display: flex;
  align-items: center;
}


/* === AGGRESSIVE LOGO SIZE FIX === */
.th-header-logo img,
.th-header-logo .custom-logo,
.th-header-logo .custom-logo-link img,
.th-site-header img.custom-logo,
.th-site-header .custom-logo-link img,
img.custom-logo,
.primary-header__logo {
  height: 42px !important;
  width: auto !important;
  max-height: 42px !important;
  max-width: 200px !important;
  display: block !important;
}
.th-header-logo .custom-logo-link {
  display: flex !important;
  align-items: center !important;
}
.th-logo-link:has(+ .custom-logo-link) {
  display: none !important;
}
