/* =========================
   GLOBAL PREMIUM UPGRADE
========================= */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Cairo", sans-serif;
}

body {
	background: #f4fbff;
	overflow-x: hidden;
	color: #0f4566;
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* =========================
   HERO (ULTRA PREMIUM)
========================= */

.service-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 100px 7%;
	position: relative;
	overflow: hidden;

	background: radial-gradient(circle at top right, #1b2b4a, #07152f 60%);
}

/* Animated glow blobs */
.service-hero::before,
.service-hero::after {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.2;
	animation: floatGlow 8s ease-in-out infinite;
}

.service-hero::before {
	background: #22d3ee;
	top: -200px;
	right: -200px;
}

.service-hero::after {
	background: #4b8cff;
	bottom: -200px;
	left: -200px;
	animation-delay: 2s;
}

@keyframes floatGlow {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(40px) scale(1.1);
	}
}

/* HERO CONTENT */
.hero-content2 {
	position: relative;
	max-width: 750px;
	animation: fadeUp 1s ease;
	margin-top: 100px;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* BADGE */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	padding: 10px 18px;
	border-radius: 50px;

	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);

	color: #fff;
	font-weight: 700;

	border: 1px solid rgba(255, 255, 255, 0.1);

	margin-bottom: 18px;
	transition: 0.3s;
}

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

/* TITLE */
h1 {
	font-size: clamp(38px, 5vw, 62px);
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 18px;
}

/* TEXT */
p {
	font-size: 17px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 25px;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons2 {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.btn {
	padding: 14px 26px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.35s;
	position: relative;
	overflow: hidden;
}

/* PRIMARY */
.primary {
	background: linear-gradient(135deg, #22d3ee, #4b8cff);
	color: white;
	box-shadow: 0 15px 40px rgba(75, 140, 255, 0.25);
}

.primary:hover {
	transform: translateY(-5px);
}

/* OUTLINE */
.outline {
	border: 2px solid rgba(34, 211, 238, 0.6);
	color: #22d3ee;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
}

.outline:hover {
	background: #22d3ee;
	color: #07152f;
	transform: translateY(-5px);
}

/* =========================
   MINI STATS (ULTRA CARD)
========================= */

.stats-mini {
	display: flex;
	gap: 15px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.stats-mini div {
	flex: 1;
	min-width: 120px;

	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);

	padding: 18px;
	border-radius: 20px;

	text-align: center;
	backdrop-filter: blur(12px);

	transition: 0.3s;
}

.stats-mini div:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.1);
}

.stats-mini h3 {
	color: #22d3ee;
	font-size: 22px;
}

.stats-mini span {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

/* =========================
   WHY SECTION (CARDS ULTRA)
========================= */

.section-title {
	text-align: center;
	font-size: clamp(30px, 4vw, 48px);
	margin: 90px 0 40px;
	font-weight: 800;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 25px;
	padding: 0 7%;
}

.card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(15px);

	border-radius: 25px;
	padding: 35px;

	text-align: center;

	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);

	transition: 0.4s;
	position: relative;
	overflow: hidden;
}

.card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: linear-gradient(135deg, #22d3ee, #4b8cff);
	transition: 0.4s;
	z-index: 0;
}

.card:hover::before {
	height: 100%;
}

.card * {
	position: relative;
	z-index: 2;
}

.card:hover {
	transform: translateY(-12px);
}

.card i {
	font-size: 40px;
	color: #22d3ee;
	margin-bottom: 15px;
	transition: 0.3s;
}

.card:hover i,
.card:hover h3,
.card:hover p {
	color: #fff;
}

/* =========================
   STEPS (PREMIUM TIMELINE)
========================= */

