:root {
	--font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-mono: 'JetBrains Mono', monospace;

	/* Color Palette */
	--brand-navy-950: #06101e;
	--brand-navy-900: #0b1a30;
	--brand-navy-800: #122849;
	--brand-navy-700: #1a3865;
	--brand-blue: #0070f3;
	--brand-cyan: #00b4d8;
	--brand-cyan-light: #e0f7fa;
	--brand-orange: #ff5722;
	--brand-orange-hover: #f4511e;
	--brand-orange-light: #fff3e0;
	--brand-emerald: #10b981;
	--brand-emerald-light: #ecfdf5;

	--bg-main: #f8fafc;
	--bg-card: #ffffff;
	--bg-card-alt: #f1f5f9;
	--border-color: #e2e8f0;
	--border-subtle: #edf2f7;
	--text-primary: #0f172a;
	--text-secondary: #475569;
	--text-muted: #64748b;
	--text-inverse: #ffffff;

	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
	--shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.05);
	--shadow-xl: 0 20px 30px -10px rgb(0 0 0 / 0.12);
	--shadow-glow: 0 0 25px rgba(0, 180, 216, 0.35);
	--shadow-orange-glow: 0 0 20px rgba(255, 87, 34, 0.4);

	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 9999px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-sans);
	background-color: var(--bg-main);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	color: var(--text-primary);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

p {
	color: var(--text-secondary);
}

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

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	outline: none;
}

/* Container */
.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Top Emergency Announcement Bar */
.top-bar {
	background: linear-gradient(90deg, #b91c1c, #dc2626, #ea580c);
	color: #ffffff;
	padding: 0.55rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	text-align: center;
	position: relative;
	z-index: 60;
}

.top-bar .live-dot {
	width: 8px;
	height: 8px;
	background: #ffffff;
	border-radius: 50%;
	display: inline-block;
	animation: pulse-ring 1.5s infinite;
	margin-right: 6px;
}

.top-bar a.phone-link {
	color: #fff;
	background: rgba(0, 0, 0, 0.25);
	padding: 0.2rem 0.75rem;
	border-radius: 9999px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	transition: background 0.2s ease, transform 0.15s ease;
}

.top-bar a.phone-link:hover {
	background: rgba(0, 0, 0, 0.45);
	transform: scale(1.02);
}

/* Header & Nav */
.site-header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 50;
	transition: all 0.2s ease;
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
}

.logo-brand {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	cursor: pointer;
}

.logo-icon-wrap {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: linear-gradient(135deg, #0284c7, #0369a1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.logo-text-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--brand-navy-950);
	letter-spacing: -0.03em;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.logo-text-title span.logic {
	color: #0284c7;
}

.logo-text-sub {
	font-size: 0.725rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
}

.nav-link-item {
	font-size: 0.925rem;
	font-weight: 600;
	color: var(--text-secondary);
	transition: color 0.15s ease;
	position: relative;
	padding: 0.3rem 0;
}

.nav-link-item:hover, .nav-link-item.active {
	color: #0284c7;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

/* Standard Buttons */
.btn-primary {
	background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-hover));
	color: #ffffff;
	padding: 0.7rem 1.35rem;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 4px 14px rgba(255, 87, 34, 0.35);
	transition: all 0.2s ease;
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(255, 87, 34, 0.45);
}

.btn-call {
	background: linear-gradient(135deg, #0284c7, #0369a1);
	color: #ffffff;
	padding: 0.7rem 1.35rem;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
	transition: all 0.2s ease;
}

.btn-call:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
}

.btn-secondary {
	background: var(--bg-card);
	color: var(--brand-navy-900);
	border: 1px solid var(--border-color);
	padding: 0.7rem 1.35rem;
	border-radius: var(--radius-full);
	font-weight: 600;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s ease;
}

.btn-secondary:hover {
	background: var(--bg-card-alt);
	border-color: #cbd5e1;
	transform: translateY(-1px);
}

.btn-pulse {
	animation: emergency-glow 2s infinite;
}

/* Hero Section */
.hero-section {
	position: relative;
	background: linear-gradient(175deg, #0b1a30 0%, #06101e 100%);
	color: #ffffff;
	padding: 4.5rem 0 5.5rem;
	overflow: hidden;
}

.hero-backdrop-glow {
	position: absolute;
	top: -20%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(0, 180, 216, 0.22) 0%, rgba(11, 26, 48, 0) 70%);
	border-radius: 50%;
	filter: blur(50px);
	pointer-events: none;
}

.hero-backdrop-grid {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 3.5rem;
	align-items: center;
	position: relative;
	z-index: 10;
}

.hero-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: rgba(2, 132, 199, 0.18);
	border: 1px solid rgba(0, 180, 216, 0.4);
	padding: 0.4rem 0.95rem;
	border-radius: var(--radius-full);
	font-size: 0.85rem;
	font-weight: 700;
	color: #38bdf8;
	margin-bottom: 1.25rem;
}

