:root {
	--bg-main: #06080f;
	--bg-card: rgba(15, 22, 38, 0.85);
	--bg-card-hover: rgba(24, 34, 60, 0.95);
	--bg-glass: rgba(13, 19, 33, 0.7);
	--bg-secondary: #0d1322;
	--border-color: rgba(99, 130, 255, 0.16);
	--border-bright: rgba(99, 130, 255, 0.35);
	--primary: #3b82f6;
	--primary-glow: rgba(59, 130, 246, 0.4);
	--secondary: #8b5cf6;
	--secondary-glow: rgba(139, 92, 246, 0.35);
	--accent-cyan: #06b6d4;
	--whatsapp: #25d366;
	--whatsapp-glow: rgba(37, 211, 102, 0.4);
	--text-main: #f8fafc;
	--text-muted: #94a3b8;
	--text-dim: #64748b;
	--font-main: 'Cairo', 'Tajawal', system-ui, -apple-system, sans-serif;
	--font-display: 'Cairo', 'Tajawal', sans-serif;
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-full: 9999px;
	--transition-base: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	--shadow-glow: 0 0 35px -5px rgba(59, 130, 246, 0.25);
	--shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}

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

html {
	direction: rtl;
	text-align: right;
	scroll-behavior: smooth;
	background-color: var(--bg-main);
	color: var(--text-main);
	font-family: var(--font-main);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body {
	background-color: var(--bg-main);
	background-image: 
		radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
		radial-gradient(circle at 15% 45%, rgba(139, 92, 246, 0.07) 0%, transparent 45%),
		radial-gradient(circle at 50% 85%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
	background-attachment: fixed;
	min-height: 100vh;
	overflow-x: hidden;
	color: var(--text-main);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	color: var(--text-main);
	font-weight: 800;
	line-height: 1.3;
}

p {
	color: var(--text-muted);
	line-height: 1.75;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-base);
}

/* Layout Utilities */
.container {
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

/* Header & Navigation */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	background: rgba(6, 8, 15, 0.85);
	border-bottom: 1px solid var(--border-color);
	transition: var(--transition-base);
}

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

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--text-main);
	text-shadow: 0 0 20px var(--primary-glow);
}

.brand-icon {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	box-shadow: 0 0 15px var(--primary-glow);
	font-size: 1.2rem;
}

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

.nav-item {
	position: relative;
}

.nav-link {
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--text-muted);
	padding: 0.5rem 0.75rem;
	border-radius: var(--radius-sm);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	cursor: pointer;
}

.nav-link:hover, .nav-link.active {
	color: #ffffff;
	background: rgba(59, 130, 246, 0.12);
}

.nav-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 270px;
	background: #0d1322;
	border: 1px solid var(--border-bright);
	border-radius: var(--radius-md);
	padding: 0.6rem;
	box-shadow: var(--shadow-card), 0 0 25px rgba(59, 130, 246, 0.15);
	display: none;
	z-index: 110;
}

.nav-item:hover .nav-dropdown {
	display: block;
	animation: fadeIn 0.2s ease forwards;
}

.dropdown-item {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.6rem 0.85rem;
	border-radius: var(--radius-sm);
	color: var(--text-muted);
	font-size: 0.9rem;
	font-weight: 600;
	transition: var(--transition-base);
}

.dropdown-item:hover, .dropdown-item.active {
	background: rgba(59, 130, 246, 0.15);
	color: #ffffff;
	transform: translateX(-4px);
}

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

.mobile-toggle-btn {
	display: none;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-color);
	color: var(--text-main);
	width: 42px;
	height: 42px;
	border-radius: var(--radius-sm);
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.25rem;
}

/* Mobile Drawer */
.mobile-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 82%;
	max-width: 340px;
	background: #090e1a;
	border-left: 1px solid var(--border-bright);
	z-index: 200;
	padding: 1.5rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
	overflow-y: auto;
}

.mobile-drawer.open {
	transform: translateX(0);
}

.drawer-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
	z-index: 190;
	display: none;
}

