/* Premium Clean Theme Styles */

:root {
	/* Variables set by customizer */
	--pc-primary: #00a8ff;
	--pc-accent: #8bc34a;
	--pc-dark: #1b2a47;
	--pc-text: #555555;
	--pc-bg: #f8f9fa;
	--pc-white: #ffffff;
	--pc-transition: all 0.3s ease-in-out;
	--pc-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

body {
	font-family: 'Cairo', sans-serif;
	color: var(--pc-text);
	line-height: 1.7;
	background-color: var(--pc-white);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--pc-dark);
	font-weight: 800;
	margin-bottom: 15px;
}

a { color: var(--pc-primary); text-decoration: none; transition: var(--pc-transition); }
a:hover { color: var(--pc-accent); }

.pc-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.pc-section { padding: 100px 0; }
.pc-bg-light { background-color: var(--pc-bg); }

/* Buttons */
.pc-btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	transition: var(--pc-transition);
	border: 2px solid transparent;
}
.pc-btn-primary { background: var(--pc-primary); color: var(--pc-white); }
.pc-btn-primary:hover { background: var(--pc-dark); color: var(--pc-white); transform: translateY(-3px); box-shadow: var(--pc-shadow); }
.pc-btn-accent { background: var(--pc-accent); color: var(--pc-white); }
.pc-btn-accent:hover { background: var(--pc-primary); color: var(--pc-white); transform: translateY(-3px); box-shadow: var(--pc-shadow); }
.pc-btn-outline { background: transparent; border-color: var(--pc-white); color: var(--pc-white); }
.pc-btn-outline:hover { background: var(--pc-white); color: var(--pc-primary); }

/* Topbar */
.pc-topbar {
	background-color: var(--pc-dark);
	color: #ccc;
	font-size: 14px;
	padding: 10px 0;
}
.pc-topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.pc-topbar-info span { margin-left: 20px; }
.pc-topbar-info i { color: var(--pc-accent); margin-left: 5px; }
.pc-topbar-social a { color: #ccc; margin-right: 15px; }
.pc-topbar-social a:hover { color: var(--pc-accent); }

/* Header */
.pc-header {
	background: var(--pc-white);
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	position: sticky;
	top: 0;
	z-index: 999;
	padding: 15px 0;
	transition: var(--pc-transition);
}
.pc-header-inner { display: flex; justify-content: space-between; align-items: center; }
.pc-logo img { max-height: 60px; width: auto; }
.pc-logo h2 a { color: var(--pc-dark); font-size: 28px; }

/* Navigation */
.pc-nav { flex: 1; margin: 0 20px; }
.pc-nav ul { display: flex; flex-wrap: wrap; justify-content: center; list-style: none; gap: 10px 20px; margin: 0; padding: 0; }
.pc-nav a {
	color: var(--pc-dark);
	font-weight: 700;
	font-size: 16px;
	position: relative;
	padding: 5px 0;
	white-space: nowrap;
	display: block;
}
.pc-nav ul li { position: relative; }

/* Dropdown Sub-menus */
.pc-nav ul ul.sub-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background: var(--pc-white);
	min-width: 220px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	border-radius: 8px;
	display: block; /* override flex */
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: var(--pc-transition);
	z-index: 999;
	padding: 10px 0;
	margin: 0;
}
.pc-nav ul li:hover > ul.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.pc-nav ul ul.sub-menu li {
	width: 100%;
}
.pc-nav ul ul.sub-menu a {
	padding: 12px 20px;
	color: var(--pc-text);
	border-bottom: 1px solid #f8f9fa;
	font-weight: 600;
}
.pc-nav ul ul.sub-menu li:last-child a {
	border-bottom: none;
}
.pc-nav ul ul.sub-menu a::after {
	display: none;
}
.pc-nav ul ul.sub-menu a:hover {
	color: var(--pc-primary);
	background: var(--pc-bg);
	padding-right: 25px;
}

.pc-nav a::after {
	content: '';
	position: absolute;
	bottom: 0; right: 0;
	width: 0; height: 3px;
	background: var(--pc-accent);
	transition: var(--pc-transition);
}
.pc-nav a:hover::after { width: 100%; }
.pc-menu-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--pc-dark); cursor: pointer; }

/* Header CTA */
.pc-header-cta { display: flex; align-items: center; gap: 20px; }
.pc-call-icon {
	width: 45px; height: 45px;
	background: rgba(0, 168, 255, 0.1);
	color: var(--pc-primary);
	border-radius: 50%;
	display: flex; justify-content: center; align-items: center;
	font-size: 20px;
}
.pc-call-text { display: flex; flex-direction: column; line-height: 1.2; }
.pc-call-text span { font-size: 13px; color: var(--pc-text); }
.pc-call-text strong { font-size: 18px; color: var(--pc-dark); }

