:root {
	--brand-blue-start: #00aeef;
	--brand-blue-end: #093a82;
	--flame-start: #ffb900;
	--flame-end: #ff5c00;
	--bg-top: #edf6fc;
	--bg-mid: #e2f0fa;
	--bg-bottom: #d8e9f7;
	--card-surface: linear-gradient(145deg, rgba(248, 253, 255, 0.98), rgba(213, 231, 250, 0.97));
	--card-border: rgba(9, 58, 130, 0.48);
	--ink: #10213c;
	--muted: #5c6780;
	--panel: #ffffff;
	--line: #d8dfe9;
	--surface: #f4f8fc;
	--radius: 18px;
	--card-shadow: 0 18px 44px rgba(9, 58, 130, 0.22);
	--shadow: 0 16px 38px rgba(10, 39, 87, 0.14);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
}

@supports (overflow: clip) {
	html,
	body {
		overflow-x: clip;
	}
}

body {
	font-family: "Source Sans 3", sans-serif;
	color: var(--ink);
	line-height: 1.55;
	background:
		radial-gradient(circle at 78% 18%, rgba(0, 174, 239, 0.12), transparent 46%),
		radial-gradient(circle at 10% 75%, rgba(255, 185, 0, 0.12), transparent 40%),
		linear-gradient(165deg, var(--bg-top) 0%, var(--bg-mid) 52%, var(--bg-bottom) 100%);
	background-attachment: fixed;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(1160px, 93vw);
	margin-inline: auto;
}

.section-pad {
	padding: clamp(1rem, 2.8vw, 2rem) 0;
}

h1,
h2,
h3 {
	margin: 0 0 0.8rem;
	font-family: "Montserrat", sans-serif;
	line-height: 1.16;
}

h1 {
	font-size: clamp(2rem, 7vw, 3.9rem);
}

h2 {
	font-size: clamp(1.55rem, 4.5vw, 2.3rem);
}

p {
	margin: 0 0 1rem;
}

.eyebrow {
	display: inline-block;
	margin-bottom: 0.9rem;
	padding: 0.3rem 0.8rem;
	border-radius: 999px;
	background: rgba(9, 58, 130, 0.08);
	color: #0d4ca1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.76rem;
	font-weight: 700;
}

.lead {
	color: var(--muted);
	font-size: clamp(1.05rem, 3vw, 1.26rem);
	max-width: 70ch;
	line-height: 1.62;
}

.hero h1 {
	letter-spacing: -0.02em;
	line-height: 1.08;
	text-wrap: balance;
}

.hero p,
.intro p,
.domestic-panel p,
.service-card p {
	text-wrap: pretty;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 15;
	background: rgba(233, 245, 252, 0.86);
	border-bottom: 1px solid rgba(123, 165, 200, 0.45);
	backdrop-filter: blur(8px);
}

.top-bar {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 0;
	position: relative;
}

.brand {
	width: 145px;
	flex-shrink: 0;
}

.site-nav {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	display: flex;
	flex-direction: column;
	padding: 0.4rem;
	min-width: 180px;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(20px);
	border-radius: 16px;
	border: 1px solid rgba(123, 165, 200, 0.38);
	box-shadow: 0 16px 40px rgba(9, 58, 130, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px) scale(0.97);
	transform-origin: top right;
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
	pointer-events: none;
}

.site-nav.open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
	pointer-events: auto;
}

.site-nav a {
	padding: 0.65rem 1rem;
	border-radius: 10px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	color: #19467e;
	position: relative;
	transition: color 0.25s ease, background 0.2s ease;
}

.site-nav a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--brand-blue-start), var(--brand-blue-end));
	transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
	width: 100%;
}

.site-nav a:hover {
	color: var(--brand-blue-start);
	background: rgba(0, 174, 239, 0.07);
}

.site-nav a.active {
	color: #0a3270;
}

.social-links {
	margin-left: auto;
	display: flex;
	gap: 0.45rem;
}