.hero-title {
	font-size: clamp(2.4rem, 4.2vw, 3.6rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.15;
	margin-bottom: 1.25rem;
	letter-spacing: -0.03em;
}

.hero-title .gradient-text {
	background: linear-gradient(135deg, #38bdf8, #60a5fa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-subtitle {
	font-size: 1.15rem;
	color: #cbd5e1;
	margin-bottom: 2rem;
	max-width: 580px;
	line-height: 1.6;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.25rem;
}

.hero-trust-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 1.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #94a3b8;
}

.trust-item svg {
	color: #38bdf8;
}

/* Hero Dispatch Card (Interactive Right Column) */
.hero-dispatch-card {
	background: #ffffff;
	border-radius: var(--radius-xl);
	padding: 2rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
	color: var(--text-primary);
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.dispatch-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
}

.dispatch-status {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	font-weight: 700;
	color: #16a34a;
	background: #dcfce7;
	padding: 0.3rem 0.75rem;
	border-radius: var(--radius-full);
}

.dispatch-status .blink-dot {
	width: 7px;
	height: 7px;
	background: #16a34a;
	border-radius: 50%;
	animation: pulse-ring 1.2s infinite;
}

.dispatch-form-group {
	margin-bottom: 1rem;
}

.dispatch-form-group label {
	display: block;
	font-size: 0.825rem;
	font-weight: 700;
	color: var(--text-secondary);
	margin-bottom: 0.4rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.dispatch-select, .dispatch-input {
	width: 100%;
	padding: 0.75rem 0.95rem;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	font-family: inherit;
	font-size: 0.925rem;
	background: #f8fafc;
	color: var(--text-primary);
	transition: all 0.15s ease;
}

.dispatch-select:focus, .dispatch-input:focus {
	outline: none;
	border-color: #0284c7;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Key Stats Ribbon */
.stats-ribbon {
	background: #ffffff;
	border-bottom: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
	position: relative;
	z-index: 20;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	divide-x: 1px solid var(--border-color);
	padding: 1.5rem 0;
}

.stat-box {
	text-align: center;
	padding: 0.75rem 1.25rem;
}

.stat-number {
	font-size: 2rem;
	font-weight: 800;
	color: var(--brand-navy-950);
	letter-spacing: -0.03em;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
}

.stat-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-muted);
	margin-top: 0.25rem;
}

/* Sections Common */
.section {
	padding: 5rem 0;
}

.section-alt {
	background: #ffffff;
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3.5rem;
}

.section-tag {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #0284c7;
	background: #e0f2fe;
	padding: 0.35rem 0.85rem;
	border-radius: var(--radius-full);
	margin-bottom: 0.85rem;
}

.section-title {
	font-size: clamp(2rem, 3vw, 2.6rem);
	font-weight: 800;
	color: var(--brand-navy-950);
	margin-bottom: 1rem;
}

.section-desc {
	font-size: 1.05rem;
	color: var(--text-secondary);
}

/* Services Cards Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 1.75rem;
}

.service-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: #38bdf8;
	box-shadow: var(--shadow-xl);
}

.service-icon-wrap {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	font-size: 1.5rem;
}

.service-card h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--brand-navy-950);
}

.service-card p {
	font-size: 0.95rem;
	color: var(--text-secondary);
	margin-bottom: 1.25rem;
	flex-grow: 1;
}

.service-feature-list {
	list-style: none;
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.service-feature-list li {
	font-size: 0.875rem;
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.service-feature-list li svg {
	color: #10b981;
	flex-shrink: 0;
}

.service-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border-subtle);
}

.price-tag {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--brand-navy-900);
}

.price-tag span {
	color: var(--brand-orange);
	font-size: 1.05rem;
}

/* Interactive CCTV Diagnosis Visualizer Tool */
.cctv-tool-box {
	background: var(--brand-navy-950);
	border-radius: var(--radius-xl);
	border: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
	color: #ffffff;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cctv-header {
	background: rgba(255, 255, 255, 0.05);
	padding: 1.25rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.camera-rec-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-mono);
	font-size: 0.85rem;
	color: #ef4444;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.camera-rec-dot {
	width: 10px;
	height: 10px;
	background: #ef4444;
	border-radius: 50%;
	animation: pulse-ring 1s infinite;
}

