/**
 * Rowad Alsadad Theme Custom Styles
 * Brand Colors: #1c5fd3 (Primary), #0097ff (Secondary)
 * Font: Tajawal
 */

/* ============================================
   Brand Colors & Variables
   ============================================ */
:root {
	--primary-color: #1c5fd3;
	--secondary-color: #0097ff;
	--text-dark: #333;
	--text-light: #666;
	--bg-light: #f8f9fa;
	--white: #ffffff;
	--gray-footer: #f3f4f5;
	--gray-footer-light: #f8f9fa;
	--gray-light: #e9ecef;
	--shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Typography - Tajawal
   ============================================ */
html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	font-weight: 400;
	color: var(--text-dark);
	line-height: 1.8;
	letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.4;
	letter-spacing: -0.02em;
}

.display-4 {
	font-weight: 800;
	letter-spacing: -0.03em;
}

.lead {
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.6;
}

.text-primary {
	color: var(--primary-color) !important;
}

.text-secondary {
	color: var(--secondary-color) !important;
}

/* ============================================
   RTL Support
   ============================================ */
[dir="rtl"] {
	direction: rtl;
	text-align: right;
}

[dir="rtl"] .navbar-nav {
	margin-right: 0;
	margin-left: auto;
}

[dir="rtl"] .me-3 {
	margin-right: 1rem !important;
	margin-left: 0 !important;
}

[dir="rtl"] .ms-auto {
	margin-right: auto !important;
	margin-left: 0 !important;
}

[dir="rtl"] .mx-auto {
	margin-right: auto !important;
	margin-left: auto !important;
}

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
	padding: 1rem 0;
}

.navbar-brand img {
	max-height: 60px;
	width: auto;
}

.navbar-content-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	flex-wrap: wrap;
	gap: 1rem;
}

.navbar-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
}

.navbar-nav .nav-link {
	font-weight: 500;
	font-size: 1rem;
	color: var(--text-dark) !important;
	padding: 0.5rem 1.25rem !important;
	transition: all 0.3s ease;
	position: relative;
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 50%;
	transform: translateX(50%);
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
	width: 80%;
}

.navbar-nav .nav-link:hover {
	color: var(--primary-color) !important;
}

