/* ==========================================================================
   AL MIRQAB Theme Design System (Mobile-First CSS)
   ========================================================================== */

/* 1. Global Variables & Tokens */
:root {
	/* Curated Colors */
	--primary-color: #d4af37; /* Sophisticated Gold Accent */
	--primary-color-rgb: 212, 175, 55;
	--secondary-color: #0a192f; /* Sophisticated Dark Navy */
	--secondary-color-rgb: 10, 25, 47;
	
	/* Neutral States */
	--text-dark: #0f172a;
	--text-light: #ffffff;
	--text-muted: #64748b;
	--bg-light: #f8fafc;
	--bg-white: #ffffff;
	--border-color: rgba(15, 23, 42, 0.08);
	
	/* Sophisticated Typography */
	--font-headings: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;

	/* Transitions & Shadows */
	--transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	--shadow-soft: 0 10px 30px -10px rgba(10, 25, 47, 0.04);
	--shadow-medium: 0 20px 40px -15px rgba(10, 25, 47, 0.08);
	--shadow-hard: 0 30px 60px -20px rgba(10, 25, 47, 0.12);
}

/* 2. Global Resets & HTML */
*, *::before, *::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--bg-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-headings);
	color: var(--secondary-color);
	font-weight: 700;
	line-height: 1.3;
	margin-top: 0;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition-smooth);
}

a:hover {
	opacity: 0.85;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Screen reader utility */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--primary-color);
	color: #fff;
	padding: 10px 20px;
	z-index: 99999;
	transition: top 0.2s;
}

.skip-link:focus {
	top: 0;
}

/* 3. Common Layout & Grid Containers */
.container {
	width: 100%;
	padding-right: 20px;
	padding-left: 20px;
	margin-right: auto;
	margin-left: auto;
}

.section-padding {
	padding: clamp(60px, 8vw, 100px) 0;
}

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

.text-center {
	text-align: center;
}

.section-header {
	max-width: 600px;
	margin: 0 auto 30px auto;
}

.section-badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--primary-color);
	background-color: rgba(var(--primary-color-rgb), 0.08);
	padding: 6px 16px;
	border-radius: 50px;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.section-title {
	font-size: 1.8rem;
	margin-bottom: 12px;
}

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

/* Responsive Grids (Mobile-First) */
.grid-2-col, .grid-4-col {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

/* Buttons (Accessibility: Minimum 48px touch targets) */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-headings);
	font-weight: 600;
	min-height: 48px; /* Touch Target Compliance */
	padding: 12px 28px;
	border-radius: 8px;
	transition: var(--transition-smooth);
	cursor: pointer;
	border: 2px solid transparent;
	font-size: 0.95rem;
}

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

.btn-primary:hover {
	background-color: #ffffff;
	color: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 12px 24px -10px rgba(var(--primary-color-rgb), 0.4);
	border-color: var(--primary-color);
}

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

.btn-secondary:hover {
	background-color: var(--primary-color);
	color: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 12px 24px -10px rgba(var(--primary-color-rgb), 0.4);
}

.btn-outline {
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
	background-color: transparent;
}

.btn-outline:hover {
	background-color: #fff;
	color: var(--secondary-color);
	transform: translateY(-2px);
}

.btn-whatsapp {
	background-color: #25D366;
	color: #fff;
}

.btn-whatsapp:hover {
	background-color: #128C7E;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px -10px rgba(37, 211, 102, 0.3);
}

.btn-block {
	display: flex;
	width: 100%;
	text-align: center;
}

/* 4. Top Contact Bar & Sticky Header */
.top-bar {
	display: none; /* Hidden on mobile */
	background-color: #060B18;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	color: #94a3b8;
	font-size: 0.85rem;
	padding: 10px 0;
}

.top-bar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar-left {
	display: flex;
	gap: 25px;
}

.top-bar-left .contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.top-bar-right a {
	color: #94a3b8;
	margin-left: 15px;
}

.top-bar-right a:hover {
	color: var(--primary-color);
}