.social-links a {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: linear-gradient(140deg, #edf6ff, #dbeeff);
	border: 1px solid #d6e7fa;
	box-shadow: 0 5px 14px rgba(8, 51, 110, 0.15);
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.social-links a:hover {
	transform: translateY(-3px) scale(1.08);
	border-color: rgba(0, 174, 239, 0.72);
	background: linear-gradient(140deg, #ffffff, #d2ecff);
	box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.24), 0 12px 24px rgba(5, 38, 88, 0.28);
}

.social-links svg {
	width: 17px;
	fill: #0f4e9a;
}

.menu-toggle {
	width: 42px;
	height: 42px;
	border: 1px solid #d0dbec;
	border-radius: 10px;
	background: #ffffff;
	display: grid;
	align-content: center;
	gap: 5px;
	padding: 0 10px;
}

.menu-toggle span {
	height: 2px;
	background: #0d346f;
}

.hero-grid {
	display: grid;
	gap: clamp(1.1rem, 2.4vw, 2rem);
	align-items: start;
	position: relative;
	isolation: isolate;
	overflow-x: clip;
}

.hero-grid::before,
.hero-grid::after {
	content: "";
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	filter: blur(16px);
	pointer-events: none;
	animation: heroGlow 14s ease-in-out infinite alternate;
}

.hero-grid::before {
	width: clamp(180px, 24vw, 320px);
	height: clamp(180px, 24vw, 320px);
	background: radial-gradient(circle, rgba(0, 174, 239, 0.22), transparent 70%);
	left: -6%;
	top: -10%;
}

.hero-grid::after {
	width: clamp(160px, 20vw, 280px);
	height: clamp(160px, 20vw, 280px);
	background: radial-gradient(circle, rgba(255, 185, 0, 0.22), transparent 72%);
	right: -3%;
	bottom: -15%;
	animation-delay: 2.3s;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin: 1rem 0 0.85rem;
}

.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0.35rem;
	border-radius: 999px;
	padding: 0.76rem 1.36rem;
	font-weight: 700;
	font-family: "Montserrat", sans-serif;
	font-size: 0.92rem;
	border: 1px solid transparent;
	transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.btn:hover {
	transform: translateY(-3px);
}

.btn-hot:hover {
	box-shadow: 0 10px 32px rgba(255, 92, 0, 0.52);
}

.btn-outline:hover {
	background: rgba(0, 174, 239, 0.09);
	border-color: var(--brand-blue-start);
	color: #0a3272;
	box-shadow: 0 8px 24px rgba(0, 174, 239, 0.24);
}

.btn-hot {
	color: #1b1b1b;
	background: linear-gradient(120deg, var(--flame-start), var(--flame-end));
}

.btn-outline {
	color: #134f96;
	border-color: #9dc3ec;
	background: rgba(255, 255, 255, 0.82);
}

.trust-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.hero-trust {
	grid-column: 1 / -1;
	margin-top: 0.2rem;
}

.trust-list li {
	position: relative;
	padding-left: 1.5rem;
	color: #24486f;
	font-weight: 600;
}

.trust-list li::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0.5rem;
	background: linear-gradient(130deg, var(--brand-blue-start), var(--brand-blue-end));
}

.shape-stack {
	min-height: 318px;
	position: relative;
	align-self: start;
}

.accent-dot {
	position: absolute;
	border-radius: 50%;
}

.accent-dot-a {
	width: 116px;
	height: 116px;
	background: rgba(255, 185, 0, 0.42);
	top: 5%;
	right: 7%;
}

.accent-dot-b {
	width: 84px;
	height: 84px;
	background: rgba(0, 174, 239, 0.26);
	bottom: 3%;
	left: 4%;
}

.photo-shape {
	position: absolute;
	margin: 0;
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.photo-shape:hover {
	transform: scale(1.02);
	box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.42), 0 24px 52px rgba(10, 39, 87, 0.24);
}

.photo-shape img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo-main {
	inset: 0 6% 13% 8%;
	border-radius: 44% 56% 52% 48% / 45% 39% 61% 55%;
	border: 7px solid #ffffff;
}

.photo-float {
	width: 42%;
	max-width: 220px;
	height: 45%;
	right: 0;
	bottom: 0;
	border-radius: 28px 70px 40px 66px;
	border: 6px solid #ffffff;
}

.split-card {
	display: grid;
	gap: 1.2rem;
	padding: clamp(1.25rem, 3.5vw, 1.8rem);
	border-radius: var(--radius);
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 88% 6%, rgba(0, 174, 239, 0.14), transparent 32%),
		radial-gradient(circle at 5% 85%, rgba(9, 58, 130, 0.12), transparent 30%),
		var(--card-surface);
	border: 1.5px solid var(--card-border);
	box-shadow: var(--card-shadow);
	backdrop-filter: blur(8px);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, outline 0.3s ease;
}

.split-card:hover {
	transform: translateY(-4px) !important;
	border-color: rgba(255, 146, 34, 0.72);
	outline: 3px solid rgba(255, 146, 34, 0.28);
	box-shadow: 0 22px 44px rgba(124, 63, 16, 0.22);
}