/* Dropdown Menu Styling */
.navbar-nav .dropdown-menu {
	background: var(--white);
	border: none;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	padding: 0.75rem 0;
	margin-top: 0.5rem;
	min-width: 220px;
	animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.navbar-nav .dropdown-item {
	padding: 0.75rem 1.5rem;
	color: var(--text-dark);
	font-size: 0.95rem;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.navbar-nav .dropdown-item::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 3px;
	height: 0;
	background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
	transition: height 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
	background: linear-gradient(90deg, rgba(28, 95, 211, 0.1), rgba(0, 151, 255, 0.05));
	color: var(--primary-color);
	padding-right: 1.75rem;
}

.navbar-nav .dropdown-item:hover::before {
	height: 100%;
}

.navbar-nav .dropdown-toggle::after {
	display: none;
}

.navbar-nav .dropdown-toggle .bi-chevron-down {
	transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"] .bi-chevron-down {
	transform: rotate(180deg);
}


/* ============================================
   Header Social Icons - Properly Scoped
   ============================================ */
.navbar-social-cta {
	margin-right: auto;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-header .social-links-header {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	flex-wrap: nowrap;
}

.site-header .social-link-header {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: var(--text-dark) !important;
	font-size: 1.1rem !important;
	text-decoration: none !important;
	background: var(--gray-light) !important;
	transition: all 0.3s ease;
	position: relative;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
	border: none;
	box-shadow: none;
}

.site-header .social-link-header i {
	display: block !important;
	line-height: 1 !important;
	margin: 0 !important;
	padding: 0 !important;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.1rem !important;
}

.site-header .social-link-header:hover {
	background: var(--primary-color) !important;
	color: var(--white) !important;
	transform: translateY(-2px);
	text-decoration: none !important;
}

.site-header .social-link-header:hover i {
	color: var(--white) !important;
}

.btn-cta-header {
	padding: 0.6rem 1.5rem;
	font-weight: 600;
	font-size: 0.95rem;
	white-space: nowrap;
}

/* RTL Support for Dropdown */
[dir="rtl"] .navbar-nav .dropdown-menu {
	right: 0;
	left: auto;
	text-align: right;
}

[dir="rtl"] .navbar-nav .dropdown-item::before {
	right: auto;
	left: 0;
}

[dir="rtl"] .navbar-nav .dropdown-item:hover {
	padding-right: 1.5rem;
	padding-left: 1.75rem;
}


/* ============================================
   Buttons
   ============================================ */
.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	padding: 0.75rem 2rem;
	font-weight: 600;
	transition: all 0.3s ease;
	border-radius: 8px;
	font-family: 'Tajawal', sans-serif !important;
}

.btn-primary:hover {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-lg {
	padding: 1rem 2.5rem;
	font-size: 1.1rem;
}

/* ============================================
   Hero Carousel - Full Width & Responsive
   Aspect Ratio: 5494x2000 (2.747:1)
   ============================================ */
.hero-section {
	margin-top: 0;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.hero-image-wrapper {
	width: 100%;
	position: relative;
	overflow: hidden;
	display: block;
	aspect-ratio: 5494 / 2000;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}

.carousel-control-prev,
.carousel-control-next {
	width: 5%;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
	opacity: 1;
}

.carousel-indicators {
	margin-bottom: 1.5rem;
}

.carousel-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--primary-color);
	opacity: 0.5;
	transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
	opacity: 1;
	width: 30px;
	border-radius: 6px;
}

/* ============================================
   Sections
   ============================================ */
section {
	padding: 5rem 0;
}

.bg-light {
	background-color: var(--bg-light) !important;
}

/* ============================================
   Front Page Images (No Background)
   ============================================ */
#about-us img,
#features img {
	border-radius: 0;
	box-shadow: none;
	background: transparent;
	width: 100%;
	height: auto;
}

/* ============================================
   Advanced Features Section
   ============================================ */
.features-advanced {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 2rem;
}

.feature-item-advanced {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	padding: 1.5rem;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-right: 4px solid transparent;
}

.feature-item-advanced:hover {
	transform: translateX(-5px);
	border-right-color: var(--primary-color);
	box-shadow: 0 5px 25px rgba(28, 95, 211, 0.15);
}

.feature-icon-wrapper {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--white);
	font-size: 1.5rem;
}

.feature-content {
	flex: 1;
}

.feature-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
	line-height: 1.4;
}

.feature-desc {
	font-size: 0.95rem;
	color: var(--text-light);
	margin: 0;
	line-height: 1.6;
}

/* ============================================
   Services Grid (2x2 Mobile, 4 Desktop)
   ============================================ */
#services {
	padding: 5rem 0;
}

.service-card {
	background: var(--white);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s ease;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 40px rgba(28, 95, 211, 0.2);
	border-color: var(--primary-color);
}

.service-icon-wrapper {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 2rem;
	transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
	transform: scale(1.1) rotate(5deg);
}

.service-title {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-dark);
	line-height: 1.4;
}

.service-description {
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.7;
	margin: 0;
	flex-grow: 1;
}


/* ============================================
   Cards
   ============================================ */
.card {
	border-radius: 10px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.card-img-top {
	border-radius: 10px 10px 0 0;
}

/* ============================================
   Contact Form
   ============================================ */
.form-control,
.form-select {
	border-radius: 8px;
	padding: 0.75rem 1rem;
	border: 1px solid #ddd;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	font-family: 'Tajawal', sans-serif !important;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(28, 95, 211, 0.25);
}

.form-label {
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
	font-family: 'Tajawal', sans-serif !important;
}

.text-danger {
	color: #dc3545 !important;
}

/* ============================================
   Floating Action Buttons
   ============================================ */
.floating-buttons {
	position: fixed;
	bottom: 30px;
	left: 30px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.floating-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 24px;
	text-decoration: none;
	box-shadow: var(--shadow-lg);
	transition: all 0.3s ease;
	animation: pulse 2s infinite;
	position: relative;
	padding: 0;
	margin: 0;
	line-height: 1;
}

.floating-btn i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	display: block;
}

