:root {
	--blue: #1DABF8;
	--blue-dark: #148fd0;
	--text: #1f2937;
	--muted: #6b7280;
	--line: #cccccc;
	--soft: #f8fbff;
	--dark: #0f172a;
	--white: #ffffff;
}

body {
	background-color: white;
	color: var(--text);
}

/* NAV */
.nav {
	background-color: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
	color: var(--text);
}

.nav-left img {
	height: 45px;
	width: auto;
	margin-left: 5px;
}

.nav-center {
	display: none;
}

.nav-right {
	display: none;
}

.nav-center-mobile {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.nav-center-mobile h2 {
	margin: 0;
	color: var(--text);
}

.nav-right-mobile .fa-bars {
	color: var(--text);
}

.nav-links a{
	position: relative;
	text-decoration: none;
	padding-bottom: 4px;
}

/* underline base */
.nav-links a::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0%;
	height: 3px;
	background: var(--blue);
	border-radius: 3px;
	transition: width .28s ease;
}

.nav-links a.curr-page {
    color: var(--blue);
    font-weight: 600;
}

.nav-links a.curr-page::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
}

/* hover animation */
.nav-links a:hover::after{
	width: 100%;
}

/* active page */
.nav-links a.curr-page{
	color: var(--blue);
	font-weight: 600;
}

/* active underline stays visible */
.nav-links a.curr-page::after{
	width: 100%;
}

.quote-btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 0px 18px;
	height: 44px;

	background: linear-gradient(135deg, var(--blue), var(--blue-dark));
	color: white !important;

	border-radius: 14px;
	font-weight: 600;
	text-decoration: none;

	box-shadow: 0 8px 20px rgba(29,171,248,.25);
	transition: all .18s ease;
}

.nav-right .quote-btn {
	font-size: 16px;
	transform: translateY(-10px);
}

.quote-btn .fa{
	margin-right: 10px;
	margin-left: 0;
	font-size: 14px;
	color: white;
}

/* hover effect */
.quote-btn:hover{
	transform: translateY(-12px);
	box-shadow: 0 12px 26px rgba(29,171,248,.35);
}

/* click effect */
.quote-btn:active{
	transform: translateY(0px);
	box-shadow: 0 6px 14px rgba(29,171,248,.25);
}

/* /////////////////////////////////////////////////////////////////// */
/* SIDE MENU */
.side-menu {
	background-color: white;
	color: var(--text);
}

.side-menu .curr-page {
	color: var(--blue);
}

.side-menu a {
	color: var(--text);
}

.side-menu table {
	border-color: var(--line);
}

.side-menu input {
	color: var(--text);
}

/* PAGES */
.pages {
	width: 100%;
	margin-top: 30px;
}

.page {
	display: block;
	clear: both;
	width: 100%;
	padding: 60px 0;
	margin: 0;
}

.section-block {
	width: 92%;
	margin: auto;
}

.section-head {
	margin-bottom: 24px;
}

.section-head h1,
.section-head h2 {
	margin: 0 0 12px 0;
	color: var(--text);
}

.section-head p {
	margin: 0;
	color: var(--muted);
	line-height: 1.8;
}

button, input[type="button"] {
	background-color: var(--blue);
	height: 48px;
	font-size: 17px;
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(29, 171, 248, 0.18);
	cursor: pointer;
	padding: 0 18px;
}

.ghost-btn {
	background-color: white !important;
	color: var(--blue) !important;
	border: 1px solid var(--blue) !important;
	box-shadow: none !important;
}

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

