/* ===== Phase-1 blur overlay ===== */
.airplane-blur-overlay {
	position: fixed;
	inset: 0;
	z-index: 9997;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	background: rgba(0, 0, 0, 0.35);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.7s ease;
}

/* ===== Full-screen animated frame (Phase-1 plane) ===== */
.full-screen-animated-frame {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	/* start state: JS also sets this, but CSS prevents any initial flash */
	transform: translateX(-120%);
}

.full-screen-animated-frame .animated-plane-frame {
	width: 55vw;
	max-width: 1300px;
	min-width: 200px;
}

.full-screen-animated-frame .animated-plane-frame img {
	width: 100%;
	height: auto;
	display: block;
}

/* ===== CTA section (Phase-2) ===== */
.animated-frames-cta{
	width: 100%;
    max-width: 100vw;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9998;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0px 50px;
}

.animated-frames-cta .animated-bg{
	    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-size: cover;
    background-image: url('images/gradient.png');
    max-width: 100vw;
    margin-left: auto;
    background-position: right;
}

.animated-frames-cta .fly-btn-close{
	position: absolute;
    top: 0;
    right: 10vw;
    width: 23px;
    height: 23px;
    z-index: 99;
}

.animated-frames-cta .fly-btn-close img{
	width: 100%;
	height: 100%;
}

.animated-frames-cta .tarahill-frames-wrapper{
	position: relative;
	z-index: 99;
}

.animated-frames-cta .frame-image-content-wraper {
	position: relative;
	width: 100%;
}

.animated-frames-cta .frame-image-content-wraper .animated-frames-wrapper{
	flex-shrink: 0;
	margin-left: auto;
}

.animated-frames-cta .frame-image-content-wraper .animated-frames-wrapper img{
	width: 100%;
	max-width: 25vw;
	height: auto;
	display: block;
}

.animated-frames-cta .fly-content{
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding-right: 12px;
	text-align: center;
	max-width: 45vw;
    margin-left: auto;
}

.animated-frames-cta .fly-content h4{
	color: #fff;
	font-size: 1.9vw;
	line-height: 1.4em;
	margin-bottom: 0;
	margin-top: 0;
}

.animated-frames-cta .fly-content .schedule-button{
	background: #E54F1C;
	color: #fff;
	padding: 6px 24px;
	border-radius: 90px;
	font-size: 1vw;
}

.animated-frames-cta .fly-content .schedule-button b{
	text-transform: uppercase;
}