.cctv-body {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	min-height: 380px;
}

.cctv-screen {
	background: #020617;
	padding: 2rem;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cctv-hud-overlay {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: #38bdf8;
	display: flex;
	justify-content: space-between;
	opacity: 0.85;
}

.cctv-pipe-diagram {
	margin: 2rem 0;
	background: rgba(15, 23, 42, 0.8);
	border: 2px dashed rgba(56, 189, 248, 0.4);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	position: relative;
	text-align: center;
}

.cctv-options-panel {
	padding: 2rem;
	background: rgba(11, 26, 48, 0.6);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.cctv-issue-btn {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	padding: 1rem;
	color: #ffffff;
	text-align: left;
	transition: all 0.2s ease;
	cursor: pointer;
}

.cctv-issue-btn:hover, .cctv-issue-btn.active {
	background: rgba(2, 132, 199, 0.25);
	border-color: #38bdf8;
	transform: translateX(4px);
}

.cctv-issue-title {
	font-weight: 700;
	font-size: 0.95rem;
	margin-bottom: 0.2rem;
	color: #ffffff;
}

.cctv-issue-sol {
	font-size: 0.8rem;
	color: #94a3b8;
}

/* Reviews / Google Maps Showcase */
.rating-header-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	padding: 2.25rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2.5rem;
	box-shadow: var(--shadow-sm);
	flex-wrap: wrap;
	gap: 1.5rem;
}

.google-brand-badge {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.g-logo-wrap {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #f8fafc;
	border: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-sm);
}

.stars-row {
	display: flex;
	gap: 0.2rem;
	color: #f59e0b;
	font-size: 1.2rem;
}

.review-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.5rem;
}

.review-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.review-user-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.user-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0284c7, #0369a1);
	color: #ffffff;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
}

.user-meta-name {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--text-primary);
}

.user-meta-sub {
	font-size: 0.775rem;
	color: var(--text-muted);
}

.review-quote {
	font-size: 0.925rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.25rem;
	font-style: normal;
}

.review-tag {
	align-self: flex-start;
	font-size: 0.75rem;
	font-weight: 700;
	color: #0284c7;
	background: #f0f9ff;
	padding: 0.25rem 0.65rem;
	border-radius: var(--radius-full);
}

/* Coverage & Map Section */
.coverage-card {
	background: #ffffff;
	border-radius: var(--radius-xl);
	border: 1px solid var(--border-color);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.coverage-info {
	padding: 3rem;
}

.coverage-map-pane {
	background: var(--brand-navy-900);
	padding: 3rem;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

.postcode-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 1.5rem 0;
}

.postcode-chip {
	background: #f1f5f9;
	border: 1px solid var(--border-color);
	font-family: var(--font-mono);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--brand-navy-950);
	padding: 0.35rem 0.75rem;
	border-radius: var(--radius-md);
}

