/*
  ====================================================
  ===  WARM EMBER THEME — Regular / Default Theme  ===
  ===  Typography: Bricolage Grotesque + Lexend     ===
  ===  Palette: Coral / Amber / Warm Cream          ===
  ====================================================
*/

/*
  -------------------------------------------
  Warm Ember Custom Properties
  -------------------------------------------
*/

:root {
	--ember-primary: #E8553A;
	--ember-primary-rgb: 232, 85, 58;
	--ember-secondary: #D04020;
	--ember-secondary-rgb: 208, 64, 32;
	--ember-accent: #F59E0B;
	--ember-accent-rgb: 245, 158, 11;
	--ember-text: #1C1210;
	--ember-text-muted: #6B5E57;
	--ember-bg: #FEFCFA;
	--ember-surface: #F7F2ED;
	--ember-border: rgba(28, 18, 16, 0.08);
	--ember-shadow-color: 28, 18, 16;
	--ember-warm-white: #FFF8F3;
	--ember-dark-bg: #1A1311;
	--ember-dark-surface: rgba(255, 255, 255, 0.04);
	--ember-dark-border: rgba(255, 248, 243, 0.08);
	--ember-gradient: linear-gradient(135deg, #E8553A 0%, #F59E0B 100%);
	--ember-gradient-deep: linear-gradient(135deg, #D04020 0%, #E8553A 50%, #F59E0B 100%);
	--ember-radius: 1rem;
	--ember-radius-lg: 1.5rem;
	--ember-radius-xl: 2rem;
}

/*
  -------------------------------------------
  Font Import (fallback - primary load in head.php)
  -------------------------------------------
*/

body {
	font-family: 'Lexend', sans-serif;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: -0.01em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*
  -------------------------------------------
  Color utilities for text (gray scale)
  -------------------------------------------
*/

.text-gray-50 { color: #faf8f6 !important; }
.text-gray-100 { color: #f5f0eb !important; }
.text-gray-200 { color: #e8e0d8 !important; }
.text-gray-300 { color: #d4c9bf !important; }
.text-gray-400 { color: #a89889 !important; }
.text-gray-500 { color: #6b5e57 !important; }
.text-gray-600 { color: #554a44 !important; }
.text-gray-700 { color: #3d3430 !important; }
.text-gray-800 { color: #2b2118 !important; }
.text-gray-900 { color: #1c1210 !important; }

/* Dark mode text color utilities */
[data-bs-theme="dark"] .dark\:text-gray-50 { color: #faf8f6 !important; }
[data-bs-theme="dark"] .dark\:text-gray-100 { color: #f5f0eb !important; }
[data-bs-theme="dark"] .dark\:text-gray-200 { color: #e8e0d8 !important; }
[data-bs-theme="dark"] .dark\:text-gray-300 { color: #d4c9bf !important; }
[data-bs-theme="dark"] .dark\:text-gray-400 { color: #a89889 !important; }
[data-bs-theme="dark"] .dark\:text-gray-500 { color: #6b5e57 !important; }
[data-bs-theme="dark"] .dark\:text-white { color: #ffffff !important; }

/* Body text color based on theme */
[data-bs-theme="light"] body {
	color: var(--ember-text);
	background-color: var(--ember-bg);
}

[data-bs-theme="dark"] body {
	color: #e8e0d8;
	background-color: var(--ember-dark-bg);
}

/* Heading colors based on theme */
[data-bs-theme="light"] h1,
[data-bs-theme="light"] h2,
[data-bs-theme="light"] h3,
[data-bs-theme="light"] h4,
[data-bs-theme="light"] h5,
[data-bs-theme="light"] h6 {
	color: var(--ember-text);
}

[data-bs-theme="dark"] h1,
[data-bs-theme="dark"] h2,
[data-bs-theme="dark"] h3,
[data-bs-theme="dark"] h4,
[data-bs-theme="dark"] h5,
[data-bs-theme="dark"] h6 {
	color: #faf8f6;
}

/* Primary text color utility */
.text-primary {
	color: var(--ember-primary) !important;
}

/* Dark mode visibility utilities */
[data-bs-theme="dark"] .dark\:hidden {
	display: none !important;
}

[data-bs-theme="dark"] .dark\:inline-block {
	display: inline-block !important;
}

[data-bs-theme="dark"] .dark\:block {
	display: block !important;
}

[data-bs-theme="light"] .hidden.dark\:inline-block,
.hidden.dark\:inline-block {
	display: none !important;
}

[data-bs-theme="dark"] .hidden.dark\:inline-block {
	display: inline-block !important;
}

[data-bs-theme="dark"] .dark\:bg-dark {
	background-color: var(--bs-dark) !important;
}

[data-bs-theme="dark"] .dark\:text-light {
	color: var(--bs-light) !important;
}

/*
  -------------------------------------------
  Animation visibility fix
  -------------------------------------------
*/

[data-ns-animate] {
	opacity: 1 !important;
}

@keyframes ns-animate-fallback {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.content-section-layout [data-ns-animate] {
	animation: ns-animate-fallback 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/*
  -------------------------------------------
  Page Load Stagger Animation
  -------------------------------------------
*/

@keyframes ember-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ember-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes ember-scale-in {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes ember-slide-right {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ember-shimmer {
	0% { background-position: -200% center; }
	100% { background-position: 200% center; }
}

@keyframes ember-glow-pulse {
	0%, 100% { box-shadow: 0 0 20px rgba(var(--ember-primary-rgb), 0.15); }
	50% { box-shadow: 0 0 40px rgba(var(--ember-primary-rgb), 0.3); }
}

/*
  -------------------------------------------
  Preloader
  -------------------------------------------
*/

.loader-wrapper {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	bottom: 0 !important;
	right: 0 !important;
	background-color: rgba(var(--bs-body-bg-rgb), 1) !important;
	display: flex;
	justify-content: center !important;
	align-items: center !important;
	z-index: 2000 !important;
}

.loader-wrapper .spinner-grow {
	width: 4rem;
	height: 4rem;
	color: var(--ember-primary) !important;
}

/*
  -------------------------------------------
  RTL / LTR direction defaults
  -------------------------------------------
*/

.left-to-right {
	display: none !important;
}

.right-to-left {
	display: none !important;
}

[dir="ltr"] .left-to-right {
	display: inline !important;
}

[dir="rtl"] .right-to-left {
	display: inline !important;
}

[dir="rtl"] .rtl-flip {
	transform: scaleX(-1) !important;
}

[dir="rtl"] .breadcrumb-item+.breadcrumb-item::before {
	transform: scaleX(-1);
}

/*
  -------------------------------------------
  General Styles
  -------------------------------------------
*/

a {
	text-decoration: none !important;
	color: var(--ember-primary);
	transition: color 0.3s ease;
}

a:hover {
	color: var(--ember-secondary);
}

.underline-hover {
	position: relative;
	text-decoration: none;
	background-image: linear-gradient(var(--ember-primary), var(--ember-primary));
	background-size: 0% 2px;
	background-repeat: no-repeat;
	background-position: 0 100%;
	transition: background-size 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.underline-hover:hover {
	background-size: 100% 2px;
}

::selection {
	background: rgba(var(--ember-primary-rgb), 0.15);
	color: var(--ember-text);
}

/*
  -------------------------------------------
  Back to Top Button
  -------------------------------------------
*/

.btn-back-to-top {
	position: fixed;
	bottom: 20px;
	display: none;
	z-index: 10;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: var(--ember-gradient);
	border: none;
	box-shadow: 0 8px 30px rgba(var(--ember-primary-rgb), 0.35);
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	color: #fff;
}

.btn-back-to-top:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 14px 40px rgba(var(--ember-primary-rgb), 0.45);
}

[dir="ltr"] .btn-back-to-top {
	right: 20px;
}

[dir="rtl"] .btn-back-to-top {
	left: 20px;
}

@media (min-width: 1200px) {
	.overflow-xl-hidden {
		overflow: hidden !important;
	}
}

/*
  ==============================================
  NAVBAR / HEADER
  ==============================================
*/

/* Warm accent bar at top of page */
.site-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--ember-gradient);
	z-index: 1001;
}

/* Site header - fix image sizing (override Tailwind reset) */
.site-header .site-brand img {
	max-width: none !important;
	width: auto !important;
	display: inline-block !important;
}

/* Fix SVG sizing in header */
.site-header .site-action-btn svg,
.site-header .site-theme-btn svg,
.site-header .dropdown-item svg,
.site-header .site-dropdown svg {
	display: inline-block !important;
	max-width: none !important;
	width: 1em !important;
	height: 1em !important;
}

/* Dropdown toggle arrow - hide */
.site-header .dropdown-toggle::after {
	display: none;
}

/* Warm navbar styling */
.site-header .site-nav-link {
	position: relative;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.site-header .site-nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--ember-gradient);
	border-radius: 2px;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	transform: translateX(-50%);
}

.site-header .site-nav-link:hover::after,
.site-header .site-nav-link.active::after {
	width: 100%;
}

/*
  ==============================================
  SECTION HEADERS
  ==============================================
*/

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

.section-header .above-heading {
	text-transform: uppercase;
	margin-bottom: 1rem;
	letter-spacing: 0.12em;
	color: var(--ember-primary);
	border-radius: 50px;
	padding: 0.5rem 1.5rem;
	background-color: rgba(var(--ember-primary-rgb), 0.08);
	font-weight: 600;
	display: inline-block;
	font-size: 0.8rem;
	font-family: 'Lexend', sans-serif;
	border: 1px solid rgba(var(--ember-primary-rgb), 0.12);
}

[data-bs-theme="dark"] .section-header .above-heading {
	background-color: rgba(var(--ember-primary-rgb), 0.12);
	border-color: rgba(var(--ember-primary-rgb), 0.2);
	color: #F08070;
}

/*
  ==============================================
  HEADER TOP / HERO
  ==============================================
*/

section.header-top .img-background {
	opacity: 0.06;
	background-size: cover;
	background-repeat: no-repeat;
}

/*
  ==============================================
  PACKAGE LISTS
  ==============================================
*/

section.package-list-carousel {
	position: relative;
	padding: 40px 0;
}

section.package-list .package-list-carousel .social-item {
	margin-top: 50px;
}

section.package-list .package-list-carousel .social-item .img-logo {
	margin: 0 auto;
	margin-bottom: 30px;
	width: 90px;
	height: 90px;
	background-color: var(--bs-body-bg, #f7f2ed);
	border-radius: 20px;
	border: 2px solid var(--bs-border-color, #e8e0d8);
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 20px rgba(var(--ember-shadow-color), 0.06);
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.package-list .package-list-carousel .social-item .img-logo:hover {
	border-color: var(--ember-primary);
	transform: translateY(-4px);
	box-shadow: 0 12px 35px rgba(var(--ember-primary-rgb), 0.15);
}

section.package-list .package-list-carousel .social-item .img-logo img {
	width: 60px;
}

section.package-list .tab {
	cursor: pointer;
	padding: 10px;
	border: 1px solid transparent;
	border-radius: 16px;
	min-width: 90px;
}

section.package-list .tab-item .img-logo {
	margin: 0 auto;
	width: 4.5rem;
	height: 4.5rem;
	background-color: var(--bs-body-bg, #f7f2ed);
	border-radius: 16px;
	border: 2px solid var(--bs-border-color, #e8e0d8);
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 16px rgba(var(--ember-shadow-color), 0.05);
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.package-list .tab-item .img-logo:hover,
section.package-list .tab-item.active .img-logo {
	border-color: var(--ember-primary);
	box-shadow: 0 8px 25px rgba(var(--ember-primary-rgb), 0.18);
	transform: translateY(-3px);
}

section.package-list .tab-item .img-logo img {
	width: 3rem;
}

[data-bs-theme=light] section.package-list .tab-content .tab-item {
	background: rgba(var(--ember-primary-rgb), 0.03);
}

.package-btn-list .buy-package-item .icon-right {
	color: var(--bs-secondary-color, #a89889);
	margin-top: 8px;
}

.package-btn-list .buy-package-item .icon-square {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: var(--ember-gradient);
	border-radius: 12px;
	color: #fff;
	padding: 5px 6px;
	font-size: 20px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(var(--ember-primary-rgb), 0.2);
}

.package-list-tab .buy-package-item .icon-square {
	background: var(--ember-gradient);
}

.package-list-carousel .buy-package-item .icon-square {
	color: var(--ember-primary);
	background: rgba(var(--ember-primary-rgb), 0.1);
	box-shadow: none;
}

.package-btn-list .buy-package-item:hover {
	border-color: rgba(var(--ember-primary-rgb), 0.2) !important;
	background: rgba(var(--ember-primary-rgb), 0.03) !important;
}

[data-bs-theme=dark] .tab-content .tab-item {
	background: rgba(var(--ember-primary-rgb), 0.06) !important;
}

[data-bs-theme=dark] .package-btn-list .buy-package-item {
	background: rgba(255, 255, 255, 0.03) !important;
	border-color: rgba(255, 248, 243, 0.08) !important;
	color: #e8e0d8;
}

[data-bs-theme=dark] .package-btn-list .buy-package-item:hover {
	border-color: rgba(var(--ember-primary-rgb), 0.25) !important;
	background: rgba(var(--ember-primary-rgb), 0.06) !important;
}

[data-bs-theme=dark] .package-btn-list .buy-package-item .icon-right {
	color: rgba(255, 248, 243, 0.35);
}

/*
  ==============================================
  COUNTER AREA
  ==============================================
*/

section.counts-area {
	padding: 70px 0 60px;
}

section.counts-area .count-box {
	display: flex;
	align-items: center;
	padding: 30px;
	width: 100%;
	border-radius: var(--ember-radius-lg);
	box-shadow: 0 4px 30px rgba(var(--ember-shadow-color), 0.06);
	border: 1px solid var(--ember-border);
	background: var(--bs-body-bg);
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.counts-area .count-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(var(--ember-shadow-color), 0.1);
}

section.counts-area .count-box i {
	font-size: 42px;
	line-height: 0;
	margin-right: 20px;
	color: var(--ember-primary);
}

section.counts-area .count-box span {
	font-size: 36px;
	font-weight: 700;
	font-family: 'Bricolage Grotesque', sans-serif;
	background: var(--ember-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

section.counts-area .count-box p {
	padding: 0;
	margin: 0;
	font-size: 14px;
	color: var(--ember-text-muted);
}

[data-bs-theme="dark"] section.counts-area .count-box {
	background: var(--ember-dark-surface);
	border-color: var(--ember-dark-border);
}

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

section.why-choose-us {
	padding-top: 100px;
}

section.why-choose-us .content h2 {
	font-weight: 700;
}

section.why-choose-us .content p:last-child {
	margin-bottom: 0;
}

section.why-choose-us .icon-box {
	background-color: var(--bs-body-bg, #fff);
	padding: 2.5rem;
	border-radius: var(--ember-radius-lg);
	border: 1px solid var(--ember-border);
	box-shadow: 0 4px 24px rgba(var(--ember-shadow-color), 0.04);
	transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
	overflow: hidden;
}

/* Subtle warm gradient overlay on hover */
section.why-choose-us .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(var(--ember-primary-rgb), 0.03) 0%, rgba(var(--ember-accent-rgb), 0.02) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
	border-radius: inherit;
	pointer-events: none;
}

section.why-choose-us .icon-box:hover::before {
	opacity: 1;
}

section.why-choose-us .icon-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(var(--ember-shadow-color), 0.08);
	border-color: rgba(var(--ember-primary-rgb), 0.15);
}

[data-bs-theme="dark"] section.why-choose-us .icon-box {
	background: var(--ember-dark-surface);
	border-color: var(--ember-dark-border);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] section.why-choose-us .icon-box:hover {
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	border-color: rgba(var(--ember-primary-rgb), 0.25);
}

section.why-choose-us .icon-box i {
	width: 70px;
	height: 70px;
	border-radius: var(--ember-radius);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	font-size: 28px;
	line-height: 0;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	background: linear-gradient(135deg, rgba(var(--ember-primary-rgb), 0.1) 0%, rgba(var(--ember-accent-rgb), 0.08) 100%);
	color: var(--ember-primary);
}

[data-bs-theme="dark"] section.why-choose-us .icon-box i {
	background: linear-gradient(135deg, rgba(var(--ember-primary-rgb), 0.15) 0%, rgba(var(--ember-accent-rgb), 0.1) 100%);
	color: #F08070;
}

section.why-choose-us .icon-box h3 {
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 700;
}

section.why-choose-us .icon-box p {
	margin-bottom: 0;
}

section.why-choose-us .icon-box:hover i {
	background: var(--ember-gradient);
	color: #fff;
	transform: scale(1.1) rotate(-3deg);
	box-shadow: 0 8px 25px rgba(var(--ember-primary-rgb), 0.3);
}

section.why-choose-us .icon-boxes .col-md-6:nth-child(2) .icon-box,
section.why-choose-us .icon-boxes .col-md-6:nth-child(4) .icon-box {
	margin-top: -40px;
}

@media (max-width: 768px) {
	section.why-choose-us .icon-boxes .col-md-6:nth-child(2) .icon-box,
	section.why-choose-us .icon-boxes .col-md-6:nth-child(4) .icon-box {
		margin-top: 0;
	}
}

/*
  ==============================================
  WHAT WE OFFER
  ==============================================
*/

section.what-we-offer {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-image: linear-gradient(135deg, #D04020 0%, #E8553A 40%, #F59E0B 100%);
	position: relative;
}

/* Subtle noise texture overlay */
section.what-we-offer::after {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
	opacity: 0.5;
}

[data-bs-theme="dark"] section.what-we-offer {
	background-image: linear-gradient(135deg, #7C1D10 0%, #9A2E1A 40%, #92620A 100%);
}

section.group-features .feature-icons h3 {
	color: #fff;
	font-weight: 700;
	font-size: 32px;
	margin-bottom: 20px;
	text-align: center;
	font-family: 'Bricolage Grotesque', sans-serif;
}

@media (max-width: 768px) {
	section.group-features .feature-icons h3 {
		font-size: 28px;
	}
}

section.group-features .feature-icons .content .icon-box {
	display: flex;
	position: relative;
	z-index: 1;
}

section.group-features .feature-icons .content .icon-box .icon {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 70px;
	flex: 0 0 70px;
	max-width: 70px;
	width: 70px;
	height: 70px;
	font-size: 1.75rem;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	margin-right: 1.5rem;
	background-color: rgba(255, 255, 255, 0.15);
	text-align: center;
	border-radius: 16px;
	margin-top: 2px;
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

section.group-features .feature-icons .content .icon-box:hover .icon {
	background-color: rgba(255, 255, 255, 0.25);
	transform: scale(1.05);
}

section.group-features .feature-icons .content .icon-box h4 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 10px 0;
}

section.group-features .feature-icons .content .icon-box i {
	line-height: 70px;
	font-size: 32px;
}

section.group-features .feature-icons .content .icon-box p {
	font-size: 15px;
	opacity: 0.85;
}

/*
  ==============================================
  HOW IT WORKS
  ==============================================
*/

.wimax-load {
	-webkit-animation: wimax-load 1500ms linear infinite;
	animation: wimax-load 1500ms linear infinite;
	background-color: transparent;
	border-color: #ffffff;
	border-top-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
	border-radius: 50%;
	border-style: solid;
	border-width: 2px;
	height: 50px;
	left: calc(50% - 25px);
	position: relative;
	top: calc(50% - 25px);
	width: 50px;
	z-index: 9;
}

@keyframes wimax-load {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

section.how-it-work .single_work_step {
	position: relative;
	z-index: 1;
	margin-bottom: 50px;
	text-align: center;
}

section.how-it-work .single_work_step .arrow {
	display: none;
}

section.how-it-work .single_work_step .step-icon {
	display: none;
}

section.how-it-work .single_work_step p {
	margin-bottom: 0;
}

section.how-it-work .single_work_step h5 {
	font-size: 20px;
	font-weight: 600;
}

section.how-it-work .single_work_step:last-child .arrow {
	display: none;
}

/*
  ==============================================
  CUSTOMER REVIEWS
  ==============================================
*/

section.reviews {
	background: linear-gradient(180deg, var(--bs-body-bg) 0%, var(--ember-surface) 100%);
}

[data-bs-theme="dark"] section.reviews {
	background: linear-gradient(180deg, var(--bs-body-bg) 0%, rgba(255,248,243,0.02) 100%);
}

section.reviews .review__verified {
	align-items: center;
	background: rgba(var(--ember-primary-rgb), 0.06);
	border-radius: 12px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-top: 20px;
	padding: 10px;
	border: 1px solid rgba(var(--ember-primary-rgb), 0.08);
}

[data-bs-theme="dark"] section.reviews .review__verified {
	background: rgba(var(--ember-primary-rgb), 0.1);
	border-color: rgba(var(--ember-primary-rgb), 0.15);
}

section.reviews .review__verified .icon {
	flex-shrink: 0;
	height: 26px;
	margin-bottom: 11px;
	margin-right: 5px;
	width: 26px;
}

section.reviews .review__verified div {
	color: var(--ember-primary);
	display: block;
	width: 100%;
}

section.reviews .review__verified h4 {
	font-family: 'Lexend', sans-serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 120%;
}

section.reviews .review__verified p {
	color: var(--ember-primary);
	font-size: 12px;
	font-weight: 400;
	line-height: 120%;
}

section.reviews .review__verified a {
	color: var(--ember-primary);
	display: inline;
}

section.reviews .rating-box {
	background: var(--bs-body-bg);
	border: 1px solid var(--bs-border-color, #e8e0d8);
	padding: 2rem;
	border-radius: var(--ember-radius-lg);
	max-width: 400px;
	margin: auto;
	box-shadow: 0 8px 30px rgba(var(--ember-shadow-color), 0.06);
}

[data-bs-theme="dark"] section.reviews .rating-box {
	background: var(--ember-dark-surface);
	border-color: var(--ember-dark-border);
}

section.reviews .rating-box .progress {
	height: 8px;
	border-radius: 4px;
	background: rgba(var(--bs-body-color-rgb, 0,0,0), 0.08);
}

section.reviews .rating-box .overall-rating {
	font-size: 3rem;
	font-weight: 800;
	font-family: 'Bricolage Grotesque', sans-serif;
	background: var(--ember-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

section.reviews .rating-box .stars {
	font-size: 2.0rem;
	color: #F59E0B;
}

section.reviews .rating-box .rating-bar {
	height: 8px;
	background: var(--ember-gradient);
	border-radius: 4px;
}

/* Review cards dark mode */
[data-bs-theme="dark"] section.reviews .bg-body-tertiary {
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 248, 243, 0.06);
}

/*
  ==============================================
  QUICK LINKS SECTION
  ==============================================
*/

section.quick-link .bg-gradient-dark {
	background-image: linear-gradient(135deg, #7C1D10 0%, #D04020 100%) !important;
	position: relative;
}

[data-bs-theme="dark"] section.quick-link .bg-gradient-dark {
	background-image: linear-gradient(135deg, #4A1109 0%, #7C1D10 100%) !important;
}

/*
  ==============================================
  FOOTER
  ==============================================
*/

/* Fix image sizing in footer - override Tailwind reset */
footer.bg-dark img,
.site-footer img {
	max-width: none !important;
	width: auto !important;
	display: inline-block !important;
}

footer.bg-dark .navbar-brand img,
footer.bg-dark a > img:first-child,
.site-footer .site-footer-brand img {
	height: 40px !important;
}

/* Trust badges and payment icons */
footer.bg-dark .d-flex img[height="35"],
footer.bg-dark img[alt="Trustpilot Stars"],
footer.bg-dark img[alt="Norton Logo"],
footer.bg-dark img[alt="Trustedsite"] {
	height: 35px !important;
}

footer.bg-dark .d-flex img[height="24"],
footer.bg-dark img[alt="Paypal"],
footer.bg-dark img[alt="Visa"],
footer.bg-dark img[alt="Mastercard"],
footer.bg-dark img[alt="Amex"],
footer.bg-dark img[alt="Apple Pay"] {
	height: 24px !important;
}

/* Warm dark footer */
footer.bg-dark {
	background: linear-gradient(180deg, #1E1613 0%, #151110 100%) !important;
	position: relative;
}

/* Geometric pattern overlay for footer */
footer.bg-dark::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(var(--ember-primary-rgb), 0.04) 1px, transparent 1px);
	background-size: 24px 24px;
	pointer-events: none;
}

footer.bg-dark .footer-link {
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	opacity: 0.65;
	position: relative;
}

footer.bg-dark .footer-link:hover {
	opacity: 1;
	color: var(--ember-primary) !important;
	transform: translateX(4px);
}

footer.bg-dark .btn-outline-light {
	border-color: rgba(255, 248, 243, 0.15);
	transition: all 0.3s ease;
	border-radius: 12px;
}

footer.bg-dark .btn-outline-light:hover {
	background: var(--ember-primary);
	border-color: var(--ember-primary);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(var(--ember-primary-rgb), 0.3);
}

/*
  ==============================================
  OWL CAROUSEL
  ==============================================
*/

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
	top: 50% !important;
	-webkit-transform: translateX(-50%);
	transform: translateY(-50%);
	position: absolute;
}

.owl-carousel .owl-nav .owl-prev {
	left: -10px !important;
}

.owl-carousel .owl-nav .owl-next {
	right: -10px !important;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: var(--ember-primary);
	border: none;
	border-radius: 12px;
	cursor: pointer;
	outline: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(var(--ember-primary-rgb), 0.25);
}

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover {
	background: var(--ember-secondary);
	transform: scale(1.05);
}

.owl-carousel .owl-prev span,
.owl-carousel .owl-next span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 41px;
	color: #fff;
	background: var(--ember-primary);
	border-radius: 12px;
}

.owl-carousel .owl-prev span:hover,
.owl-carousel .owl-next span:hover {
	background: var(--ember-secondary);
}

/*
  ==============================================
  BLOG AREA
  ==============================================
*/

.blog-list .item .card-title {
	min-height: 60px;
	font-family: 'Bricolage Grotesque', sans-serif;
}

.blog-list .item .card-text {
	min-height: 70px;
	font-size: 14px;
}

.blog-list .item .card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid var(--ember-border);
	border-radius: var(--ember-radius-lg);
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	overflow: hidden;
}

.blog-list .item .card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(var(--ember-shadow-color), 0.1);
	border-color: rgba(var(--ember-primary-rgb), 0.15);
}

.blog-list .item .card-img {
	transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.8s ease-in-out;
	width: 100%;
	height: auto;
	max-height: 315px;
	display: block;
	border-radius: var(--ember-radius-lg);
}

.blog-list .item .card-img:hover {
	transform: scale(1.05);
}

.blog-list .item .position-relative {
	overflow: hidden;
}

.blog-list .item .card-body {
	position: relative;
	z-index: 1;
}

.blog-list .item .avatar {
	position: relative;
	display: inline-block !important;
}

.blog-list .item .avatar-img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.blog-list .item .avatar-xs {
	height: 2.1875rem;
	width: 2.1875rem;
}

.rencent-posts .post-item {
	display: flex;
}

.rencent-posts .post-item img {
	height: auto;
	max-height: 100%;
	width: 100%;
	object-fit: cover;
}

.rencent-posts .post-item .row {
	flex: 1;
}

.rencent-posts .post-item .post-date {
	font-size: 0.75rem;
}

.rencent-posts .post-item .col-4 {
	flex: 0 0 auto;
}

.rencent-posts .post-item .col-8 {
	flex: 1;
}

/* POST SINGLE */

.post-single .post-meta p {
	font-size: 14px;
	color: var(--ember-text-muted);
}
.post-single .post-meta .separator {
	margin: 0 5px;
}
.post-single .post-meta .author {
	font-weight: bold;
}

/*
  ==============================================
  ALERT MESSAGES
  ==============================================
*/

.ajax-alert-message {
	box-shadow: 0 8px 30px rgba(var(--ember-shadow-color), 0.1);
	border-radius: var(--ember-radius);
}

.ajax-alert-message .alert-success {
	color: #065F46 !important;
	background-color: rgba(22, 163, 74, 0.12) !important;
	border: none !important;
	border-left: 4px solid #16A34A !important;
	border-radius: var(--ember-radius) !important;
}

.ajax-alert-message .alert-success svg {
	color: #16A34A !important;
}

.ajax-alert-message .alert-danger {
	color: #92012f !important;
	background-color: rgba(220, 38, 38, 0.08) !important;
	border: none !important;
	border-left: 4px solid #DC2626 !important;
	border-radius: var(--ember-radius) !important;
}

.ajax-alert-message .alert-danger svg {
	color: #DC2626 !important;
}

.overlay {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(254, 252, 250, 0.85);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10003;
}

[data-bs-theme="dark"] .overlay {
	background-color: rgba(26, 19, 17, 0.85);
}

/*
  ==============================================
  ===   WARM EMBER — GLOBAL DESIGN SYSTEM   ===
  ==============================================
*/

/*
  -----------------------------------------
  Warm Body Background Texture
  -----------------------------------------
*/

[data-bs-theme="light"] body {
	background-image:
		radial-gradient(ellipse at 20% 0%, rgba(var(--ember-primary-rgb), 0.03) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 100%, rgba(var(--ember-accent-rgb), 0.02) 0%, transparent 50%);
	background-attachment: fixed;
}

/*
  -----------------------------------------
  Typography — Bricolage Grotesque headings
  -----------------------------------------
*/

section {
	position: relative;
}

.content-section-layout {
	padding-top: 2rem;
}

.content-section-layout > section {
	padding: 5rem 0;
}

@media (min-width: 768px) {
	.content-section-layout > section {
		padding: 6rem 0;
	}
}

@media (min-width: 1200px) {
	.content-section-layout > section {
		padding: 7rem 0;
	}
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.15;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	line-height: 1.05;
	font-weight: 800;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Section badge */
.btn.btn-primary.btn-sm.text-white {
	font-family: 'Lexend', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	background: var(--ember-gradient) !important;
	border: none;
	box-shadow: 0 4px 15px rgba(var(--ember-primary-rgb), 0.3);
}

/* Section titles gradient text */
.text-4xl.leading-snug.tracking-tight.fw-bold,
.text-3xl.leading-snug.tracking-tight.fw-bold {
	background: linear-gradient(135deg, var(--bs-body-color) 0%, var(--bs-secondary-color) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	margin-top: 1rem;
}

/*
  -----------------------------------------
  CTA Buttons — Warm Ember Gradient
  -----------------------------------------
*/

.bg-primary.text-white.rounded-full,
a.bg-primary.text-white {
	background: var(--ember-gradient) !important;
	border: none;
	padding: 1rem 2.5rem;
	font-weight: 600;
	font-size: 1.1rem;
	font-family: 'Lexend', sans-serif;
	letter-spacing: 0.01em;
	box-shadow: 0 8px 30px rgba(var(--ember-primary-rgb), 0.35);
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
	overflow: hidden;
}

.bg-primary.text-white.rounded-full:hover,
a.bg-primary.text-white:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 40px rgba(var(--ember-primary-rgb), 0.45);
}

.bg-primary.text-white.rounded-full:active,
a.bg-primary.text-white:active {
	transform: translateY(-1px);
}

/* Warm shimmer effect on hover */
.bg-primary.text-white.rounded-full::before,
a.bg-primary.text-white::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
	transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.bg-primary.text-white.rounded-full:hover::before,
a.bg-primary.text-white:hover::before {
	left: 100%;
}

/* Secondary outline buttons */
.btn-outline-primary {
	border-width: 2px;
	border-color: var(--ember-primary);
	color: var(--ember-primary);
	font-weight: 600;
	transition: all 0.3s ease;
	border-radius: var(--ember-radius);
}

.btn-outline-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(var(--ember-primary-rgb), 0.25);
	background: var(--ember-primary);
	border-color: var(--ember-primary);
}

/*
  -----------------------------------------
  Package Items — Cards
  -----------------------------------------
*/

.package-btn-list .buy-package-item {
	border-radius: var(--ember-radius);
	padding: 1rem 1.25rem;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	border: 1px solid var(--ember-border) !important;
}

.package-btn-list .buy-package-item:hover {
	transform: translateX(6px);
	border-color: rgba(var(--ember-primary-rgb), 0.2) !important;
	box-shadow: 0 4px 20px rgba(var(--ember-shadow-color), 0.06);
}

/* Social media logo boxes */
section.package-list .tab-item .img-logo,
section.package-list .package-list-carousel .social-item .img-logo {
	border-radius: var(--ember-radius-lg);
	border: 2px solid var(--ember-border);
	background: var(--bs-body-bg);
	box-shadow: 0 8px 30px rgba(var(--ember-shadow-color), 0.05);
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.package-list .tab-item .img-logo:hover,
section.package-list .tab-item.active .img-logo,
section.package-list .package-list-carousel .social-item .img-logo:hover {
	border-color: var(--ember-primary);
	transform: translateY(-4px);
	box-shadow: 0 12px 35px rgba(var(--ember-primary-rgb), 0.18);
}

/*
  -----------------------------------------
  FAQ Section — Warm Accordion
  -----------------------------------------
*/

section.faq .accordion-item {
	border: none;
	background: transparent;
	margin-bottom: 0.75rem;
}

section.faq .accordion-button {
	background: var(--bs-body-bg);
	border: 1px solid var(--ember-border);
	border-radius: var(--ember-radius) !important;
	padding: 1.25rem 1.5rem;
	font-weight: 600;
	font-size: 1.05rem;
	font-family: 'Bricolage Grotesque', sans-serif;
	color: var(--bs-body-color);
	box-shadow: 0 2px 10px rgba(var(--ember-shadow-color), 0.03);
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.faq .accordion-button:not(.collapsed) {
	background: linear-gradient(135deg, rgba(var(--ember-primary-rgb), 0.05) 0%, rgba(var(--ember-accent-rgb), 0.03) 100%);
	border-color: rgba(var(--ember-primary-rgb), 0.15);
	color: var(--ember-primary);
	box-shadow: 0 4px 20px rgba(var(--ember-primary-rgb), 0.08);
}

section.faq .accordion-button:hover {
	border-color: rgba(var(--ember-primary-rgb), 0.2);
}

section.faq .accordion-body {
	padding: 1.5rem;
	line-height: 1.8;
	color: var(--bs-secondary-color);
}

[data-bs-theme="dark"] section.faq .accordion-button {
	background: var(--ember-dark-surface);
	border-color: var(--ember-dark-border);
}

[data-bs-theme="dark"] section.faq .accordion-button:not(.collapsed) {
	background: rgba(var(--ember-primary-rgb), 0.08);
	color: #F08070;
}

/*
  -----------------------------------------
  Form Elements
  -----------------------------------------
*/

.form-control,
.form-select {
	border-radius: 0.75rem;
	padding: 0.875rem 1rem;
	border: 2px solid var(--ember-border);
	transition: all 0.3s ease;
	font-family: 'Lexend', sans-serif;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--ember-primary);
	box-shadow: 0 0 0 4px rgba(var(--ember-primary-rgb), 0.1);
}

/* Modern modals */
.modal-content {
	border: none;
	border-radius: var(--ember-radius-xl);
	box-shadow: 0 25px 80px rgba(var(--ember-shadow-color), 0.2);
}

.modal-header {
	border-bottom: 1px solid var(--ember-border);
	padding: 1.5rem 2rem;
}

.modal-body {
	padding: 2rem;
}

[data-bs-theme="dark"] .modal-content {
	background: #1E1613;
	border: 1px solid var(--ember-dark-border);
}

/*
  -----------------------------------------
  Global Transitions
  -----------------------------------------
*/

body,
.card,
.btn,
section,
.accordion-button,
.form-control {
	transition: background-color 0.3s ease,
				border-color 0.3s ease,
				color 0.3s ease,
				box-shadow 0.3s ease;
}

.loader-wrapper {
	background: var(--bs-body-bg) !important;
}

/*
  -----------------------------------------
  Trust Indicators
  -----------------------------------------
*/

.stars .bi-star-fill,
.text-success .bi-star-fill {
	color: #F59E0B !important;
}

/* Features highlight box */
section.package-list .bg-body-tertiary.shadow {
	border-radius: var(--ember-radius-lg);
	border: 1px solid rgba(var(--ember-primary-rgb), 0.08);
	background: linear-gradient(135deg, rgba(var(--ember-primary-rgb), 0.03) 0%, transparent 100%) !important;
}

[data-bs-theme="dark"] section.package-list .bg-body-tertiary.shadow {
	background: rgba(var(--ember-primary-rgb), 0.04) !important;
	border-color: rgba(var(--ember-primary-rgb), 0.1);
}

/*
  -----------------------------------------
  btn-primary — Warm Ember Global
  -----------------------------------------
*/

.btn-primary {
	background: var(--ember-gradient) !important;
	border: none !important;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	border-radius: var(--ember-radius) !important;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--ember-secondary) 0%, var(--ember-primary) 100%) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(var(--ember-primary-rgb), 0.3);
}

/*
  ==============================================
  ===       DARK MODE GLOBAL FIXES          ===
  ==============================================
*/

[data-bs-theme="dark"] .card {
	background: var(--ember-dark-surface);
	border-color: var(--ember-dark-border);
}

[data-bs-theme="dark"] .shadow {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}

[data-bs-theme="dark"] .bg-body-tertiary {
	background-color: rgba(255, 248, 243, 0.03) !important;
}

[data-bs-theme="dark"] .bg-light {
	background-color: rgba(255, 248, 243, 0.04) !important;
}

[data-bs-theme="dark"] .btn.bg-white,
[data-bs-theme="dark"] .buy-package-item.bg-white {
	background-color: rgba(255, 248, 243, 0.05) !important;
	color: #e8e0d8 !important;
	border-color: var(--ember-dark-border) !important;
}

[data-bs-theme="dark"] .text-dark {
	color: #e8e0d8 !important;
}

[data-bs-theme="dark"] .growing-brands-section .bg-body-tertiary {
	background: rgba(255, 248, 243, 0.03) !important;
}

[data-bs-theme="dark"] section.quick-link .bg-gradient-dark {
	background-image: linear-gradient(135deg, #4A1109 0%, #7C1D10 100%) !important;
}

[data-bs-theme="dark"] .page-single-content .bg-light {
	background-color: rgba(255, 248, 243, 0.04) !important;
}

[data-bs-theme="dark"] .page-single-content .text-dark {
	color: #e8e0d8 !important;
}

[data-bs-theme="dark"] .package-category-tab .card {
	background: var(--ember-dark-surface) !important;
	border-color: var(--ember-dark-border) !important;
}

[data-bs-theme="dark"] .image-with-text-section .bg-body-tertiary {
	background: rgba(255, 248, 243, 0.03) !important;
}

[data-bs-theme="dark"] section.reviews .text-warning {
	color: #F59E0B !important;
}

[data-bs-theme="dark"] .package-category-carousel .card {
	background: var(--ember-dark-surface) !important;
	border-color: var(--ember-dark-border) !important;
}

[data-bs-theme="dark"] .package-category-carousel .card:hover {
	border-color: rgba(var(--ember-primary-rgb), 0.3) !important;
}

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

@media (max-width: 767px) {
	.content-section-layout > section {
		padding: 3rem 0;
	}

	.btn {
		min-height: 48px;
	}

	section.why-choose-us .icon-box {
		padding: 1.5rem;
	}

	section.why-choose-us .icon-boxes .col-md-6:nth-child(2) .icon-box,
	section.why-choose-us .icon-boxes .col-md-6:nth-child(4) .icon-box {
		margin-top: 0;
	}
}