.domestic-cta {
	padding-top: 0.35rem;
}

.domestic-panel {
	position: relative;
	overflow: hidden;
	padding: clamp(1.25rem, 3.5vw, 1.9rem);
	border: 1.5px solid var(--card-border);
	border-radius: var(--radius);
	background:
		radial-gradient(circle at 88% 6%, rgba(0, 174, 239, 0.14), transparent 32%),
		radial-gradient(circle at 5% 85%, rgba(9, 58, 130, 0.12), transparent 30%),
		var(--card-surface);
	box-shadow: var(--card-shadow);
	backdrop-filter: blur(8px);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, outline 0.3s ease;
}

.domestic-panel:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 146, 34, 0.72);
	outline: 3px solid rgba(255, 146, 34, 0.28);
	box-shadow: 0 22px 44px rgba(124, 63, 16, 0.22);
}

.domestic-panel p {
	max-width: none;
	color: #2b4d73;
}

.thank-you-title {
	font-size: clamp(1.6rem, 5vw, 2.5rem);
	line-height: 1.2;
	text-wrap: balance;
}

.thank-you-title span {
	display: block;
}

.domestic-points {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.7rem;
	margin-top: 1.1rem;
}

.domestic-points span {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid #d6e6f7;
	border-radius: 999px;
	padding: 0.55rem 0.9rem;
	font-family: "Montserrat", sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	color: #174d90;
	text-align: center;
}

.badge-row {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
}

.badge-row img {
	max-height: 108px;
	width: auto;
	object-fit: contain;
}

.footer-badges img {
	max-height: 92px;
	width: auto;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.96);
	padding: 0.55rem 0.8rem;
	border-radius: 12px;
	border: 1px solid rgba(198, 220, 245, 0.8);
}

.section-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1rem;
}

.review-carousel {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.7rem;
}

.review-window {
	overflow: hidden;
}

.review-track {
	display: flex;
	transition: transform 0.45s ease;
}

.review-card {
	min-width: 100%;
	padding: 1.15rem;
	border-radius: var(--radius);
	border: 1.5px solid rgba(83, 136, 204, 0.3);
	box-shadow: 0 4px 12px rgba(8, 40, 86, 0.08);
	background: rgba(255, 255, 255, 0.86);
}

.review-card h3 {
	margin: 0.95rem 0 0;
	color: #0e4d93;
	font-size: 1rem;
}

.review-meta {
	margin: 0.65rem 0 0;
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #335b88;
}

.carousel-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #cde0f5;
	background: #ffffff;
	color: #124f95;
	font-size: 1rem;
}

.page-hero {
	padding-bottom: 0;
}

.about-grid {
	display: grid;
	gap: 2rem;
	align-items: center;
}

.photo-collage {
	position: relative;
	min-height: 350px;
}

.accent-dot-c {
	width: 125px;
	height: 125px;
	background: rgba(255, 92, 0, 0.22);
	top: 10%;
	left: 0;
}

.collage-item {
	position: absolute;
	margin: 0;
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 6px solid #ffffff;
	transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.collage-item:hover {
	transform: scale(1.03);
	box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.42), 0 24px 52px rgba(10, 39, 87, 0.24);
}

.collage-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.collage-item.a {
	width: 62%;
	height: 62%;
	top: 0;
	left: 12%;
	border-radius: 40px 80px 55px 45px;
}

.collage-item.b {
	width: 52%;
	height: 46%;
	right: 0;
	bottom: 8%;
	border-radius: 66% 34% 48% 52% / 46% 60% 40% 54%;
}

.collage-item.c {
	width: 40%;
	height: 38%;
	left: 0;
	bottom: 0;
	border-radius: 28px 28px 70px 38px;
}

.services-wrap {
	background: transparent;
}

.services-grid {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: 1fr;
}

.service-card {
	background: var(--card-surface);
	border: 1.5px solid var(--card-border);
	border-radius: 14px;
	padding: 0.9rem 0.9rem 0.9rem 2.45rem;
	position: relative;
	box-shadow: 0 10px 24px rgba(8, 40, 86, 0.15);
	transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease, outline 0.26s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 146, 34, 0.72);
	outline: 3px solid rgba(255, 146, 34, 0.28);
	box-shadow: 0 18px 36px rgba(124, 63, 16, 0.24);
}

