@import url(font-awesome.min.css);
@import url('https://fonts.googleapis.com/css?family=Nunito:400,700');

/* Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u,
i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul { list-style: none; }
blockquote, q { quotes: none; }
table { border-collapse: collapse; border-spacing: 0; }

*, *:before, *:after {
	box-sizing: border-box;
}

/* Base */
html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	color: #303036;
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.65;
	background-color: #fff;
	background-image: url("../../images/overlay.png"), url("../../images/bg.jpg");
	background-repeat: repeat, repeat-x;
	background-size: 128px 128px, cover;
	background-attachment: fixed;
	overflow-x: hidden;
}

/* Typography */
a {
	color: #ff722b;
	text-decoration: none;
	border-bottom: dotted 1px;
	transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
}

a:hover {
	border-bottom-color: transparent;
	color: #303036;
}

strong, b { font-weight: bold; }
em, i { font-style: italic; }

p {
	margin: 0 0 1.5rem 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 0.75rem 0;
	text-transform: uppercase;
}

h1 { font-size: 1.8rem; color: #ff722b; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.325rem; color: #ff722b; }
h4 { font-size: 1rem; }

ul.plain {
	list-style: none;
	padding: 0;
}

ul.plain li {
	padding: 0.35rem 0;
}

/* Layout */
.sp-wrapper {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Header */
.sp-header {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 0.5rem 0;
}

.sp-header .sp-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sp-header-logo img {
	height: 72px;
	width: auto;
	display: block;
}

.sp-header-logo {
	border-bottom: none;
}

.sp-header-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.sp-header-nav a {
	font-family: 'Nunito', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	color: #303036;
	border-bottom: none;
}

.sp-header-nav a:hover {
	color: #ff722b;
}

/* Hero */
.sp-hero {
	background-color: #ff722b;
	background-image: url("../../images/overlay.png"), linear-gradient(45deg, #ff722b 0%, #ff9b66 100%);
	background-size: 128px 128px, auto;
	color: #fff;
	padding: 3rem 0 2.5rem;
}

.sp-hero h1 {
	color: #fff;
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.sp-hero p {
	font-size: 1.1rem;
	opacity: 0.9;
	margin-bottom: 0;
}

.sp-breadcrumb {
	font-size: 0.8rem;
	opacity: 0.75;
	margin-bottom: 1rem;
}

.sp-breadcrumb a {
	color: #fff;
	border-bottom-color: rgba(255, 255, 255, 0.4);
}

.sp-breadcrumb a:hover {
	color: #fff;
	border-bottom-color: transparent;
}

/* Main Content */
.sp-main {
	padding: 3rem 0;
}

.sp-section {
	margin-bottom: 3rem;
}

.sp-section:last-child {
	margin-bottom: 0;
}

.sp-section h2 {
	margin-bottom: 1rem;
}

/* Tables */
.sp-table-wrapper {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 2rem;
}

.sp-table {
	width: 100%;
	margin: 0;
}

.sp-table th {
	color: #ff722b;
	font-weight: bold;
	text-align: left;
	text-transform: uppercase;
	padding: 0.5rem 0.75rem;
	font-size: 0.85rem;
	border-bottom: 2px solid rgba(255, 114, 43, 0.2);
}

.sp-table td {
	padding: 0.4rem 0.75rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-table td:first-child {
	font-style: italic;
	text-align: right;
	white-space: nowrap;
	width: 60px;
}

.sp-table .tsection th {
	padding-top: 1.5rem;
	border-bottom: 2px solid rgba(255, 114, 43, 0.2);
}

.sp-table tbody tr:hover {
	background: rgba(255, 114, 43, 0.04);
}

/* Two-column table layout */
.sp-tables-row {
	display: flex;
	gap: 2rem;
}

.sp-tables-row .sp-table-wrapper {
	flex: 1;
	min-width: 0;
}

/* Buttons */
.sp-btn {
	appearance: none;
	display: inline-block;
	background-color: transparent;
	border: 0;
	border-radius: 0.25rem;
	box-shadow: inset 0 0 0 2px #ff722b;
	color: #ff722b;
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	height: 2.75rem;
	letter-spacing: 0.15rem;
	line-height: 2.75rem;
	padding: 0 1.5rem 0 1.65rem;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	border-bottom: none;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.sp-btn:hover {
	background-color: #ff722b;
	color: #fff;
	border-bottom: none;
}

.sp-btn-primary {
	background-color: #ff722b;
	color: #fff;
	box-shadow: none;
}

.sp-btn-primary:hover {
	background-color: #e5611f;
	color: #fff;
}

.sp-btn-white {
	background-color: #fff;
	color: #ff722b;
	box-shadow: none;
}

.sp-btn-white:hover {
	background-color: #ffe4b4;
	color: #ff722b;
}

.sp-btn-large {
	font-size: 0.75rem;
	height: 3.25rem;
	line-height: 3.25rem;
	padding: 0 2rem 0 2.15rem;
}

/* CTA Strip */
.sp-cta {
	background-color: #ff722b;
	background-image: url("../../images/overlay.png"), linear-gradient(45deg, #ff722b 0%, #ff9b66 100%);
	background-size: 128px 128px, auto;
	color: #fff;
	padding: 2.5rem 0;
	text-align: center;
}

.sp-cta h2 {
	color: #fff;
	margin-bottom: 0.5rem;
}

.sp-cta p {
	opacity: 0.9;
	margin-bottom: 1.5rem;
}

/* FAQ */
.sp-faq {
	margin-top: 2rem;
}

.sp-faq-item {
	margin-bottom: 1.5rem;
}

.sp-faq-item h3 {
	margin-bottom: 0.25rem;
	font-size: 1rem;
}

.sp-faq-item p {
	margin-bottom: 0;
}

/* Comparison Table */
.sp-compare {
	width: 100%;
	margin-bottom: 2rem;
}

.sp-compare th,
.sp-compare td {
	padding: 0.6rem 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-compare th {
	color: #ff722b;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.85rem;
	border-bottom: 2px solid rgba(255, 114, 43, 0.2);
}

.sp-compare td:first-child {
	font-weight: 700;
	white-space: nowrap;
}

.sp-compare tbody tr:hover {
	background: rgba(255, 114, 43, 0.04);
}

/* Info Box */
.sp-infobox {
	background: rgba(255, 228, 180, 0.3);
	border-left: 4px solid #ff722b;
	padding: 1.25rem 1.5rem;
	margin-bottom: 2rem;
	border-radius: 0 0.25rem 0.25rem 0;
}

.sp-infobox p:last-child {
	margin-bottom: 0;
}

/* Icon List */
.sp-icon-list {
	list-style: none;
	padding: 0;
}

.sp-icon-list li {
	padding: 0.4rem 0 0.4rem 1.75rem;
	position: relative;
}

.sp-icon-list li:before {
	font-family: FontAwesome;
	position: absolute;
	left: 0;
	color: #ff722b;
}

.sp-icon-list li.check:before { content: '\f00c'; }
.sp-icon-list li.map:before { content: '\f041'; }
.sp-icon-list li.clock:before { content: '\f017'; }
.sp-icon-list li.subway:before { content: '\f239'; }
.sp-icon-list li.star:before { content: '\f005'; }
.sp-icon-list li.leaf:before { content: '\f06c'; }
.sp-icon-list li.heart:before { content: '\f004'; }

/* Two-column layout */
.sp-cols {
	display: flex;
	gap: 3rem;
}

.sp-cols > * {
	flex: 1;
	min-width: 0;
}

/* Map embed */
.sp-map {
	position: relative;
	padding-bottom: 50%;
	height: 0;
	overflow: hidden;
	margin-bottom: 2rem;
	border-radius: 0.25rem;
}

.sp-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Footer */
.sp-footer {
	background-color: #2e2b37;
	color: rgba(255, 255, 255, 0.6);
	padding: 3rem 0 2rem;
}

.sp-footer a {
	color: rgba(255, 255, 255, 0.75);
	border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sp-footer a:hover {
	color: #fff;
	border-bottom-color: transparent;
}

.sp-footer h4 {
	color: #fff;
	font-size: 0.85rem;
	margin-bottom: 0.75rem;
}

.sp-footer-grid {
	display: flex;
	gap: 3rem;
}

.sp-footer-grid > div {
	flex: 1;
	min-width: 0;
}

.sp-footer-links {
	list-style: none;
	padding: 0;
}

.sp-footer-links li {
	padding: 0.2rem 0;
}

.sp-footer-social {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 1rem;
}

.sp-footer-social a {
	border-bottom: none;
	font-size: 1.2rem;
}

.sp-footer-social a:hover {
	color: #ff722b;
}

.sp-footer-bottom {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.8rem;
	text-align: center;
}

/* Floating WhatsApp Button */
.sp-fab {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	width: 56px;
	height: 56px;
	background-color: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.6rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	z-index: 200;
	border-bottom: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sp-fab:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
	color: #fff;
	border-bottom: none;
}

/* Dark section variant */
.sp-dark {
	background-color: #353865;
	background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
	background-size: 128px 128px, auto;
	color: rgba(255, 255, 255, 0.75);
	padding: 3rem 0;
}

.sp-dark h2,
.sp-dark h3 {
	color: #fff;
}

.sp-dark a {
	color: #ffe4b4;
}

/* Warm section variant */
.sp-warm {
	background-color: #ffe4b4;
	background-image: url("../../images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 228, 180, 0.25));
	background-size: 128px 128px, auto;
	padding: 3rem 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.sp-hero h1 {
		font-size: 1.5rem;
	}

	.sp-cols {
		flex-direction: column;
		gap: 2rem;
	}

	.sp-tables-row {
		flex-direction: column;
		gap: 0;
	}

	.sp-footer-grid {
		flex-direction: column;
		gap: 2rem;
	}

	.sp-header-nav {
		gap: 0.75rem;
	}

	.sp-header-nav a.sp-nav-link {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	html {
		font-size: 15px;
	}

	.sp-wrapper {
		padding: 0 1.25rem;
	}

	.sp-hero {
		padding: 2rem 0 1.5rem;
	}

	.sp-main {
		padding: 2rem 0;
	}

	.sp-btn-large {
		font-size: 0.75rem;
		width: 100%;
		display: block;
		text-align: center;
	}
}
