:root {
  --muted: #f6f8fb;
  --radius-xl: 16px;
  --radius-lg: 12px;
  --input: #fff;
  --border: #e6e9ef;
  --foreground: #0f1724;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: var(--radius-lg);
	font-size: 14px;
	font-weight: 500;
	border: 1px solid var(--border);
	background: var(--card);
	color: var(--foreground)
}

.btn-primary {
	background: linear-gradient(135deg, var(--secondary), var(--accent));
	color: var(--primary-foreground);
	border: none;
	box-shadow: 0 8px 20px rgba(25, 118, 210, .25)
}


.aj-main-hero {
	position: relative;
	background: var(--muted);
	overflow: hidden
}

.aj-main-hero-wrap {
	position: relative
}

.aj-main-hero-img {
	width: 100%;
	height: 550px;
	object-fit: cover;
	border-radius: var(--radius-xl)
}

.aj-main-hero-overlay {
	position: absolute;
	inset: 0;
	border-radius: var(--radius-xl);
	background: linear-gradient(180deg, rgba(13, 71, 161, .6), rgba(13, 71, 161, .6))
}

.aj-main-hero-content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding: 40px
}

.aj-main-hero-card {
  max-width: 700px;
	background: rgba(227, 242, 253, .75);
	backdrop-filter: saturate(140%) blur(4px);
	padding: 28px;
	border-radius: var(--radius-xl);
	box-shadow: 0 10px 28px rgba(0, 0, 0, .15)
}

.aj-main-hero-title {
	font-size: 36px;
	line-height: 1.2;
	font-weight: 700;
	color: #0D47A1;
	margin: 0 0 12px
}

.aj-main-hero-sub {
	font-size: 16px;
	color: #333333;
	margin: 0 0 20px
}

.aj-main-hero-actions {
	display: flex;
	gap: 12px
}

.btn-grad {
	background: linear-gradient(135deg, #1976D2, #42A5F5);
	color: #fff;
	border: none;
	box-shadow: 0 8px 22px rgba(25, 118, 210, .35)
}


.inputs {
	display: flex;
	gap: 10px;
	margin-top: 12px
}

input {
  
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.92); /* opaque for legibility */
  color: #0f1724;
  font-size: 14px;
  outline: none;
  box-shadow: 0 10px 30px rgba(2,6,23,0.12);
  -webkit-appearance: none;
  appearance: none;
}


.aj-form-group {  
  display: flex;
  flex-direction: column;
}
.mini {
	font-size: 12px;
	color: #333333;
	opacity: .8
}

.spacer {
	height: 16px
}

/* make pseudo-elements actually render and cover the overlay */
.aj-main-hero-overlay:before,
.aj-main-hero-overlay:after {
  content: "";               /* required */
  position: absolute;        /* needed so inset works */
  inset: 0;                  /* full cover of .hero-overlay */
  display: block;            /* explicit, optional */
  pointer-events: none;      /* don't block interactions */
  /* your existing custom properties remain (no changes) */
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-scroll-snap-strictness: proximity;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
}

.aj-booking-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: auto;
  align-items: end;
}