.service-card::before {
	content: "\2713";
	position: absolute;
	left: 1rem;
	top: 0.9rem;
	width: 1.1rem;
	height: 1.1rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #ffffff;
	background: linear-gradient(130deg, var(--brand-blue-start), var(--brand-blue-end));
	font-size: 0.68rem;
}

.service-card h3 {
	margin: 0;
	font-size: 1rem;
}

.service-card p {
	margin: 0.45rem 0 0;
	color: #5b6780;
	font-size: 0.92rem;
	font-weight: 600;
}

.contact-grid {
	display: grid;
	gap: 1.35rem;
	align-items: start;
}

.contact-quick {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-bottom: 1.4rem;
}

.contact-photo-wrap {
	margin: 0;
	position: relative;
	width: min(360px, 90%);
	overflow: clip;
}

.accent-dot-d {
	width: 120px;
	height: 120px;
	background: rgba(0, 174, 239, 0.2);
	right: -10%;
	top: -8%;
}

.contact-photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
	border: 9px solid #ffffff;
	box-shadow: var(--shadow);
	transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.contact-photo:hover {
	transform: scale(1.03);
	box-shadow: 0 0 0 5px rgba(0, 174, 239, 0.42), 0 24px 52px rgba(10, 39, 87, 0.24);
}

.form-shell {
	border-radius: 20px;
	border: 1.5px solid var(--card-border);
	background: var(--card-surface);
	box-shadow: var(--card-shadow);
	padding: 1.15rem;
	backdrop-filter: blur(8px);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, outline 0.3s ease;
}

.form-shell:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 146, 34, 0.72);
	outline: 3px solid rgba(255, 146, 34, 0.28);
	box-shadow: 0 22px 44px rgba(124, 63, 16, 0.2);
}

.contact-form {
	display: grid;
	gap: 0.35rem;
}

.contact-form label {
	font-family: "Montserrat", sans-serif;
	font-size: 0.88rem;
	margin-top: 0.5rem;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid #cddff1;
	border-radius: 11px;
	font: inherit;
	padding: 0.76rem 0.84rem;
	background: #fcfdff;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: 2px solid rgba(0, 174, 239, 0.35);
	border-color: #7fb6ee;
}

.site-footer {
	margin-top: 0.45rem;
	color: #e8f2ff;
	background: linear-gradient(130deg, #0f356e, #0a2550);
}

.footer-grid {
	display: grid;
	gap: 1.2rem;
	padding: 1.8rem 0 1.05rem;
}

.footer-grid h2,
.footer-grid h3 {
	color: #ffffff;
}

.footer-grid a,
.footer-grid p {
	color: #c6daf3;
	display: block;
	margin-bottom: 0.4rem;
}

.footer-badges {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.copyright {
	margin: 0;
	border-top: 1px solid rgba(198, 218, 243, 0.2);
	text-align: center;
	padding: 0.95rem 0;
	color: #c6daf3;
}

/* ─── Section colour differentiation ────────────────────────── */

.intro {
	background: transparent;
}

.about-story {
	background: transparent;
}

.reviews {
	background: transparent;
}

.reviews .container {
	padding: clamp(0.9rem, 2.7vw, 1.45rem);
	border-radius: var(--radius);
	background:
		radial-gradient(circle at 90% 10%, rgba(0, 174, 239, 0.14), transparent 34%),
		radial-gradient(circle at 8% 85%, rgba(9, 58, 130, 0.12), transparent 30%),
		var(--card-surface);
	border: 1.5px solid var(--card-border);
	box-shadow: var(--card-shadow);
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, outline 0.3s ease;
}

.reviews .container:hover {
	transform: translateY(-4px) !important;
	border-color: rgba(255, 146, 34, 0.72);
	outline: 3px solid rgba(255, 146, 34, 0.28);
	box-shadow: 0 22px 44px rgba(124, 63, 16, 0.22);
}

.reviews .container::before {
	content: "";
	position: absolute;
	inset: -35% auto auto -18%;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, rgba(0, 174, 239, 0.16), transparent 72%);
	pointer-events: none;
}

.reviews .container::after {
	content: "";
	position: absolute;
	inset: auto -12% -38% auto;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(9, 58, 130, 0.14), transparent 74%);
	pointer-events: none;
}

.reviews h2 {
	color: var(--ink);
}

.reviews .btn-outline {
	color: #124f95;
	border-color: #9dc3ec;
	background: rgba(255, 255, 255, 0.82);
}

.reviews .btn-outline:hover {
	background: rgba(9, 58, 130, 0.1);
	border-color: rgba(9, 58, 130, 0.5);
	box-shadow: 0 8px 24px rgba(9, 58, 130, 0.22);
	color: #0a3272;
}