.drawer-backdrop.open {
	display: block;
}

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

.drawer-close {
	background: rgba(255, 255, 255, 0.08);
	border: none;
	color: var(--text-main);
	width: 36px;
	height: 36px;
	border-radius: var(--radius-sm);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}

.drawer-links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.drawer-link {
	padding: 0.75rem 1rem;
	border-radius: var(--radius-sm);
	color: var(--text-muted);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.drawer-link:hover, .drawer-link.active {
	background: rgba(59, 130, 246, 0.15);
	color: #fff;
}

.drawer-submenu {
	margin-right: 1.5rem;
	padding-right: 0.75rem;
	border-right: 2px solid rgba(59, 130, 246, 0.2);
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.drawer-sublink {
	padding: 0.5rem 0.75rem;
	color: var(--text-muted);
	font-size: 0.9rem;
	border-radius: var(--radius-sm);
	display: block;
}

.drawer-sublink:hover, .drawer-sublink.active {
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.4rem;
	border-radius: var(--radius-md);
	font-family: var(--font-main);
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	border: 1px solid transparent;
	transition: var(--transition-base);
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}

.btn-primary {
	background: linear-gradient(135deg, #2563eb, #7c3aed);
	color: #ffffff;
	box-shadow: 0 4px 18px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
	background: linear-gradient(135deg, #1d4ed8, #6d28d9);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(59, 130, 246, 0.5);
	color: #ffffff;
}

.btn-whatsapp {
	background: linear-gradient(135deg, #22c55e, #16a34a);
	color: #ffffff;
	box-shadow: 0 4px 18px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
	background: linear-gradient(135deg, #16a34a, #15803d);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(34, 197, 94, 0.6);
	color: #ffffff;
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.06);
	color: #f1f5f9;
	border-color: var(--border-color);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--border-bright);
	color: #ffffff;
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	color: var(--primary);
	border-color: var(--primary);
}

.btn-outline:hover {
	background: rgba(59, 130, 246, 0.15);
	color: #ffffff;
}

.btn-lg {
	padding: 0.95rem 1.85rem;
	font-size: 1.05rem;
	border-radius: var(--radius-lg);
}

.btn-sm {
	padding: 0.45rem 0.9rem;
	font-size: 0.85rem;
	border-radius: var(--radius-sm);
}

/* Badges & Tags */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.3rem 0.75rem;
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 700;
	background: rgba(59, 130, 246, 0.15);
	color: #60a5fa;
	border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-purple {
	background: rgba(139, 92, 246, 0.15);
	color: #a78bfa;
	border-color: rgba(139, 92, 246, 0.3);
}

.badge-green {
	background: rgba(34, 197, 94, 0.15);
	color: #4ade80;
	border-color: rgba(34, 197, 94, 0.3);
}

.badge-amber {
	background: rgba(245, 158, 11, 0.15);
	color: #fbbf24;
	border-color: rgba(245, 158, 11, 0.3);
}

/* Cards & Containers */
.card-glass {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	box-shadow: var(--shadow-card);
	backdrop-filter: blur(12px);
	transition: var(--transition-base);
	position: relative;
	overflow: hidden;
}

.card-glass:hover {
	border-color: var(--border-bright);
	box-shadow: var(--shadow-card), var(--shadow-glow);
	transform: translateY(-4px);
}

/* Hero Section */
.hero-section {
	padding: 4.5rem 0 3.5rem;
	position: relative;
	text-align: center;
}

.hero-badge {
	margin-bottom: 1.25rem;
}

.hero-title {
	font-size: clamp(2rem, 5.5vw, 3.75rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	margin-bottom: 1.25rem;
	background: linear-gradient(135deg, #ffffff 30%, #93c5fd 80%, #c4b5fd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.25;
}

.hero-subtitle {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: #cbd5e1;
	max-width: 740px;
	margin: 0 auto 2.25rem;
	line-height: 1.8;
}

.hero-cta-group {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

/* Service Grid */
.section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 3rem;
}

.section-title {
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	margin-bottom: 0.75rem;
}

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

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.75rem;
	margin-bottom: 4rem;
}

.service-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 2rem 1.75rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: var(--transition-base);
	height: 100%;
}

.service-card:hover {
	border-color: var(--primary);
	background: var(--bg-card-hover);
	transform: translateY(-6px);
	box-shadow: 0 15px 35px -10px rgba(59, 130, 246, 0.25);
}

.service-card-icon {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
	border: 1px solid rgba(59, 130, 246, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	margin-bottom: 1.25rem;
}

.service-card-title {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	color: #ffffff;
}

.service-card-desc {
	font-size: 0.95rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
	flex-grow: 1;
	line-height: 1.7;
}

/* Why choose us */
.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.25rem;
}

.why-card {
	background: rgba(15, 22, 38, 0.6);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	transition: var(--transition-base);
}

.why-card:hover {
	border-color: var(--border-bright);
	background: rgba(24, 34, 60, 0.8);
	transform: translateY(-3px);
}

.why-card h4 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	color: #f1f5f9;
}

.why-card p {
	font-size: 0.9rem;
	color: var(--text-muted);
}

/* Galleries (Image & Video) */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.gallery-item {
	background: #0f1526;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	overflow: hidden;
	position: relative;
	transition: var(--transition-base);
}

.gallery-item:hover {
	border-color: var(--primary);
	transform: scale(1.02);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.gallery-preview-box {
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, #131b31, #1e2947);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.gallery-preview-box::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 21, 38, 0.95) 0%, transparent 60%);
	pointer-events: none;
}

.gallery-item-icon {
	font-size: 2.25rem;
	margin-bottom: 0.5rem;
	z-index: 2;
}

.gallery-item-tag {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 3;
}

.gallery-item-info {
	padding: 1rem 1.25rem;
	background: #0d1222;
	position: relative;
	z-index: 2;
}

.gallery-item-title {
	font-size: 1rem;
	font-weight: 700;
	color: #f1f5f9;
	margin-bottom: 0.25rem;
}

.gallery-item-sub {
	font-size: 0.82rem;
	color: var(--text-dim);
}

.video-player-mock {
	position: relative;
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, #090e1c, #16203a);
	border-radius: var(--radius-md);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-color);
}

.video-play-btn {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	box-shadow: 0 0 25px var(--primary-glow);
	transition: var(--transition-base);
	cursor: pointer;
}

.video-play-btn:hover {
	transform: scale(1.1);
	background: #60a5fa;
}

/* Before & After Interactive Component */
.before-after-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	background: #0c1120;
	border: 1px solid var(--border-bright);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	margin: 2rem 0;
}

.before-card, .after-card {
	background: #11182c;
	border-radius: var(--radius-md);
	padding: 1.5rem;
	border: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.before-card {
	border-color: rgba(239, 68, 68, 0.3);
}

.after-card {
	border-color: rgba(34, 197, 94, 0.4);
	box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}

.compare-visual {
	aspect-ratio: 4/3;
	border-radius: var(--radius-sm);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1rem;
}

.compare-visual.raw {
	background: #181d2c;
	border: 1px dashed rgba(255, 255, 255, 0.15);
}

.compare-visual.enhanced {
	background: linear-gradient(135deg, #10243e, #1a1740);
	border: 1px solid var(--primary);
	box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.2);
}

/* FAQ Accordion */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1.5rem;
}

.faq-item {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: var(--transition-base);
}

.faq-item:hover {
	border-color: var(--border-bright);
}

.faq-question {
	padding: 1.25rem 1.5rem;
	font-weight: 700;
	font-size: 1.05rem;
	color: #f1f5f9;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	user-select: none;
}

.faq-toggle-icon {
	color: var(--primary);
	font-size: 1.25rem;
	transition: transform 0.2s ease;
}

.faq-item.open .faq-toggle-icon {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 1.5rem 1.25rem;
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.75;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 1rem;
}

/* Feature Checklist & Lists */
.feature-list {
	list-style: none;
	display: grid;
	gap: 0.85rem;
}

.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.95rem;
	color: #cbd5e1;
}

.check-icon {
	color: #22c55e;
	font-weight: bold;
	font-size: 1.1rem;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Contact Cards & Form */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.contact-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	transition: var(--transition-base);
}

.contact-card:hover {
	border-color: var(--primary);
	transform: translateY(-4px);
}

.contact-card-icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-md);
	background: rgba(59, 130, 246, 0.15);
	border: 1px solid rgba(59, 130, 246, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.contact-card-icon.whatsapp {
	background: rgba(34, 197, 94, 0.15);
	border-color: rgba(34, 197, 94, 0.3);
	color: #22c55e;
}

.contact-card-icon.email {
	background: rgba(245, 158, 11, 0.15);
	border-color: rgba(245, 158, 11, 0.3);
	color: #fbbf24;
}

/* Custom Interactive Contact Form */
.form-group {
	margin-bottom: 1.25rem;
}

.form-label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.45rem;
	color: #e2e8f0;
}