/* ////////////////////////////////////////////////////////////////////////////////////// */
/* HERO */
.page1 {
	padding-top: 86px;
	background: linear-gradient(180deg, #ffffff 0%, #ffffff 55%, #f5fbff 100%);
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background-color: white;
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 18px;
}

.kicker-dot {
	width: 8px;
	height: 8px;
	border-radius: 99px;
	background-color: var(--blue);
}

.hero-grid {
	display: block;
}

.hero-copy h1 {
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	font-size: 15vw;
	text-align: left;
	margin: 0 0 12px 0;
	color: var(--text);
}

.hero-copy h1 span {
	color: var(--blue);
}

.hero-copy p {
	margin: 0 0 22px 0;
	line-height: 1.9;
	color: var(--muted);
}

.hero-btns button {
	margin-right: 10px;
	margin-bottom: 10px;
}

.hero-card{
	position: relative;
	background-color: white;
	border: 1px solid var(--line);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(29, 171, 248, 0.10);
}

.hero-slider{
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 320px;
	overflow: hidden;
}

.hero-slide{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity .5s ease;
	pointer-events: none;
}

.hero-slide.active-slide{
	opacity: 1;
	pointer-events: auto;
	position: relative;
}

.hero-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-dots{
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 5;
}

.hero-dot{
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: rgba(255,255,255,.55);
	border: 1px solid rgba(255,255,255,.65);
	cursor: pointer;
	transition: all .18s ease;
}

.hero-dot.active-dot{
	background: var(--blue);
	border-color: var(--blue);
	transform: scale(1.08);
}

.hero-cap {
	padding: 12px 14px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 14px;
}

.hero-btns .btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	min-width: 30%;
	height: 52px;
	padding: 0 22px;

	border-radius: 16px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;

	transition: all .18s ease;
	margin-bottom: 30px;
}

/* primary hero button */
.hero-btns .btn.primary{
	background: linear-gradient(135deg, var(--blue), var(--blue-dark));
	border: 1px solid var(--blue);
	color: white;
	box-shadow: 0 12px 28px rgba(29, 171, 248, 0.22);
	margin-right: 20px;
}

.hero-btns .btn.primary:hover{
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(29, 171, 248, 0.30);
}

.hero-btns .btn.primary:active{
	transform: translateY(0);
	box-shadow: 0 8px 18px rgba(29, 171, 248, 0.22);
}

/* secondary hero button */
.hero-btns .btn.ghost{
	background: rgba(255,255,255,0.88);
	border: 1px solid var(--line);
	color: var(--text);
	box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.hero-btns .btn.ghost:hover{
	transform: translateY(-2px);
	border-color: var(--blue);
	color: var(--blue);
	box-shadow: 0 12px 26px rgba(0,0,0,0.07);
}

.hero-btns .btn.ghost:active{
	transform: translateY(0);
}

/* icons inside hero buttons */
.hero-btns .btn .fa{
	font-size: 14px;
	margin-left: 0;
}

/* CARDS */
.cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.card {
	background-color: white;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 20px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.card-icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background-color: rgba(29, 171, 248, 0.08);
	border: 1px solid rgba(29, 171, 248, 0.20);
}

.card-icon .fa {
	color: var(--blue);
}

.card h3 {
	margin: 12px 0 8px 0;
	color: var(--text);
}

.card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.8;
}

.price {
	color: var(--blue);
	font-weight: 700;
	margin: 8px 0 10px 0;
}

.service-list {
	margin: 12px 0 0 0;
	padding-left: 18px;
	color: var(--muted);
}

.service-list li {
	margin-bottom: 6px;
}