/* Hero Section */
.pc-hero {
	position: relative;
	padding: 180px 0 150px;
	background-color: var(--pc-primary);
	background-size: cover;
	background-position: center;
	color: var(--pc-white);
}
.pc-hero-overlay {
	position: absolute; top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(135deg, rgba(27, 42, 71, 0.9) 0%, rgba(0, 168, 255, 0.7) 100%);
}
.pc-hero-content { position: relative; z-index: 2; display: flex; }
.pc-hero-text { max-width: 600px; }
.pc-badge {
	display: inline-block;
	background: rgba(255,255,255,0.2);
	padding: 5px 15px;
	border-radius: 30px;
	font-size: 14px;
	margin-bottom: 20px;
}
.pc-badge i { color: var(--pc-accent); margin-left: 5px; }
.pc-hero h1 { font-size: 54px; color: var(--pc-white); line-height: 1.3; margin-bottom: 20px; }
.pc-hero p { font-size: 18px; margin-bottom: 40px; opacity: 0.9; }
.pc-hero-btns { display: flex; gap: 20px; }

/* Features */
.pc-features { margin-top: -80px; position: relative; z-index: 10; padding: 0 0 100px; }
.pc-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.pc-feature-card {
	background: var(--pc-white);
	padding: 40px 30px;
	border-radius: 10px;
	box-shadow: var(--pc-shadow);
	text-align: center;
	transition: var(--pc-transition);
	border-bottom: 4px solid var(--pc-accent);
}
.pc-feature-card:hover { transform: translateY(-10px); border-bottom-color: var(--pc-primary); }
.pc-icon-box {
	width: 80px; height: 80px;
	background: rgba(0, 168, 255, 0.1);
	color: var(--pc-primary);
	border-radius: 50%;
	display: flex; justify-content: center; align-items: center;
	font-size: 35px;
	margin: 0 auto 20px;
	transition: var(--pc-transition);
}
.pc-feature-card:hover .pc-icon-box { background: var(--pc-primary); color: var(--pc-white); }

/* Services */
.pc-section-header { margin-bottom: 60px; text-align: center; }
.pc-subtitle { color: var(--pc-primary); font-weight: 700; display: block; margin-bottom: 10px; }
.pc-section-header h2 { font-size: 36px; }
.pc-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.pc-service-card {
	background: var(--pc-white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--pc-shadow);
	transition: var(--pc-transition);
}
.pc-service-card:hover { transform: translateY(-10px); }
.pc-service-img {
	height: 200px;
	background: var(--pc-dark);
	position: relative;
}
.pc-service-icon {
	position: absolute;
	bottom: -30px; right: 30px;
	width: 60px; height: 60px;
	background: var(--pc-accent);
	color: var(--pc-white);
	border-radius: 50%;
	display: flex; justify-content: center; align-items: center;
	font-size: 24px;
	border: 4px solid var(--pc-white);
}
.pc-service-content { padding: 40px 30px 30px; }
.pc-read-more { display: inline-flex; align-items: center; font-weight: 700; margin-top: 15px; color: var(--pc-primary); }
.pc-read-more i { margin-right: 8px; transition: var(--pc-transition); }
.pc-read-more:hover i { transform: translateX(-5px); }

/* CTA */
.pc-cta-box {
	background: var(--pc-primary);
	border-radius: 20px;
	padding: 60px;
	display: flex; justify-content: space-between; align-items: center;
	color: var(--pc-white);
	box-shadow: 0 20px 40px rgba(0, 168, 255, 0.3);
}
.pc-cta-text h2 { color: var(--pc-white); margin-bottom: 10px; }
.pc-cta-form form { display: flex; gap: 15px; }
.pc-cta-form input {
	padding: 15px 20px;
	border: none; border-radius: 50px;
	font-family: inherit; font-size: 15px;
	outline: none;
}

/* Footer */
.pc-footer { background: var(--pc-dark); color: #aaa; padding-top: 80px; }
.pc-footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; padding-bottom: 60px; }
.pc-footer h3 { color: var(--pc-white); font-size: 20px; margin-bottom: 25px; position: relative; padding-bottom: 15px; }
.pc-footer h3::after { content: ''; position: absolute; bottom: 0; right: 0; width: 40px; height: 3px; background: var(--pc-accent); }
.pc-footer ul { list-style: none; }
.pc-footer ul li { margin-bottom: 15px; }
.pc-footer a { color: #aaa; }
.pc-footer a:hover { color: var(--pc-accent); padding-right: 10px; }
.pc-newsletter { display: flex; margin-top: 20px; }
.pc-newsletter input { flex: 1; padding: 15px; border: none; border-radius: 0 5px 5px 0; outline: none; }
.pc-newsletter button { background: var(--pc-primary); color: var(--pc-white); border: none; padding: 0 20px; border-radius: 5px 0 0 5px; cursor: pointer; }
.pc-footer-bottom { background: rgba(0,0,0,0.2); padding: 20px 0; text-align: center; }

/* Animations */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 991px) {
	.pc-topbar, .pc-header-cta { display: none; }
	.pc-menu-toggle { display: block; }
	.pc-menu-wrapper {
		display: none; position: absolute; top: 100%; left: 0; right: 0;
		background: var(--pc-white); padding: 20px; box-shadow: var(--pc-shadow);
	}
	.pc-menu-wrapper.active { display: block; }
	.pc-nav ul { flex-direction: column; gap: 15px; }
	.pc-hero h1 { font-size: 36px; }
	.pc-cta-box { flex-direction: column; text-align: center; gap: 30px; padding: 40px 20px; }
	.pc-cta-form form { flex-direction: column; }
}