.floating-btn:hover {
	transform: scale(1.1);
	color: var(--white);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.floating-btn-whatsapp {
	background-color: #25d366;
}

.floating-btn-call {
	background-color: var(--primary-color);
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(28, 95, 211, 0.7);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(28, 95, 211, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(28, 95, 211, 0);
	}
}

/* RTL Support for Floating Buttons */
[dir="rtl"] .floating-buttons {
	left: auto;
	right: 30px;
}

/* ============================================
   Footer - Professional Gray Style with Perfect Grids
   ============================================ */
.site-footer {
	background: #f3f4f5 !important;
	margin-top: 4rem;
	color: var(--text-dark);
	padding: 3.5rem 0 2rem !important;
	position: relative;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.site-footer .container {
	max-width: 1200px;
}

.footer-widget {
	margin-bottom: 1.5rem;
}

/* Footer Logo Styling */
.footer-logo {
	margin-bottom: 1.5rem;
}

.footer-logo a {
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-logo a:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

.footer-logo img,
.footer-logo .custom-logo-link img {
	max-height: 70px;
	width: auto;
	height: auto;
	transition: all 0.3s ease;
	filter: brightness(1.1) contrast(1.1);
}

.footer-logo .custom-logo-link {
	display: inline-block;
}

.footer-logo a:hover img {
	transform: scale(1.05);
	filter: brightness(1.2) contrast(1.2);
}

.footer-title {
	color: var(--text-dark) !important;
	font-weight: 700;
	margin-bottom: 1.25rem;
	font-family: 'Tajawal', sans-serif !important;
	font-size: 1.15rem;
	position: relative;
	padding-bottom: 0.75rem;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 40px;
	height: 2px;
	background: var(--secondary-color);
	border-radius: 2px;
}

.footer-text {
	color: var(--text-light) !important;
	line-height: 1.7;
	font-family: 'Tajawal', sans-serif !important;
	font-size: 0.9rem;
	margin: 0;
}

.footer-link {
	color: var(--text-light) !important;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	font-family: 'Tajawal', sans-serif !important;
	font-size: 0.9rem;
	display: inline-block;
	padding: 0.35rem 0;
}

.footer-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 1.5px;
	background: var(--secondary-color);
	transition: width 0.3s ease;
}

.footer-link:hover {
	color: var(--primary-color) !important;
	text-decoration: none;
}

.footer-link:hover::after {
	width: 100%;
}

/* ============================================
   Policy Pages Styling
   ============================================ */
.site-main .card {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.site-main .card-body {
	padding: 3rem !important;
}

.page-header {
	padding-bottom: 2rem;
	border-bottom: 3px solid var(--primary-color);
	margin-bottom: 3rem;
	position: relative;
}

.page-header::after {
	content: '';
	position: absolute;
	bottom: -3px;
	right: 0;
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.page-title {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	line-height: 1.2;
}

.page-header .text-muted {
	color: var(--text-light) !important;
	font-size: 0.95rem;
	margin: 0;
}

.entry-content section {
	padding: 2rem 0;
	border-bottom: 1px solid #e9ecef;
	position: relative;
}

.entry-content section:last-child {
	border-bottom: none;
}

.entry-content section h2 {
	color: var(--primary-color);
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
}

.entry-content section h2::before {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 30px;
	background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
	border-radius: 2px;
}

.entry-content section h3 {
	color: var(--text-dark);
	font-size: 1.3rem;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

.entry-content section p {
	color: var(--text-dark);
	line-height: 1.9;
	font-size: 1rem;
	margin-bottom: 1.25rem;
	text-align: justify;
}

.entry-content section ul,
.entry-content section ol {
	margin: 1.5rem 0;
	padding-right: 2rem;
}

.entry-content section ul li,
.entry-content section ol li {
	color: var(--text-dark);
	line-height: 2;
	font-size: 1rem;
	margin-bottom: 0.75rem;
	padding-right: 1.5rem;
	position: relative;
}

.entry-content section ul li::before {
	content: '✓';
	position: absolute;
	right: 0;
	top: 0;
	width: 24px;
	height: 24px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: bold;
}

.entry-content section ol {
	counter-reset: item;
}

.entry-content section ol li {
	counter-increment: item;
}

.entry-content section ol li::before {
	content: counter(item) '.';
	position: absolute;
	right: 0;
	top: 0;
	color: var(--primary-color);
	font-weight: 700;
	font-size: 1.1rem;
}

/* Policy Page Links Styling */
.policy-link {
	color: var(--primary-color) !important;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	font-weight: 600;
	padding: 0.2rem 0;
	display: inline-block;
}

.policy-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 2px;
	background: var(--secondary-color);
	transition: width 0.3s ease;
}

.policy-link:hover {
	color: var(--secondary-color) !important;
	text-decoration: none;
	transform: translateX(-3px);
}

.policy-link:hover::after {
	width: 100%;
}


/* Footer Lists */
.footer-links,
.footer-contact-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

/* ============================================
   Footer Icons - Properly Scoped (No Conflicts)
   ============================================ */
.site-footer .footer-icon-wrapper {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.05);
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0;
	color: var(--primary-color) !important;
	font-size: 0.9rem !important;
	transition: all 0.3s ease;
	position: relative;
}

.site-footer .footer-icon-wrapper i {
	display: block !important;
	line-height: 1 !important;
	margin: 0 !important;
	padding: 0 !important;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0.9rem !important;
	color: var(--primary-color) !important;
}

.site-footer .footer-contact-item:hover .footer-icon-wrapper {
	background: rgba(28, 95, 211, 0.15);
	transform: scale(1.05);
}

.site-footer .footer-contact-item:hover .footer-icon-wrapper i {
	color: var(--primary-color) !important;
}

.footer-divider {
	border-color: rgba(0, 0, 0, 0.1) !important;
	opacity: 1;
	margin: 2.5rem 0 1.5rem !important;
	border-width: 1px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-copyright-wrapper {
	margin-top: 1rem;
}

.footer-copyright {
	color: var(--text-light) !important;
	font-family: 'Tajawal', sans-serif !important;
	font-size: 0.85rem;
	margin: 0 0 0.5rem 0;
	line-height: 1.8;
}

.footer-credit {
	color: var(--text-light) !important;
	font-family: 'Tajawal', sans-serif !important;
	font-size: 0.8rem;
	margin: 0;
	line-height: 1.6;
}

.footer-credit .footer-link {
	font-size: 0.8rem;
	padding: 0;
	color: var(--text-dark) !important;
}

/* Responsive Footer Grid */
@media (min-width: 992px) {
	.site-footer .col-lg-4 {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	
	.site-footer .col-lg-2 {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}


/* Extra small devices - Maintain aspect ratio */
@media (max-width: 400px) {
	.hero-image-wrapper {
		aspect-ratio: 5494 / 2000;
	}
	
	.carousel-control-prev,
	.carousel-control-next {
		width: 15%;
		opacity: 0.4;
	}
	
	.carousel-control-prev-icon,
	.carousel-control-next-icon {
		width: 1.25rem;
		height: 1.25rem;
	}
	
	.carousel-indicators {
		margin-bottom: 0.5rem;
	}
	
	.carousel-indicators [data-bs-target] {
		width: 6px;
		height: 6px;
		margin: 0 2px;
	}
	
	.carousel-indicators [data-bs-target].active {
		width: 20px;
	}
}

/* ============================================
   Utilities
   ============================================ */
.shadow-sm {
	box-shadow: var(--shadow) !important;
}

/* ============================================
   Responsive Design - Consolidated Media Queries
   ============================================ */

/* Tablet and Below (max-width: 991px) */
@media (max-width: 991px) {
	/* Navigation & Dropdown */
	.navbar-content-wrapper {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.navbar-nav {
		width: 100%;
	}
	
	.navbar-nav .nav-item {
		width: 100%;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	}
	
	.navbar-nav .nav-item:last-child {
		border-bottom: none;
	}
	
	.navbar-nav .nav-link {
		padding: 0.875rem 1rem !important;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.navbar-nav .dropdown-toggle {
		width: 100%;
	}
	
	.navbar-nav .dropdown-toggle .bi-chevron-down {
		margin-right: auto;
		margin-left: 0.5rem;
	}
	
	.navbar-nav .dropdown-menu {
		position: static !important;
		float: none;
		width: 100%;
		margin-top: 0.25rem;
		margin-bottom: 0.5rem;
		box-shadow: none;
		border-top: 1px solid #e9ecef;
		border-radius: 8px;
		background: rgba(0, 0, 0, 0.02);
	}
	
	.navbar-nav .dropdown-item {
		padding: 0.75rem 2rem;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	}
	
	.navbar-nav .dropdown-item:last-child {
		border-bottom: none;
	}
	
	.navbar-nav .dropdown-item:hover {
		background: rgba(28, 95, 211, 0.1);
		padding-right: 2.25rem;
	}
	
	/* Social Icons & CTA */
	.navbar-social-cta {
		flex-direction: column !important;
		align-items: flex-start !important;
		width: 100%;
		margin-top: 1rem;
		gap: 1rem !important;
	}
	
	.site-header .social-links-header {
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	
	.site-header .social-link-header {
		width: 44px !important;
		height: 44px !important;
		font-size: 1.2rem !important;
	}
	
	.site-header .social-link-header i {
		font-size: 1.2rem !important;
	}
	
	.btn-cta-header {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
	
	/* Hero Carousel */
	.hero-image-wrapper {
		aspect-ratio: 5494 / 2000;
	}
	
	.carousel-control-prev,
	.carousel-control-next {
		width: 8%;
		opacity: 0.7;
	}
	
	.carousel-indicators {
		margin-bottom: 1.25rem;
	}
	
	.carousel-indicators [data-bs-target] {
		width: 10px;
		height: 10px;
	}
	
	.carousel-indicators [data-bs-target].active {
		width: 28px;
	}
	
	/* Services */
	.service-card {
		padding: 2rem 1.5rem;
	}
	
	.service-icon-wrapper {
		width: 70px;
		height: 70px;
		font-size: 1.75rem;
		margin-bottom: 1.25rem;
	}
	
	.service-title {
		font-size: 1.2rem;
		margin-bottom: 0.75rem;
	}
	
	.service-description {
		font-size: 0.9rem;
	}
	
	/* Footer */
	.footer-widget {
		margin-bottom: 2rem;
	}
	
	.footer-title {
		font-size: 1.1rem;
		margin-bottom: 1rem;
	}
	
	.site-footer {
		padding: 2.5rem 0 1.5rem !important;
	}
}

/* Mobile and Below (max-width: 768px) */
@media (max-width: 768px) {
	/* Hero Carousel */
	.hero-image-wrapper {
		aspect-ratio: 5494 / 2000;
	}
	
	.carousel-control-prev,
	.carousel-control-next {
		width: 10%;
		opacity: 0.6;
	}
	
	.carousel-indicators {
		margin-bottom: 1rem;
	}
	
	/* Footer Grid */
	.site-footer .col-sm-6 {
		margin-bottom: 2rem;
	}
	
	.site-footer .col-sm-12 {
		margin-bottom: 2rem;
	}
	
	/* General Sections */
	section {
		padding: 3rem 0;
	}
	
	.display-4 {
		font-size: 2rem;
	}
	
	/* Floating Buttons */
	.floating-buttons {
		bottom: 20px;
		left: 20px;
	}
	
	[dir="rtl"] .floating-buttons {
		left: auto;
		right: 20px;
	}
	
	.floating-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
	
	.floating-btn i {
		font-size: 20px;
	}
	
	/* Features */
	.feature-item-advanced {
		padding: 1.25rem;
	}
	
	.feature-icon-wrapper {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
	}
	
	.feature-title {
		font-size: 1.1rem;
	}
	
	.features-advanced {
		gap: 1rem;
	}
	
	/* Policy Pages */
	.site-main .card-body {
		padding: 2rem 1.5rem !important;
	}
	
	.page-title {
		font-size: 2rem;
	}
	
	.entry-content section {
		padding: 1.5rem 0;
	}
	
	.entry-content section h2 {
		font-size: 1.5rem;
		padding-right: 1rem;
	}
	
	.entry-content section h2::before {
		height: 25px;
	}
	
	.entry-content section h3 {
		font-size: 1.2rem;
	}
	
	.entry-content section ul,
	.entry-content section ol {
		padding-right: 1.5rem;
	}
	
	.entry-content section ul li,
	.entry-content section ol li {
		padding-right: 2rem;
	}
}

/* Landscape Orientation on Mobile */
@media (max-width: 768px) and (orientation: landscape) {
	.hero-image-wrapper {
		aspect-ratio: 5494 / 2000;
	}
}

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
	/* Hero Carousel */
	.hero-image-wrapper {
		aspect-ratio: 5494 / 2000;
	}
	
	.carousel-control-prev,
	.carousel-control-next {
		width: 12%;
		opacity: 0.5;
	}
	
	.carousel-control-prev-icon,
	.carousel-control-next-icon {
		width: 1.5rem;
		height: 1.5rem;
	}
	
	.carousel-indicators {
		margin-bottom: 0.75rem;
	}
	
	.carousel-indicators [data-bs-target] {
		width: 8px;
		height: 8px;
		margin: 0 3px;
	}
	
	.carousel-indicators [data-bs-target].active {
		width: 24px;
	}
	
	/* Footer */
	.site-footer {
		padding: 2rem 0 !important;
	}
	
	.footer-widget {
		text-align: center;
		margin-bottom: 2.5rem;
	}
	
	.footer-title::after {
		right: 50%;
		transform: translateX(50%);
	}
	
	.footer-contact-item {
		justify-content: center;
	}
	
	.footer-copyright {
		text-align: center;
	}
	
	.site-footer .text-lg-start,
	.site-footer .text-lg-end {
		text-align: center !important;
	}
	
	/* General Sections */
	section {
		padding: 2.5rem 0;
	}
	
	.display-4 {
		font-size: 1.75rem;
	}
	
	.btn-lg {
		padding: 0.75rem 1.5rem;
		font-size: 1rem;
	}
	
	/* Services */
	.service-card {
		padding: 1.75rem 1.25rem;
	}
	
	.service-icon-wrapper {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
	
	.service-title {
		font-size: 1.1rem;
	}
	
	/* Features */
	.feature-item-advanced {
		padding: 1rem;
		gap: 1rem;
	}
	
	/* Policy Pages */
	.site-main .card-body {
		padding: 1.5rem 1rem !important;
	}
	
	.page-title {
		font-size: 1.75rem;
	}
	
	.page-header {
		padding-bottom: 1.5rem;
		margin-bottom: 2rem;
	}
	
	.entry-content section {
		padding: 1.25rem 0;
	}
	
	.entry-content section h2 {
		font-size: 1.35rem;
	}
	
	.entry-content section p {
		font-size: 0.95rem;
	}
}

/* ============================================
   Loading Spinner
   ============================================ */
.spinner-border-sm {
	width: 1rem;
	height: 1rem;
	border-width: 0.15em;
}

/* ============================================
   Accessibility
   ============================================ */
.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
	.floating-buttons,
	.navbar,
	.site-footer {
		display: none !important;
	}
}