.steps {
	background: linear-gradient(135deg, #07152f, #0f172a);
	color: white;
	padding: 110px 7%;
}

.timeline {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.step {
	display: flex;
	gap: 20px;
	align-items: center;

	padding: 20px;
	border-radius: 20px;

	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);

	transition: 0.4s;
}

.step:hover {
	transform: translateX(-8px);
	background: rgba(255, 255, 255, 0.08);
}

.step span {
	width: 50px;
	height: 50px;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	background: linear-gradient(135deg, #22d3ee, #4b8cff);
	font-weight: 800;
	color: #07152f;
}

/* =========================
   CONTACT (ULTRA CLEAN)
========================= */

.contact {
	padding: 110px 7%;
}

.contact-box {
	max-width: 650px;
	margin: auto;

	display: flex;
	flex-direction: column;
	gap: 15px;

	background: white;
	padding: 40px;
	border-radius: 30px;

	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

input,
textarea {
	padding: 15px;
	border-radius: 15px;

	border: 2px solid transparent;
	background: #f4fbff;

	transition: 0.3s;
}

input:focus,
textarea:focus {
	border-color: #22d3ee;
	outline: none;
	transform: scale(1.02);
}

button {
	padding: 15px;
	border: none;
	border-radius: 20px;

	background: linear-gradient(135deg, #22d3ee, #4b8cff);
	color: white;

	font-weight: 700;
	cursor: pointer;

	transition: 0.3s;
}

button:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(75, 140, 255, 0.25);
}

/* =========================
   FLOATING BUTTONS
========================= */

.floating-actions {
	position: fixed;
	bottom: 20px;
	left: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 999;
}

.fab {
	width: 55px;
	height: 55px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;
	color: white;

	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);

	transition: 0.3s;
}

.fab:hover {
	transform: scale(1.1) rotate(5deg);
}

.call {
	background: #4b8cff;
	text-align: center;
}
.whatsapp {
	background: #22c55e;
	text-align: center;
}

.call i {
	text-align: center;
	font-size: 30px;
	padding: 10px;
}

.whatsapp i {
	text-align: center;
	font-size: 30px;
	padding: 10px;
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal {
	opacity: 0;
	transform: translateY(60px);
	transition: 0.8s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* =========================
   CONTACT PREMIUM HUB
========================= */

.contact-premium {
	padding: 120px 7%;
	background: linear-gradient(135deg, #f4fbff, #eef8ff);
	text-align: center;
}

/* TITLE */
.sub-title {
	color: #6b7c93;
	margin-bottom: 50px;
	font-size: 18px;
}

/* GRID */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 25px;
}

/* CARD */
.contact-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(15px);

	padding: 35px 25px;
	border-radius: 28px;

	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);

	transition: 0.4s;
	position: relative;
	overflow: hidden;
}

/* Hover glow layer */
.contact-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 0%;

	background: linear-gradient(135deg, #22d3ee, #4b8cff);
	transition: 0.4s;
	z-index: 0;
}

.contact-card:hover::before {
	height: 100%;
}

.contact-card * {
	position: relative;
	z-index: 2;
}

.contact-card:hover {
	transform: translateY(-12px);
}

/* ICON */
.contact-card i {
	font-size: 45px;
	color: #22d3ee;
	margin-bottom: 15px;
	transition: 0.3s;
}

.contact-card h3 {
	font-size: 22px;
	color: #0f4566;
	margin-bottom: 10px;
}

.contact-card p {
	color: #6b7c93;
	line-height: 1.8;
	margin-bottom: 18px;
}

/* BUTTON */
.contact-btn {
	display: inline-block;
	padding: 12px 22px;

	border-radius: 30px;
	text-decoration: none;

	background: linear-gradient(135deg, #22d3ee, #4b8cff);
	color: white;

	font-weight: 700;

	transition: 0.3s;
}

.contact-btn:hover {
	transform: scale(1.05);
}

/* SPECIAL BADGE */
.badge-time {
	display: inline-block;
	padding: 8px 15px;
	border-radius: 20px;

	background: #e6f7ff;
	color: #0f4566;

	font-weight: 700;
}

/* HIGHLIGHT CARD */
.highlight {
	border: 2px solid #22d3ee;
	box-shadow: 0 20px 60px rgba(34, 211, 238, 0.2);
}

/* =========================
   RESPONSIVE IMPROVEMENTS
========================= */

@media (max-width: 768px) {
	.contact-premium {
		padding: 80px 5%;
	}

	.contact-card {
		padding: 28px 20px;
	}

	.contact-card i {
		font-size: 38px;
	}

	.hero-content2 {
		margin-top: 30px;
	}
}

@media (max-width: 480px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.sub-title {
		font-size: 15px;
	}

	.contact-card h3 {
		font-size: 20px;
	}
}

/* =========================
   REVEAL ANIMATION FIX
========================= */

.reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: 0.8s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* =========================
   WHY CHOOSE US PREMIUM
========================= */

.why-premium {
	padding: 120px 7%;
	background: linear-gradient(135deg, #f4fbff, #eef8ff);
	text-align: center;
}

/* subtitle */
.sub-title {
	color: #6b7c93;
	margin-bottom: 50px;
	font-size: 18px;
}

/* container */
.why-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 25px;
}

/* CARD */
.why-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(16px);

	padding: 35px 25px;
	border-radius: 30px;

	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);

	transition: 0.4s ease;
	position: relative;
	overflow: hidden;
}

/* glow layer */
.why-card::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 0%;
	top: 0;
	left: 0;

	background: linear-gradient(135deg, #22d3ee, #4b8cff);
	transition: 0.4s;
	z-index: 0;
}

.why-card:hover::before {
	height: 100%;
}

.why-card * {
	position: relative;
	z-index: 2;
}

.why-card:hover {
	transform: translateY(-12px) scale(1.02);
}

/* ICON */
.icon-box {
	width: 70px;
	height: 70px;

	margin: 0 auto 18px;

	border-radius: 20px;

	background: linear-gradient(135deg, #22d3ee, #4b8cff);

	display: flex;
	align-items: center;
	justify-content: center;

	color: white;
	font-size: 26px;

	box-shadow: 0 15px 30px rgba(75, 140, 255, 0.25);

	transition: 0.4s;
}

/* text */
.why-card h3 {
	font-size: 22px;
	color: #0f4566;
	margin-bottom: 10px;
	transition: 0.3s;
}

.why-card p {
	color: #6b7c93;
	line-height: 1.9;
	transition: 0.3s;
}

/* hover effect text */
.why-card:hover h3,
.why-card:hover p {
	color: #fff;
}

.why-card:hover .icon-box {
	transform: rotate(-10deg) scale(1.1);
}

/* SPECIAL CARD */
.highlight {
	border: 2px solid #22d3ee;
	box-shadow: 0 25px 70px rgba(34, 211, 238, 0.25);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
	.why-premium {
		padding: 80px 5%;
	}

	.why-card {
		padding: 28px 20px;
	}

	.icon-box {
		width: 60px;
		height: 60px;
		font-size: 22px;
	}
}

@media (max-width: 480px) {
	.why-container {
		grid-template-columns: 1fr;
	}

	.why-card h3 {
		font-size: 20px;
	}
}
