/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0.0
*/

/* Load Lato font */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;600;700&display=swap');

body {
  font-family: 'Lato', sans-serif;
}

#site-footer {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.footer-logo {
  text-align: center;
  margin: 40px 0;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-sales-number {
  text-align: left;
  font-size: 13px;
  padding-top: 10px;
  color: white;
  margin-bottom: 0;
  width: 100%;
}

.footer-divider {
  border: none;
  border-top: 1px solid white;
  margin: 20px auto 40px;
  width: 100%;
  max-width: 100%;
}

.footer-legal {
  text-align: left;
  font-size: 12px;
  line-height: 1.6;
  width: 100%;
  margin: 0 auto;
}

.footer-legal p {
  margin: 6px 0;
}

.footer-legal a {
    background-color: transparent;
    text-decoration: none;
    color: #fff;
}

/* --- Lang/Currency Switcher --- */
.menu .lang-switcher {
  position: relative;
}

/* Toggle button (replaces the anchor visually) */
.sg-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 6px 0;
  cursor: pointer;
  font: inherit;
  color: #222;
}

/* Small green check, like the screenshot */
.sg-lang-toggle .sg-check {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  position: relative;
  display: inline-block;
}
.sg-lang-toggle .sg-check::before {
  content: "✓";
  font-size: 12px;
  line-height: 10px;
  position: absolute;
  inset: 0;
  color: #24a148; /* green */
}

/* Dropdown panel */
.sg-lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 90px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 8px 0;
  display: none;
  z-index: 50;
}

/* little notch */
.sg-lang-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}

/* Items */
.sg-lang-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  text-decoration: none;
  color: #111;
  font-size: 14px;
}

/* Active item (bold + green check at right) */
.sg-lang-menu a.is-active {
  font-weight: 700;
}
.sg-lang-menu a .sg-item-check {
  margin-left: 6px;
  font-size: 14px;
  color: #24a148;
  visibility: hidden;
}
.sg-lang-menu a.is-active .sg-item-check {
  visibility: visible;
}

/* Open state */
.lang-switcher.is-open .sg-lang-menu {
  display: block;
}

/* Close on small screens: make sure it stays above other header elements */
@media (max-width: 768px) {
  .sg-lang-menu {
    left: auto;
    right: 0;
    transform: none;
  }
}


@media (max-width: 768px) {
  .footer-sales-number,
  .footer-legal {
    text-align: center;
  }
}

/* --- Login Page Styles --- */
.login-page-container {
	background-color: #F2F4F5;
	min-height: 100vh;
	padding: 40px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.login-content {
	max-width: 500px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* Login Form Container */
.login-form-container {
	background: white;
	border-radius: 8px;
	padding: 50px;
	border: 2px solid #CCCCCC
}

.login-navigation {
	margin-bottom: 20px;
}

.login-form-input {
	border: 1px solid #72777F !important;
	border-radius: 6px !important;
}

.nav-path {
	color: #004C97;
	font-size: 16px;
	font-weight: 500;
	font-family: "Lato", sans-serif;
	display: flex;
	align-items: center;
	gap: 8px;
}

.login-title {
	font-size: 28px;
	font-weight: 700;
	color: #000;
	margin: 0 0 30px 0;
}

/* Form Groups */
.form-group {
	margin-bottom: 18px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #333;
}

/* Hide labels in login form */
.login-form-container .form-group label {
	display: none;
}

.input-wrapper {
	position: relative;
}

.form-input {
	width: 100%;
	padding: 15px 45px 15px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s ease;
}

.form-input:focus {
	outline: none;
	border-color: #ff6b35;
}

.input-icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #666;
}

/* Form Options */
.form-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 25px 0;
}

.checkbox-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 16px;
	color: #004C97;
	font-family: "Lato", sans-serif;
	font-weight: 700;
}

.checkbox-wrapper input[type="checkbox"] {
	display: none;
}

.checkmark {
	width: 18px;
	height: 18px;
	border: 2px solid #0066cc;
	border-radius: 50%;
	position: relative;
	display: inline-block;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background: #0066cc;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.create-account {
	display: flex;
    justify-content: center;
    margin-top: 25px;
}