.form-input, .form-textarea, .form-select {
	width: 100%;
	padding: 0.8rem 1rem;
	background: #090e1c;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	color: #fff;
	font-family: var(--font-main);
	font-size: 0.95rem;
	transition: var(--transition-base);
	outline: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.form-textarea {
	resize: vertical;
	min-height: 110px;
}

/* Breadcrumbs */
.breadcrumbs {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.88rem;
	color: var(--text-dim);
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.breadcrumbs a {
	color: var(--text-muted);
}

.breadcrumbs a:hover {
	color: var(--primary);
}

.breadcrumbs-separator {
	color: var(--text-dim);
}

/* Footer */
.site-footer {
	background: #04060a;
	border-top: 1px solid var(--border-color);
	padding: 4rem 0 2rem;
	margin-top: 5rem;
}

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

.footer-brand p {
	margin-top: 1rem;
	font-size: 0.92rem;
	color: var(--text-muted);
	max-width: 320px;
}

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

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

.footer-link {
	font-size: 0.9rem;
	color: var(--text-muted);
	display: inline-block;
}

.footer-link:hover {
	color: #ffffff;
	transform: translateX(-4px);
}

.social-links {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
}

.social-btn {
	width: 42px;
	height: 42px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: 1.2rem;
	transition: var(--transition-base);
}

.social-btn:hover {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
	transform: translateY(-3px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 1.75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.88rem;
	color: var(--text-dim);
}

/* Floating WhatsApp Fast Button */
.floating-whatsapp {
	position: fixed;
	bottom: 1.75rem;
	left: 1.75rem;
	z-index: 150;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.75rem 1.2rem;
	background: linear-gradient(135deg, #22c55e, #16a34a);
	color: #ffffff;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 0.95rem;
	box-shadow: 0 6px 25px rgba(34, 197, 94, 0.45);
	transition: var(--transition-base);
	animation: pulseWhatsapp 2.5s infinite;
}

.floating-whatsapp:hover {
	transform: scale(1.06);
	background: linear-gradient(135deg, #16a34a, #15803d);
	color: #fff;
}

@keyframes pulseWhatsapp {
	0% {
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
	}
	70% {
		box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
	}
}

/* Notice Banner */
.notice-box {
	background: rgba(59, 130, 246, 0.08);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: var(--radius-md);
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin: 2rem 0;
}

.notice-icon {
	color: #60a5fa;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.notice-content h4 {
	font-size: 1rem;
	margin-bottom: 0.25rem;
	color: #93c5fd;
}

.notice-content p {
	font-size: 0.9rem;
	color: #cbd5e1;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.nav-links {
		display: none;
	}
	.mobile-toggle-btn {
		display: inline-flex;
	}
}

@media (max-width: 768px) {
	.hero-section {
		padding: 3rem 0 2rem;
	}
	.hero-title {
		font-size: 2.15rem;
	}
	.before-after-container {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.floating-whatsapp span {
		display: none;
	}
	.floating-whatsapp {
		padding: 0.85rem;
		border-radius: 50%;
	}
}

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