.reviews .review-card {
	background: rgba(255, 255, 255, 0.86);
	border-color: rgba(83, 136, 204, 0.44);
	color: #29476a;
	backdrop-filter: blur(6px);
}

.reviews .review-card h3 {
	color: #0e4d93;
}

.reviews .carousel-btn {
	background: rgba(255, 255, 255, 0.86);
	border-color: rgba(83, 136, 204, 0.44);
	color: #124f95;
}

.reviews .carousel-btn:hover {
	background: rgba(255, 255, 255, 0.22);
}

/* ─── Floating contact bubble ─────────────────────────────────── */

.float-bubble {
	position: fixed;
	bottom: 1.6rem;
	right: 1.6rem;
	z-index: 200;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.65rem;
}

.float-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	opacity: 0;
	transform: translateY(14px) scale(0.9);
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.float-menu.open {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.float-action {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.float-action:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.float-action svg {
	width: 26px;
	fill: #fff;
}

.float-phone {
	background: linear-gradient(135deg, var(--brand-blue-start), var(--brand-blue-end));
}

.float-wa {
	background: #25d366;
}

.float-trigger {
	height: 58px;
	min-width: 58px;
	width: 58px;
	border-radius: 999px;
	border: none;
	background: linear-gradient(135deg, var(--flame-start), var(--flame-end));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0 1rem;
	box-shadow: 0 6px 22px rgba(255, 92, 0, 0.5);
	cursor: pointer;
	overflow: hidden;
	transition: width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
	white-space: nowrap;
}

.float-trigger.labeled {
	width: 152px;
}

.float-trigger:hover {
	box-shadow: 0 10px 30px rgba(255, 92, 0, 0.65);
}

.float-label {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 0.88rem;
	opacity: 0;
	max-width: 0;
	overflow: hidden;
	transition: opacity 0.3s ease 0.1s, max-width 0.4s ease;
}

.float-trigger.labeled .float-label {
	opacity: 1;
	max-width: 100px;
}

.float-icon-wrap {
	position: relative;
	width: 26px;
	height: 26px;
	flex-shrink: 0;
}

.float-icon-wrap svg {
	position: absolute;
	inset: 0;
	width: 26px;
	fill: #fff;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.float-icon-wrap svg:first-child {
	opacity: 1;
	transform: rotate(0deg);
}

.float-icon-wrap svg:last-child {
	opacity: 0;
	transform: rotate(-90deg);
}

.float-trigger.menu-open .float-icon-wrap svg:first-child {
	opacity: 0;
	transform: rotate(90deg);
}

.float-trigger.menu-open .float-icon-wrap svg:last-child {
	opacity: 1;
	transform: rotate(0deg);
}

.reveal {
	animation: revealUp 0.7s ease both;
}

.shape-stack,
.photo-collage,
.contact-photo-wrap {
	animation: floatIn 0.9s ease both;
}

@keyframes revealUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes floatIn {
	from {
		opacity: 0;
		transform: translateY(24px) scale(0.98);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes heroGlow {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
		opacity: 0.74;
	}

	50% {
		transform: translate3d(10px, -8px, 0) scale(1.06);
		opacity: 0.9;
	}

	100% {
		transform: translate3d(-8px, 10px, 0) scale(1.02);
		opacity: 0.72;
	}
}

@media (min-width: 760px) {
	.brand {
		width: 180px;
	}

	.menu-toggle {
		display: none;
	}

	.site-nav {
		display: flex;
		position: static;
		flex-direction: row;
		border: 0;
		background: transparent;
		padding: 0;
		margin-left: auto;
		gap: 1.2rem;
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: auto;
		box-shadow: none;
		backdrop-filter: none;
		border-radius: 0;
		min-width: 0;
		transition: none;
	}

	.social-links {
		margin-left: 0;
	}

	.hero-grid,
	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr 1fr;
	}

	.split-card {
		grid-template-columns: 1fr;
	}

	.hero-trust {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 1.1rem;
	}

	.hero .shape-stack {
		margin-top: 0.2rem;
	}

	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.domestic-points {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-grid {
		grid-template-columns: 1.3fr 1fr 1fr 1fr;
		align-items: start;
	}
}

@media (min-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1.12fr 0.88fr;
		gap: clamp(1.2rem, 2vw, 1.8rem);
	}

	.hero .shape-stack {
		min-height: 400px;
	}

	.services-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