.site-header {
	background-color: rgba(10, 15, 29, 0.5);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: none;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 1000;
	transition: var(--transition-smooth);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Make links white when header is transparent over dark hero */
.site-header:not(.shrunk) .site-branding h1 a,
.site-header:not(.shrunk) .main-navigation a,
.site-header:not(.shrunk) .cta-phone .text,
.site-header:not(.shrunk) .cta-whatsapp .text {
	color: #ffffff;
}

.site-header:not(.shrunk) .hamburger-inner,
.site-header:not(.shrunk) .hamburger-inner::before,
.site-header:not(.shrunk) .hamburger-inner::after {
	background-color: #ffffff;
}

.site-header.shrunk {
	padding: 8px 0;
	background-color: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: var(--shadow-soft);
	border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.site-header.shrunk .site-branding h1 a,
.site-header.shrunk .main-navigation a,
.site-header.shrunk .cta-phone .text,
.site-header.shrunk .cta-whatsapp .text {
	color: var(--secondary-color);
}

.site-header.shrunk .hamburger-inner,
.site-header.shrunk .hamburger-inner::before,
.site-header.shrunk .hamburger-inner::after {
	background-color: var(--secondary-color);
}

/* Pull Hero & Page Banners underneath transparent header */
.hero-section,
.page-banner {
	margin-top: -70px;
	padding-top: 130px !important;
}

@media (min-width: 1024px) {
	.hero-section,
	.page-banner {
		margin-top: -110px;
		padding-top: 180px !important;
	}
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.site-branding h1 {
	font-size: 1.2rem;
	margin: 0;
}

.site-branding h1 a {
	color: var(--secondary-color);
	font-weight: 800;
}

.site-branding .custom-logo,
.site-branding img {
	max-height: 48px;
	width: auto;
	display: block;
	transition: var(--transition-smooth);
}

/* Make logo white when header is transparent over dark hero section */
.site-header:not(.shrunk) .site-branding .custom-logo,
.site-header:not(.shrunk) .site-branding img {
	filter: brightness(0) invert(1);
}

.main-navigation {
	display: none; /* Desktop menu hidden on mobile */
}

.header-actions {
	display: none; /* Desktop CTA buttons hidden on mobile */
}

/* hamburger Burger icon (Touch target 48px) */
.menu-toggle {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 12px;
	min-width: 48px;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hamburger-box {
	width: 24px;
	height: 18px;
	display: inline-block;
	position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 24px;
	height: 3px;
	background-color: var(--secondary-color);
	position: absolute;
	transition: transform 0.15s ease, background-color 0.15s ease;
	border-radius: 4px;
}

.hamburger-inner {
	top: 50%;
	margin-top: -1.5px;
}

.hamburger-inner::before {
	content: "";
	top: -7px;
	left: 0;
}

.hamburger-inner::after {
	content: "";
	bottom: -7px;
	left: 0;
}

/* 5. Mobile Navigation Drawer */
.mobile-drawer {
	position: fixed;
	top: 0;
	right: -300px;
	width: 280px;
	height: 100%;
	background: var(--secondary-color);
	border-left: 1px solid rgba(255,255,255,0.08);
	z-index: 9999;
	box-shadow: var(--shadow-hard);
	display: flex;
	flex-direction: column;
	transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
	right: 0;
}

.drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.drawer-logo {
	font-weight: 700;
	color: #ffffff;
	font-size: 1.2rem;
}

.drawer-close {
	background: none;
	border: none;
	font-size: 2.2rem;
	cursor: pointer;
	color: #ffffff;
	min-width: 48px;
	min-height: 48px;
}

.drawer-body {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.mobile-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

.mobile-navigation li {
	margin-bottom: 15px;
}

.mobile-navigation a {
	display: block;
	font-size: 1.1rem;
	font-weight: 500;
	color: #cbd5e1;
	padding: 10px 0;
}

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

.drawer-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: auto;
	margin-bottom: 60px; /* Leave room for mobile floating actions */
}

.drawer-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.open {
	opacity: 1;
	visibility: visible;
}

/* 6. Hero Banner styling */
.hero-section {
	position: relative;
	min-height: 460px;
	display: flex;
	align-items: center;
	color: #fff;
	text-align: center;
	padding: 80px 0 120px 0;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

.hero-container {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 1.9rem;
	color: #fff;
	margin-bottom: 15px;
	font-weight: 800;
	line-height: 1.3;
}

.hero-subtitle {
	font-size: 1rem;
	margin-bottom: 30px;
	color: #ccd6f6;
	letter-spacing: 0.5px;
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 320px;
	margin: 0 auto;
}

.hero-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	transform: rotate(180deg);
}

.hero-wave svg {
	position: relative;
	display: block;
	width: calc(150% + 1.3px);
	height: 50px;
}

.hero-wave .shape-fill {
	fill: var(--bg-white);
}

/* 7. Homepage Section Styles */
.intro-text {
	color: #444;
	margin-bottom: 20px;
	font-size: 1rem;
}

/* Services Grid & Cards */
.service-card {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 40px 30px;
	transition: var(--transition-smooth);
}

.service-card:hover {
	border-color: var(--primary-color);
	transform: translateY(-8px);
	box-shadow: var(--shadow-medium);
}

.service-icon {
	font-size: 2.5rem;
	margin-bottom: 20px;
	display: inline-block;
}

.service-card h3 {
	font-size: 1.3rem;
	margin-bottom: 12px;
}

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

/* Why Choose Us features */
.feature-card {
	text-align: center;
	padding: 35px 25px;
	border-radius: 16px;
	background: var(--bg-white);
	box-shadow: var(--shadow-soft);
	transition: var(--transition-smooth);
	border: 1px solid var(--border-color);
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-medium);
	border-color: rgba(var(--primary-color-rgb), 0.3);
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
	display: inline-block;
}

.feature-card h4 {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

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

/* Projects grid item */
.project-item {
	overflow: hidden;
	border-radius: 16px;
	position: relative;
	transition: var(--transition-smooth);
}

.project-graphic {
	transition: var(--transition-smooth);
}

.project-item:hover .project-graphic {
	transform: scale(1.05);
	box-shadow: var(--shadow-medium);
}

/* 8. Forms & Inputs System */
.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	margin-bottom: 6px;
	font-weight: 500;
	color: var(--secondary-color);
	font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.15);
}

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

.required {
	color: #ff0000;
}

/* 9. Layout footers */
.site-footer {
	background-color: #0c1020;
	color: #ccd6f6;
	font-size: 0.9rem;
}

.footer-top {
	padding: 50px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.footer-title {
	color: #fff;
	font-size: 1.15rem;
	margin-bottom: 15px;
	position: relative;
	padding-bottom: 8px;
}

.footer-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: var(--primary-color);
}

.footer-bottom {
	padding: 20px 0;
	font-size: 0.8rem;
	background-color: #090c17;
}

.footer-bottom-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
}

/* 10. Mobile Floating Quick Call / WhatsApp Bar */
.mobile-floating-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: #fff;
	box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
	display: grid;
	grid-template-columns: 1fr 1fr;
	z-index: 999;
}