/* SHOWCASE */
.showcase-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.showcase-item {
	background-color: white;
	border: 1px solid var(--line);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.showcase-item img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.showcase-info {
	padding: 16px;
}

.showcase-info h3 {
	margin: 0 0 8px 0;
}

.showcase-info p {
	margin: 0;
	color: var(--muted);
	line-height: 1.8;
}

/* CTA STRIP */
.cta-strip {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 22px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.cta-strip h3 {
	margin: 0 0 8px 0;
}

.cta-strip p {
	margin: 0;
	color: var(--muted);
	line-height: 1.8;
}

.cta-row {
	margin-top: 16px;
}

.cta-row .btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	text-decoration: none;
	gap:8px;

	height:52px;
	padding:0 22px;
	margin-right: 20px;
	margin-bottom: 15px;

	font-weight:600;
	border-radius:16px;

	transition:all .18s ease;
}

/* primary button */

.cta-row .btn.primary{

	background:linear-gradient(135deg,var(--blue),var(--blue-dark));
	border:1px solid var(--blue);
	color:white;

	box-shadow:0 12px 26px rgba(29,171,248,.22);

}

.cta-row .btn.primary:hover{

	transform:translateY(-2px);
	box-shadow:0 16px 34px rgba(29,171,248,.32);

}

/* ghost button */

.cta-row .btn.ghost{

	background:white;
	border:1px solid var(--line);
	color:var(--text);

	box-shadow:0 8px 20px rgba(0,0,0,.04);

}

.cta-row .btn.ghost:hover{

	transform:translateY(-2px);
	border-color:var(--blue);
	color:var(--blue);
	box-shadow:0 12px 24px rgba(0,0,0,.08);

}

/* ////////////////////////////////////////////////////////////////////// */
/* CONTACT */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.form-block label {
	display: block;
	color: var(--muted);
	font-size: 14px;
	margin-top: 8px;
}

.form-block input,
.form-block textarea {
	width: 100%;
	margin-top: 6px;
	padding: 12px 0;
	background-color: var(--soft);
	border: 1px solid var(--line);
	border-radius: 12px;
	outline: none;
}

.form-block textarea {
	height: 160px;
	resize: vertical;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.small-note {
	color: var(--muted);
	font-size: 14px;
	margin-top: 12px;
}

/* FOOTER */
.footer {
	background-color: var(--dark);
	color: white;
	padding: 50px 0 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cont {
	width: 80%;
	margin: auto;
}

.footer-block {
	margin-bottom: 32px;
}

.footer-block h1 {
	font-size: 22px;
	margin-bottom: 14px;
	color: white;
}

.footer-block p {
	margin: 0;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	text-align: left;
}

.ft-contact-info div {
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.82);
}

.ft-contact-info span {
	color: #7db2ff;
	margin-right: 10px;
}

.ft-contact-info a,
.ft-links a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.ft-links a {
	display: block;
	margin-bottom: 10px;
}

.footer-social a {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: white;
	text-decoration: none;
	margin-right: 8px;
	transition: all .16s ease;
}

.footer-social a:hover {
	color: #7db2ff;
	border-color: #7db2ff;
	transform: translateY(-2px);
}

.copy-right {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 8px;
	padding-top: 18px;
	text-align: center;
	color: rgba(255, 255, 255, 0.65);
	font-size: 14px;
}

/* DESKTOP */
@media only screen and (min-width: 768px) {
	.nav-center {
		display: block;
	}
	.nav-right {
		display: block;
	}
	.nav-center-mobile,
	.nav-right-mobile {
		display: none;
	}

	.nav-left img {
		height: 50px;
		width: auto;
		margin-left: 35px;
	}

	.pages {
		margin-top: 60px;
	}

	.section-block,
	.footer-cont {
		width: 85%;
	}

	.hero-grid {
		display: grid;
		grid-template-columns: 1.08fr .92fr;
		gap: 24px;
		align-items: center;
	}

	.hero-card {
		margin-top: 0;
	}

	.hero-copy h1 {
		font-size: 58px;
	}

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

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

	.contact-grid {
		grid-template-columns: 1.12fr .88fr;
	}

	.form-row {
		grid-template-columns: 1fr 1fr;
	}

	.footer-cont {
		display: grid;
		grid-template-columns: 1.2fr 1fr 1fr 1fr;
		gap: 30px;
		align-items: start;
	}

	.footer-block {
		margin-bottom: 0;
	}

	.copy-right {
		grid-column: 1 / -1;
	}
}