.create-account,
.forgot-password {
	text-decoration: none;
	font-size: 16px;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	color: #004C97;
}

.create-account:hover,
.forgot-password:hover {
	text-decoration: underline;
}

/* Login Button */
.login-button {
	width: 100% !important;
	min-height: 48px !important;
	background: #FF8200 !important;
	border: 1px solid #FF8200 !important;
	color: white !important;
	border: none;
	padding: 16px;
	border-radius: 4px !important;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.login-button:hover {
	background: #e55a2b;
}

/* Login Button */
.register-button {
	width: 100% !important;
	min-height: 48px !important;
	background: white !important;
	border: 1px solid #FF8200 !important;
	color: #FF8200 !important;
	border: none;
	padding: 16px;
	border-radius: 4px !important;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.register-button:hover {
	background: #e55a2b;
}

/* Email Subscription Section */
.email-subscription-container {
	background: white;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.subscription-icon {
	font-size: 32px;
	margin-bottom: 15px;
}

.subscription-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 0 0 20px 0;
}

.subscription-input-wrapper {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}

.subscription-input {
	flex: 1;
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
}

.subscription-input:focus {
	outline: none;
	border-color: #0066cc;
}

.subscription-button {
	background: #0066cc;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.3s ease;
}

.subscription-button:hover {
	background: #0052a3;
}

.subscription-disclaimer {
	font-size: 12px;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

.privacy-link {
	color: #0066cc;
	text-decoration: none;
	font-weight: 500;
}

.privacy-link:hover {
	text-decoration: underline;
}

.hidden {
	display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
	.login-page-container {
		padding: 20px 15px;
	}
	
	.login-form-container,
	.email-subscription-container {
		padding: 25px 20px;
	}
	
	.login-title {
		font-size: 24px;
	}
	
	.subscription-input-wrapper {
		flex-direction: column;
	}
	
	.subscription-button {
		width: 100%;
	}
}


/* --- Help Page Styles --- */

.seekgo-help-top-header {
	text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    background-color: white;
    padding-top: 14px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
}

.help-section {
	margin-bottom: 60px;
}

.help-title {
	font-size: 32px;
	font-weight: 700;
	color: #323439;
	margin-bottom: 20px;
	font-family: 'Roboto', sans-serif;
}

.help-subtitle {
	font-size: 1.2rem;
	color: #323439;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 20px;
}

.help-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.whatsapp-info {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.help-checkmark {
	color: #028574;
	font-weight: bold;
	margin-top: 2px;
}

.contact-box {
	background-color: #f8f9fa;
	border-radius: 8px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	box-shadow: 0px 2px 15px 0px #00000033;
}

.whatsapp-text {
	color: #72777F;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
}

.contact-button {
	background-color: #FF8200;
	color: white;
	padding: 12px 24px;
	border-radius: 4px;
	text-decoration: none !important;
	font-weight: bold;
	transition: background-color 0.3s;
}

.contact-button:hover {
	background-color: #e67300;
}

.faq-title {
	font-size: 32px;
	font-weight: 700;
	color: #323439;
	font-family: 'Roboto', sans-serif;
	margin-top: 30px;
	margin-bottom: 30px;
}

.faq-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(5, auto);
	gap: 30px 40px;
}

.faq-item {
	display: flex;
	flex-direction: column;
}

.faq-question {
	font-weight: 700;
	color: #323439;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 8px;
	font-size: 20px;
}

.faq-answer {
	color: #72777F;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
}

.flight-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid #028574;
	border-radius: 50%;
	background-color: white;
	color: #333;
	text-align: center;
	line-height: 16px;
	font-size: 12px;
	font-weight: bold;
	margin-right: 8px;
}

@media (max-width: 768px) {
	.help-content {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.faq-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.whatsapp-info {
		flex-direction: column;
		gap: 10px;
	}
}

.seekandgo-tour-page {
	padding-bottom: 22px;
}