.floating-action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 0.95rem;
	color: #fff;
	text-decoration: none;
	min-height: 60px;
}

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

.floating-action-btn.btn-wa {
	background-color: #25D366;
}

/* 11. Gallery Lightbox overlays */
.gallery-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	z-index: 99999;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	color: #fff;
	font-size: 3rem;
	cursor: pointer;
	min-width: 48px;
	min-height: 48px;
}

.lightbox-content {
	text-align: center;
	color: #fff;
	max-width: 90%;
}

.lightbox-preview-icon {
	color: #fff;
}

.gallery-filter-btn {
	background: #f0f0f0;
	border: 1px solid #ddd;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 600;
	font-family: var(--font-headings);
	cursor: pointer;
	transition: var(--transition-smooth);
}

.gallery-filter-btn.active, .gallery-filter-btn:hover {
	background: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
}

.gallery-item-card.hidden {
	display: none;
}

.gallery-grid {
	display: grid;
	grid-template-columns: 1fr; /* Mobile-first: 1 column */
	gap: 20px;
	margin-top: 30px;
}

@media (min-width: 576px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
	}
}

@media (min-width: 992px) {
	.gallery-grid {
		grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
	}
}

.gallery-item-card {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-graphic-box {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.gallery-graphic-box::after {
	content: '🔍 View Gallery';
	position: absolute;
	bottom: -45px;
	left: 0;
	width: 100%;
	background: var(--primary-color);
	color: #fff;
	padding: 10px 0;
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	transition: bottom 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-graphic-box:hover::after {
	bottom: 0;
}


/* ==========================================================================
   Arabic RTL Support Styles
   ========================================================================== */
body.rtl {
	direction: rtl;
	unicode-bidi: embed;
}

body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4, body.rtl h5, body.rtl h6, body.rtl p, body.rtl ul, body.rtl table {
	text-align: right;
}

body.rtl .top-bar-left {
	display: flex;
	gap: 25px;
	flex-direction: row-reverse;
}

body.rtl .top-bar-right {
	display: flex;
	flex-direction: row-reverse;
}

body.rtl .top-bar-right a {
	margin-left: 0;
	margin-right: 15px;
}

body.rtl .header-container {
	flex-direction: row-reverse;
}

body.rtl .header-actions {
	flex-direction: row-reverse;
}

body.rtl .cta-phone, body.rtl .cta-whatsapp {
	text-align: left;
}

body.rtl .mobile-drawer {
	right: auto;
	left: -300px;
	transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.rtl .mobile-drawer.open {
	left: 0;
}

body.rtl .drawer-header {
	flex-direction: row-reverse;
}

body.rtl .footer-title::after {
	left: auto;
	right: 0;
}

body.rtl .contact-list li {
	flex-direction: row-reverse;
}

body.rtl .contact-list .txt {
	text-align: right;
}

body.rtl .footer-bottom-container {
	flex-direction: column;
}

body.rtl .about-experience-badge {
	border-left: none;
	border-right: 4px solid var(--primary-color);
}

/* ==========================================================================
   Media Queries (Progressive Enhancements)
   ========================================================================== */

/* Tablets (min-width: 768px) */
@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}

	.section-padding {
		padding: 70px 0;
	}

	.section-title {
		font-size: 2.2rem;
	}

	.grid-2-col {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.grid-4-col {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.hero-section {
		min-height: 560px;
		padding: 100px 0 140px 0;
	}

	.hero-title {
		font-size: 2.8rem;
	}

	.hero-subtitle {
		font-size: 1.25rem;
	}

	.hero-buttons {
		flex-direction: row;
		justify-content: center;
		max-width: 100%;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.form-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Hide mobile quick actions on larger displays */
	.mobile-floating-bar {
		display: none;
	}

	body.rtl .footer-bottom-container {
		flex-direction: row-reverse;
		justify-content: space-between;
	}
}

/* Laptops & Desktops (min-width: 1024px) */
@media (min-width: 1024px) {
	.container {
		max-width: 960px;
	}

	.section-padding {
		padding: 90px 0;
	}

	.grid-4-col {
		grid-template-columns: repeat(4, 1fr);
	}

	.top-bar {
		display: block;
	}

	.main-navigation {
		display: block;
	}

	.main-navigation ul {
		display: flex;
		list-style: none;
		margin: 0;
		padding: 0;
		gap: 30px;
	}

	/* RTL Desktop Navigation support */
	body.rtl .main-navigation ul {
		flex-direction: row-reverse;
	}

	.main-navigation a {
		color: var(--secondary-color);
		font-weight: 500;
		font-size: 0.95rem;
		position: relative;
		padding: 10px 0;
	}

	.main-navigation a::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 2px;
		background-color: var(--primary-color);
		transition: var(--transition-smooth);
	}

	.main-navigation a:hover::after,
	.main-navigation .current-menu-item > a::after {
		width: 100%;
	}

	.header-actions {
		display: flex;
		align-items: center;
		gap: 20px;
	}

	.cta-phone, .cta-whatsapp {
		display: flex;
		flex-direction: column;
		text-align: right;
	}

	body.rtl .cta-phone, body.rtl .cta-whatsapp {
		text-align: left;
	}

	.cta-phone .text, .cta-whatsapp .text {
		font-weight: 600;
		color: var(--secondary-color);
		font-size: 0.9rem;
	}

	.cta-phone .icon, .cta-whatsapp .icon {
		display: none;
	}

	.btn-quote {
		padding: 10px 20px;
		font-size: 0.85rem;
		background-color: var(--primary-color);
		color: #fff;
		min-height: 42px;
	}

	.menu-toggle {
		display: none;
	}

	.footer-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.footer-bottom-container {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

/* Wide Screens (min-width: 1200px) */
@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}

	.hero-section {
		min-height: 660px;
	}

	.hero-title {
		font-size: 3.5rem;
		line-height: 1.2;
	}
}

/* ==========================================================================
   Agency UI/UX Redesign Utilities
   ========================================================================== */

/* Pulsing Status indicator */
.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(37, 211, 102, 0.08);
	color: #25D366;
	border: 1px solid rgba(37, 211, 102, 0.2);
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.status-dot {
	width: 8px;
	height: 8px;
	background-color: #25D366;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 8px #25D366;
	animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
	0% {
		transform: scale(0.9);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
	}
	100% {
		transform: scale(0.9);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

/* Glass Card overlay */
.glass-panel {
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: var(--shadow-soft);
	border-radius: 24px;
	padding: 40px;
	transition: var(--transition-smooth);
}

.glass-panel:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-medium);
}

/* Dark Premium Section card */
.dark-premium-card {
	background: #0D1326;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 24px;
	padding: 50px;
	color: #fff;
	box-shadow: var(--shadow-hard);
}

/* Premium input focus transitions */
.glass-input {
	width: 100%;
	min-height: 48px;
	padding: 12px 18px;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 8px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--text-dark);
	transition: var(--transition-smooth);
	outline: none;
}

.glass-input:focus {
	background: #ffffff;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(var(--primary-color-rgb), 0.15);
}

/* Trust Pill badge */
.trust-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(229, 193, 88, 0.12);
	color: #bfa045;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
}

/* High-end cards customization overrides */
.service-card, .feature-card, .project-item {
	border-radius: 24px !important;
}

.testimonial-slide {
	border-radius: 24px !important;
}

/* Floating Hero Statistics Bar */
.hero-stats {
	margin-top: 60px;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	background: rgba(10, 25, 47, 0.5);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 30px 20px;
	box-shadow: var(--shadow-medium);
}

.hero-stat-item {
	text-align: center;
}

.hero-stat-item h3 {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--primary-color);
	margin: 0 0 5px 0;
	line-height: 1.1;
}

.hero-stat-item p {
	font-size: 0.75rem;
	color: #cbd5e1;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	margin: 0;
}

@media (min-width: 768px) {
	.hero-stats {
		grid-template-columns: repeat(4, 1fr);
		padding: 30px;
	}
	.hero-stat-item:not(:first-child) {
		border-left: 1px solid rgba(255, 255, 255, 0.1);
	}
}

/* ==========================================================================
   Refactored Premium Layout Utilities (Agency Visual Clean-up)
   ========================================================================== */

.hero-container-centered {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero-content-centered {
	max-width: 850px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hero-title-premium {
	margin-top: 10px;
	font-weight: 800;
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	line-height: 1.15;
	letter-spacing: -1px;
	color: #fff;
}

.hero-subtitle-premium {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	opacity: 0.9;
	margin-top: 20px;
	font-weight: 500;
	color: #cbd5e1;
	max-width: 650px;
}

.hero-trust-row {
	margin-top: 25px;
	margin-bottom: 35px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	width: 100%;
}

.hero-actions-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	width: 100%;
}

.hero-btn-primary {
	padding: 16px 36px;
	font-size: 1.05rem;
	box-shadow: 0 20px 40px -10px rgba(var(--primary-color-rgb), 0.35);
}

.hero-btn-outline {
	padding: 16px 36px;
	font-size: 1.05rem;
	border-color: rgba(255, 255, 255, 0.4);
}

/* Page Banner elements */
.banner-title-premium {
	margin: 0 0 10px 0;
	color: #fff;
	font-size: 2.5rem;
	font-weight: 700;
}

.banner-breadcrumbs {
	color: #8892b0;
	font-size: 0.95rem;
}

.banner-breadcrumbs a {
	color: var(--primary-color);
	text-decoration: none;
}

.banner-breadcrumbs span {
	margin: 0 8px;
}

/* Service/Intro Blocks */
.intro-image-container {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-medium);
	border: 1px solid var(--border-color);
}

.intro-title-premium {
	font-size: clamp(2rem, 3.5vw, 2.6rem);
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 25px;
	letter-spacing: -0.5px;
}

.intro-text-premium {
	color: var(--text-muted);
	font-size: 1.05rem;
	line-height: 1.75;
	margin-bottom: 20px;
}

/* Services templates page columns */
.services-container-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.service-card-wrapper {
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-soft);
	transition: var(--transition-smooth);
}

.service-card-img-wrapper {
	background-size: cover;
	background-position: center;
	height: 200px;
}

.service-card-body-wrapper {
	padding: 35px 30px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.service-card-body-wrapper h3 {
	font-size: 1.4rem;
	margin-bottom: 15px;
	font-weight: 700;
	color: var(--secondary-color);
}

.service-card-body-wrapper p {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 25px;
}