/* Price Calculator Section */
.calculator-box {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	box-shadow: var(--shadow-lg);
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 2.5rem;
}

.calc-options-col {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.calc-summary-col {
	background: linear-gradient(135deg, #0b1a30, #06101e);
	border-radius: var(--radius-lg);
	padding: 2rem;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.summary-price-big {
	font-size: 2.75rem;
	font-weight: 800;
	color: #38bdf8;
	line-height: 1;
	margin: 1rem 0;
	font-family: var(--font-sans);
}

/* FAQ Accordion */
.faq-grid {
	max-width: 840px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-item {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: all 0.2s ease;
}

.faq-question {
	padding: 1.25rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--brand-navy-950);
	cursor: pointer;
	user-select: none;
}

.faq-question:hover {
	color: #0284c7;
}

.faq-answer {
	padding: 0 1.5rem 1.25rem;
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* CTA Emergency Banner */
.emergency-banner-section {
	background: linear-gradient(135deg, #b91c1c, #991b1b);
	color: #ffffff;
	padding: 4.5rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.banner-pulse-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
	border-radius: 50%;
	pointer-events: none;
}

/* Footer */
.site-footer {
	background: #06101e;
	color: #94a3b8;
	padding: 4.5rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 3rem;
	margin-bottom: 3.5rem;
}

.footer-col h4 {
	color: #ffffff;
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.footer-links a {
	color: #94a3b8;
	font-size: 0.9rem;
	transition: color 0.15s ease;
}

.footer-links a:hover {
	color: #38bdf8;
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Floating Sticky Mobile Emergency Action Bar */
.mobile-sticky-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(11, 26, 48, 0.96);
	backdrop-filter: blur(10px);
	padding: 0.75rem 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	z-index: 999;
	gap: 0.75rem;
}

/* Modal Booking & Callback Dialog */
.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(6, 16, 30, 0.8);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: 1rem;
}

.modal-content {
	background: #ffffff;
	border-radius: var(--radius-xl);
	max-width: 540px;
	width: 100%;
	padding: 2.25rem;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
	position: relative;
	animation: modal-pop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	max-height: 90vh;
	overflow-y: auto;
}

.modal-close-btn {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	background: #f1f5f9;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	font-size: 1.2rem;
	transition: background 0.15s ease;
}

.modal-close-btn:hover {
	background: #e2e8f0;
	color: var(--text-primary);
}

/* Animations */
@keyframes pulse-ring {
	0% {
		transform: scale(0.95);
		opacity: 0.8;
	}
	50% {
		transform: scale(1.15);
		opacity: 1;
	}
	100% {
		transform: scale(0.95);
		opacity: 0.8;
	}
}

@keyframes emergency-glow {
	0%, 100% {
		box-shadow: 0 0 15px rgba(255, 87, 34, 0.4);
	}
	50% {
		box-shadow: 0 0 30px rgba(255, 87, 34, 0.8);
	}
}

@keyframes modal-pop {
	from {
		opacity: 0;
		transform: scale(0.95) translateY(10px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	.stats-grid > div {
		border: none !important;
	}
	.coverage-card {
		grid-template-columns: 1fr;
	}
	.calculator-box {
		grid-template-columns: 1fr;
	}
	.cctv-body {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	.mobile-sticky-bar {
		display: flex;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.hero-section {
		padding: 3rem 0 4rem;
	}
	.service-card {
		padding: 1.5rem;
	}
	.rating-header-card {
		flex-direction: column;
		text-align: center;
	}
	.google-brand-badge {
		flex-direction: column;
	}
	.top-bar {
		font-size: 0.775rem;
		flex-direction: column;
		gap: 0.35rem;
	}
}
