/**
 * Q8Groups Main Stylesheet
 * Arabic RTL - Dark Glass Morphism Theme
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
	--color-primary: #007A96;
	--color-primary-dark: #005A73;
	--color-primary-light: #00A3C4;
	--color-secondary: #0EA5B7;
	--color-accent: #22D3EE;
	--color-success: #10b981;
	--color-warning: #f59e0b;
	--color-danger: #ef4444;

	--color-bg: #0B1120;
	--color-bg-secondary: #111827;
	--color-bg-tertiary: #1a2332;
	--color-surface: rgba(255, 255, 255, 0.04);
	--color-surface-hover: rgba(255, 255, 255, 0.07);
	--color-border: rgba(255, 255, 255, 0.08);
	--color-border-light: rgba(255, 255, 255, 0.14);

	--color-text: #f1f5f9;
	--color-text-secondary: #94a3b8;
	--color-text-muted: #64748b;

	--font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-brand: 'Outfit', 'Cairo', sans-serif;
	--font-size-base: 12px;
	--line-height: 1.6;

	/* Typography scale — أصغر ومتناسق */
	--text-xs: 9px;
	--text-sm: 10px;
	--text-md: 11px;
	--text-base: 12px;
	--text-lg: 13px;
	--text-xl: 14px;
	--heading-xs: 13px;
	--heading-sm: 14px;
	--heading-md: 15px;
	--heading-lg: 16px;
	--heading-xl: 18px;
	--heading-hero: clamp(17px, 2vw, 21px);
	--heading-section: clamp(15px, 1.6vw, 17px);
	--heading-page: clamp(17px, 2vw, 20px);

	/* Spacing — مضغوط ومتناسق مع الخطوط الصغيرة */
	--section-space: 56px;
	--section-space-sm: 44px;
	--section-header-mb: 28px;
	--card-padding: 22px;
	--grid-gap: 16px;

	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 9999px;

	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
	--shadow-glow: 0 0 40px rgba(0, 122, 150, 0.2);

	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--header-height: 80px;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: var(--font-size-base);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden;
}

body {
	font-family: var(--font-family);
	font-size: var(--font-size-base);
	line-height: var(--line-height);
	color: var(--color-text);
	background-color: var(--color-bg);
	direction: rtl;
	text-align: right;
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.35;
	color: var(--color-text);
}

h1 { font-size: var(--heading-hero); }
h2 { font-size: var(--heading-section); }
h3 { font-size: var(--heading-md); }
h4 { font-size: var(--heading-sm); }
h5, h6 { font-size: var(--text-lg); }

#page.site {
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden;
	position: relative;
}

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

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

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

ul, ol {
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

input, textarea, select {
	font-family: inherit;
	font-size: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* ========================================
   Layout
   ======================================== */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.site-main {
	min-height: calc(100vh - var(--header-height) - 400px);
}

/* ========================================
   Glass Card
   ======================================== */
.glass-card {
	background: var(--color-surface);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: var(--card-padding);
	transition: var(--transition);
}

.glass-card:hover {
	background: var(--color-surface-hover);
	border-color: var(--color-border-light);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 22px;
	font-size: var(--text-lg);
	font-weight: 600;
	border-radius: var(--radius-full);
	transition: var(--transition);
	white-space: nowrap;
	cursor: pointer;
	border: 2px solid transparent;
}

.btn-primary {
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	color: #fff;
	box-shadow: 0 4px 15px rgba(0, 122, 150, 0.35);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 122, 150, 0.45);
	color: #fff;
}

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

.btn-outline:hover {
	background: var(--color-surface-hover);
	border-color: var(--color-primary);
	color: var(--color-text);
}

.btn-sm {
	padding: 7px 16px;
	font-size: var(--text-md);
}

.btn-lg {
	padding: 12px 28px;
	font-size: var(--text-xl);
}

.btn-block {
	width: 100%;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
	text-align: center;
	margin-bottom: var(--section-header-mb);
}

.section-tag {
	display: inline-block;
	padding: 4px 10px;
	background: rgba(0, 122, 150, 0.12);
	color: var(--color-primary-light);
	border-radius: var(--radius-full);
	font-size: var(--text-sm);
	font-weight: 600;
	margin-bottom: 10px;
	border: 1px solid rgba(0, 122, 150, 0.25);
}

.section-title {
	font-size: var(--heading-section);
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 10px;
	line-height: 1.35;
}

.section-desc {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ========================================
   Section Dividers & Scroll Reveal
   ======================================== */
.features-section,
.plans-section,
.process-section,
.testimonials-section,
.faq-section,
.managed-sites-section,
.cta-section {
	position: relative;
}

.features-section::before,
.plans-section::before,
.process-section::before,
.testimonials-section::before,
.faq-section::before,
.managed-sites-section::before,
.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(88%, 520px);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 163, 196, 0.55), transparent);
	box-shadow: 0 0 20px rgba(0, 122, 150, 0.22);
	animation: sectionGlowPulse 4s ease-in-out infinite;
	pointer-events: none;
}

@keyframes sectionGlowPulse {
	0%, 100% { opacity: 0.45; }
	50% { opacity: 0.9; }
}

.reveal-up {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.features-grid .feature-card:nth-child(2),
.plans-grid .plan-card:nth-child(2),
.process-timeline .process-step:nth-child(2) { transition-delay: 0.06s; }

.features-grid .feature-card:nth-child(3),
.plans-grid .plan-card:nth-child(3),
.process-timeline .process-step:nth-child(3) { transition-delay: 0.12s; }

.features-grid .feature-card:nth-child(4),
.process-timeline .process-step:nth-child(4) { transition-delay: 0.18s; }

/* ========================================
   Header
   ======================================== */
.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1000;
	height: var(--header-height);
	transition: var(--transition);
}

.site-header.scrolled {
	background: rgba(10, 10, 15, 0.9);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--color-border);
}

.header-backdrop {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 10, 15, 0.8) 0%, transparent 100%);
	pointer-events: none;
}

.header-container {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	height: 100%;
	position: relative;
	z-index: 1;
	width: 100%;
}

.site-branding {
	justify-self: start;
}

.main-navigation {
	justify-self: center;
}

.header-actions {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-logo-link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-text);
	text-decoration: none;
}

.site-logo-link:hover {
	color: var(--color-text);
}

.site-logo-img {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	object-fit: contain;
	flex-shrink: 0;
}

.logo-name {
	font-family: var(--font-brand);
	font-size: var(--heading-md);
	font-weight: 800;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.site-branding .site-logo-text,
.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-text);
	font-size: var(--heading-md);
	font-weight: 800;
}

.footer-logo-img {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	object-fit: contain;
	flex-shrink: 0;
}

.site-branding .site-logo-text:hover,
.footer-logo:hover {
	color: var(--color-text);
}

.logo-icon {
	display: flex;
	flex-shrink: 0;
}

.custom-logo-link img {
	max-height: 50px;
	width: auto;
}

/* Navigation */
.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation .menu {
	display: flex;
	align-items: center;
	gap: 8px;
}

.main-navigation .menu li a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	color: var(--color-text-secondary);
	font-weight: 500;
	font-size: var(--text-lg);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.main-navigation .menu li a .q8-icon {
	flex-shrink: 0;
	opacity: 0.7;
}

.main-navigation .menu li a:hover,
.main-navigation .menu li.current-menu-item a {
	color: var(--color-text);
	background: var(--color-surface);
}

.main-navigation .menu li.menu-item-has-children {
	position: relative;
}

.main-navigation .menu li.has-mega-menu > a .menu-arrow {
	transition: transform 0.3s ease;
	margin-right: 2px;
}

.main-navigation .menu li.has-mega-menu:hover > a .menu-arrow {
	transform: rotate(180deg);
}

/* Mega Menu Dropdown */
.mega-menu-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 50%;
	transform: translateX(50%) translateY(10px);
	min-width: 480px;
	background: var(--color-bg-secondary);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
	box-shadow: var(--shadow-lg);
	z-index: 100;
}

.main-navigation .menu li.has-mega-menu:hover > .mega-menu-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(50%) translateY(0);
}

/* Touch/click open state for tablet */
.main-navigation .menu li.has-mega-menu.mega-open > .mega-menu-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(50%) translateY(0);
}

.main-navigation .menu li.has-mega-menu.mega-open > a .menu-arrow {
	transform: rotate(180deg);
}

.mega-menu-inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.mega-section-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: var(--text-xs);
	font-weight: 700;
	color: var(--color-primary-light);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--color-border);
}

.mega-section-links {
	list-style: none;
}

.mega-section-links li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.mega-section-links li a:hover {
	background: var(--color-surface);
	color: var(--color-text);
	padding-right: 16px;
}

.mega-section-links li a .q8-icon {
	color: var(--color-primary-light);
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.header-cart {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--color-text-secondary);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.header-cart:hover {
	color: var(--color-text);
	background: var(--color-surface);
}

.cart-count {
	position: absolute;
	top: 4px;
	left: 4px;
	background: var(--color-primary);
	color: #fff;
	font-size: var(--text-xs);
	font-weight: 700;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.hamburger {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 22px;
}

.hamburger span {
	display: block;
	height: 2px;
	background: var(--color-text);
	border-radius: 2px;
	transition: var(--transition);
}

.menu-toggle.active .hamburger span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: var(--header-height);
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(10, 10, 15, 0.98);
	backdrop-filter: blur(20px);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	overflow-y: auto;
}

.mobile-menu.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu-inner {
	padding: 24px;
}

.mobile-menu .menu li a,
.mobile-nav-list li > a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	color: var(--color-text);
	font-size: var(--text-xl);
	font-weight: 500;
	border-bottom: 1px solid var(--color-border);
}

.mobile-dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 14px 16px;
	color: var(--color-text);
	font-size: var(--text-lg);
	font-weight: 500;
	font-family: inherit;
	border-bottom: 1px solid var(--color-border);
	background: none;
	border-left: none;
	border-right: none;
	border-top: none;
	cursor: pointer;
	text-align: right;
	-webkit-tap-highlight-color: transparent;
}

.mobile-dropdown-toggle span {
	flex: 1;
}

.mobile-dropdown-toggle .menu-arrow {
	margin-right: auto;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.mobile-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav-list > li {
	margin: 0;
	padding: 0;
}

.mobile-nav-list li.open .mobile-dropdown-toggle .menu-arrow {
	transform: rotate(180deg);
}

.mobile-submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
	background: var(--color-bg-tertiary);
}

.mobile-nav-list li.open .mobile-submenu {
	max-height: 600px;
}

.mobile-submenu-section-title {
	padding: 10px 16px 6px;
	font-size: var(--text-xs);
	font-weight: 700;
	color: var(--color-primary-light);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.mobile-submenu-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px 10px 28px;
	color: var(--color-text-secondary);
	font-size: var(--text-lg);
	border-bottom: 1px solid var(--color-border);
}

.mobile-submenu-link:hover {
	color: var(--color-text);
	background: var(--color-surface);
}

.mobile-menu-footer {
	margin-top: 24px;
}

/* WordPress admin bar offset */
body.admin-bar .site-header {
	top: 32px;
}

body.admin-bar .mobile-menu {
	top: calc(var(--header-height) + 32px);
}

@media screen and (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
	body.admin-bar .mobile-menu {
		top: calc(var(--header-height) + 46px);
	}
}

body.admin-bar .hero-section {
	padding-top: calc(var(--header-height) + 16px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
	position: relative;
	min-height: auto;
	display: flex;
	align-items: center;
	padding: calc(var(--header-height) + 32px) 0 72px;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-gradient {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 122, 150, 0.25), transparent),
		radial-gradient(ellipse 60% 40% at 80% 60%, rgba(14, 165, 183, 0.12), transparent),
		radial-gradient(ellipse 50% 30% at 20% 80%, rgba(34, 211, 238, 0.08), transparent);
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
}

.hero-glow-1 {
	width: 400px;
	height: 400px;
	background: var(--color-primary);
	opacity: 0.15;
	top: 10%;
	right: 10%;
}

.hero-glow-2 {
	width: 300px;
	height: 300px;
	background: var(--color-secondary);
	opacity: 0.1;
	bottom: 20%;
	left: 15%;
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-full);
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	margin-bottom: 24px;
}

.badge-dot {
	width: 8px;
	height: 8px;
	background: var(--color-success);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

.hero-title {
	font-size: var(--heading-hero);
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 14px;
	background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	margin-bottom: 28px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.hero-actions .btn svg {
	transform: scaleX(-1);
}

.hero-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

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

.stat-number {
	display: block;
	font-size: var(--heading-lg);
	font-weight: 800;
	color: var(--color-text);
}

.stat-label {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
}

.stat-divider {
	width: 1px;
	height: 40px;
	background: var(--color-border);
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
	padding: var(--section-space) 0;
	width: 100%;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--grid-gap);
	width: 100%;
}

.feature-card {
	text-align: center;
	padding: 24px 18px;
}

.feature-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-glow);
}

.feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, rgba(0, 122, 150, 0.15), rgba(14, 165, 183, 0.15));
	border-radius: var(--radius-md);
	color: var(--color-primary-light);
	margin-bottom: 12px;
}

.feature-title {
	font-size: var(--heading-sm);
	font-weight: 700;
	margin-bottom: 10px;
}

.feature-desc {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	line-height: 1.7;
}

/* ========================================
   Plans Section
   ======================================== */
.plans-section {
	padding: var(--section-space) 0;
	position: relative;
}

.plans-section::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(0, 122, 150, 0.08), transparent 70%);
	pointer-events: none;
}

.plans-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--grid-gap);
	position: relative;
	z-index: 1;
	width: 100%;
}

.plan-card {
	display: flex;
	flex-direction: column;
	padding: 26px 20px;
	position: relative;
}

.plan-card.plan-featured {
	border-color: var(--color-primary);
	box-shadow: var(--shadow-glow);
	transform: scale(1.02);
}

.plan-badge {
	position: absolute;
	top: -12px;
	right: 50%;
	transform: translateX(50%);
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	color: #fff;
	padding: 6px 20px;
	border-radius: var(--radius-full);
	font-size: var(--text-sm);
	font-weight: 700;
	white-space: nowrap;
}

.plan-header {
	margin-bottom: 14px;
}

.plan-name {
	font-size: var(--heading-sm);
	font-weight: 700;
	margin-bottom: 10px;
}

.plan-price {
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.plan-price .woocommerce-Price-amount,
.plan-price .price-amount {
	font-size: var(--heading-xl);
	font-weight: 900;
	color: var(--color-text);
}

.plan-price .woocommerce-Price-currencySymbol {
	font-size: var(--heading-sm);
}

.plan-price .price-period,
.plan-price .subscription-details {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
}

.plan-description {
	margin-bottom: 16px;
}

.plan-description p {
	color: var(--color-text-secondary);
	font-size: var(--text-lg);
}

.plan-features {
	flex: 1;
	margin-bottom: 20px;
}

.plan-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 7px 0;
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
}

.plan-features li svg {
	flex-shrink: 0;
	color: var(--color-success);
	margin-top: 3px;
}

.plan-action {
	margin-top: auto;
	padding-top: 8px;
}

.plan-btn-wrap {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	position: relative;
}

.plan-btn-wrap .button,
.plan-btn-wrap .plan-select-btn {
	width: 100%;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.plan-btn-wrap .button::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
	opacity: 0;
	transform: scale(0);
	transition: opacity 0.4s, transform 0.4s;
}

.plan-btn-wrap .button.is-adding {
	animation: planBtnPulse 0.6s ease;
	pointer-events: none;
}

.plan-btn-wrap .button.is-added {
	animation: planBtnSuccess 0.5s ease;
	background: linear-gradient(135deg, var(--color-success), #059669) !important;
}

.plan-btn-wrap a.added_to_cart {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	padding: 10px 20px;
	font-size: var(--text-base);
	font-weight: 600;
	border-radius: var(--radius-full);
	background: var(--color-surface);
	border: 1px solid var(--color-border-light);
	color: var(--color-text) !important;
	text-decoration: none;
	margin: 0 !important;
	opacity: 0;
	transform: translateY(8px);
	animation: cartLinkSlide 0.45s ease forwards;
}

.plan-btn-wrap a.added_to_cart::before {
	content: '🛒';
}

@keyframes planBtnPulse {
	0% { transform: scale(1); }
	30% { transform: scale(0.95); }
	60% { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 122, 150, 0.5); }
	100% { transform: scale(1); }
}

@keyframes planBtnSuccess {
	0% { transform: scale(1); }
	50% { transform: scale(1.08); }
	100% { transform: scale(1); }
}

@keyframes cartLinkSlide {
	to { opacity: 1; transform: translateY(0); }
}

.plan-action .button,
.plan-action .btn {
	width: 100%;
}

/* ========================================
   Process Section
   ======================================== */
.process-section {
	padding: var(--section-space) 0;
}

.process-timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--grid-gap);
}

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

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	color: #fff;
	font-size: var(--heading-sm);
	font-weight: 800;
	border-radius: 50%;
	margin-bottom: 10px;
}

.step-content {
	padding: 16px;
}

.step-title {
	font-size: var(--heading-sm);
	font-weight: 700;
	margin-bottom: 6px;
}

.step-desc {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
	padding: var(--section-space) 0;
	overflow: hidden;
}

.testimonials-slider {
	position: relative;
}

.testimonials-track {
	display: flex;
	gap: var(--grid-gap);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 4px 0;
}

.testimonials-track::-webkit-scrollbar {
	display: none;
}

.testimonial-card {
	flex: 0 0 calc(33.333% - 12px);
	min-width: 300px;
	scroll-snap-align: start;
	padding: 22px;
}

.testimonial-rating {
	display: flex;
	gap: 2px;
	color: #fbbf24;
	margin-bottom: 12px;
}

.testimonial-text {
	font-size: var(--text-lg);
	line-height: 1.65;
	color: var(--color-text-secondary);
	margin-bottom: 14px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.author-avatar {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: var(--heading-sm);
}

.author-info strong {
	display: block;
	font-size: var(--text-lg);
}

.author-info span {
	font-size: var(--text-md);
	color: var(--color-text-muted);
}

.slider-controls {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 14px;
}

.slider-btn {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	color: var(--color-text-secondary);
	transition: var(--transition);
}

.slider-btn:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
	padding: var(--section-space) 0;
}

.faq-accordion {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--color-border);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 0;
	font-size: var(--text-xl);
	font-weight: 600;
	color: var(--color-text);
	text-align: right;
	transition: var(--transition);
}

.faq-question:hover {
	color: var(--color-primary-light);
}

.faq-icon {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

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

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
	max-height: 300px;
}

.faq-answer-inner {
	padding-bottom: 14px;
}

.faq-answer p {
	color: var(--color-text-secondary);
	line-height: 1.7;
	font-size: var(--text-lg);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
	padding: var(--section-space-sm) 0;
	position: relative;
}

.cta-bg {
	position: absolute;
	inset: 0;
}

.cta-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(0, 122, 150, 0.12), transparent 70%);
}

.cta-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 300px;
	background: var(--color-primary);
	opacity: 0.08;
	filter: blur(100px);
	border-radius: 50%;
}

.cta-content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 36px 24px;
	max-width: 700px;
	margin: 0 auto;
}

.cta-title {
	font-size: var(--heading-section);
	font-weight: 800;
	margin-bottom: 12px;
}

.cta-desc {
	font-size: var(--text-xl);
	color: var(--color-text-secondary);
	margin-bottom: 32px;
}

.cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
	background: var(--color-bg-secondary);
	border-top: 1px solid var(--color-border);
}

.footer-top {
	padding: 80px 0 40px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 40px;
}

.footer-description {
	color: var(--color-text-secondary);
	font-size: var(--text-lg);
	line-height: 1.7;
	margin: 14px 0 20px;
}

.footer-social {
	display: flex;
	gap: 12px;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	color: var(--color-text-secondary);
	transition: var(--transition);
}

.footer-social a:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.footer-widget-title {
	font-size: var(--heading-xs);
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--color-text);
}

.footer-menu-list li a,
.footer-links .menu li a {
	display: block;
	padding: 5px 0;
	color: var(--color-text-secondary);
	font-size: var(--text-lg);
	transition: var(--transition);
}

.footer-menu-list li a:hover,
.footer-links .menu li a:hover {
	color: var(--color-primary-light);
	padding-right: 4px;
}

.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 7px 0;
	color: var(--color-text-secondary);
	font-size: var(--text-lg);
}

.contact-list li svg {
	flex-shrink: 0;
	margin-top: 3px;
	color: var(--color-primary-light);
}

.contact-list li a {
	color: var(--color-text-secondary);
}

.contact-list li a:hover {
	color: var(--color-primary-light);
}

.newsletter-form {
	display: flex;
	gap: 8px;
	margin-top: 16px;
}

.newsletter-form input {
	flex: 1;
	padding: 10px 16px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	outline: none;
	transition: var(--transition);
}

.newsletter-form input:focus {
	border-color: var(--color-primary);
}

.footer-bottom {
	padding: 24px 0;
	border-top: 1px solid var(--color-border);
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.copyright {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
}

.copyright a {
	color: var(--color-text-secondary);
}

.footer-legal {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: var(--text-lg);
}

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

.footer-legal a:hover {
	color: var(--color-primary-light);
}

.footer-legal .separator {
	color: var(--color-border);
}

/* Back to Top */
.back-to-top {
	position: fixed;
	bottom: 30px;
	left: 30px;
	width: 48px;
	height: 48px;
	background: var(--color-primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: var(--transition);
	z-index: 999;
	box-shadow: var(--shadow-md);
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: var(--color-primary-dark);
	color: #fff;
	transform: translateY(-4px);
}

/* ========================================
   Page Templates
   ======================================== */
.page-header {
	padding: calc(var(--header-height) + 40px) 0 40px;
	text-align: center;
	background: var(--color-bg-secondary);
}

.page-title {
	font-size: var(--heading-page);
	font-weight: 800;
}

.breadcrumbs {
	padding: 14px 0;
	font-size: var(--text-lg);
	color: var(--color-text-muted);
}

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

.breadcrumbs .separator {
	margin: 0 8px;
}

.breadcrumbs .current {
	color: var(--color-primary-light);
}

.content-area {
	padding: 60px 0;
}

.page-article,
.single-article {
	padding: 48px;
	margin-bottom: 40px;
}

.entry-title {
	font-size: var(--heading-xl);
	font-weight: 800;
	margin-bottom: 20px;
}

.entry-content {
	font-size: var(--text-xl);
	line-height: 1.9;
	color: var(--color-text-secondary);
}

.entry-content h2,
.entry-content h3 {
	color: var(--color-text);
	margin: 32px 0 16px;
}

.entry-content p {
	margin-bottom: 16px;
}

.entry-content ul,
.entry-content ol {
	margin: 16px 0;
	padding-right: 24px;
}

.entry-content li {
	margin-bottom: 8px;
	list-style: disc;
}

/* Posts Grid */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.post-card {
	overflow: hidden;
	padding: 0;
}

.post-thumbnail img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.post-content {
	padding: 24px;
}

.post-meta {
	font-size: var(--text-md);
	color: var(--color-text-muted);
	margin-bottom: 6px;
}

.post-title {
	font-size: var(--heading-sm);
	font-weight: 700;
	margin-bottom: 10px;
}

.post-title a {
	color: var(--color-text);
}

.post-title a:hover {
	color: var(--color-primary-light);
}

.post-excerpt {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	margin-bottom: 14px;
}

.read-more {
	font-size: var(--text-lg);
	font-weight: 600;
	color: var(--color-primary-light);
}

/* Contact Page */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 32px;
}

.contact-info h2 {
	font-size: var(--heading-lg);
	font-weight: 800;
	margin-bottom: 12px;
}

.contact-info > p {
	color: var(--color-text-secondary);
	margin-bottom: 32px;
}

.contact-info .contact-list li {
	padding: 16px 0;
	border-bottom: 1px solid var(--color-border);
}

.contact-info .contact-list li strong {
	display: block;
	margin-bottom: 4px;
	color: var(--color-text);
}

.contact-form-wrapper h3 {
	font-size: var(--heading-md);
	font-weight: 700;
	margin-bottom: 20px;
}

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

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: var(--text-lg);
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 12px 16px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	outline: none;
	transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

/* About Page */
.about-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin: 40px 0;
}

.stat-card {
	text-align: center;
	padding: 32px;
}

.stat-card .stat-number {
	font-size: var(--heading-xl);
	font-weight: 900;
	color: var(--color-primary-light);
}

.stat-card .stat-label {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
}

/* 404 Page */
.error-404 {
	padding: calc(var(--header-height) + 60px) 0 100px;
	text-align: center;
}

.error-content {
	max-width: 500px;
	margin: 0 auto;
	padding: 60px 40px;
}

.error-code {
	font-size: 80px;
	font-weight: 900;
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 16px;
}

.error-title {
	font-size: var(--heading-lg);
	font-weight: 800;
	margin-bottom: 10px;
}

.error-desc {
	color: var(--color-text-secondary);
	margin-bottom: 32px;
}

.error-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Pagination */
.navigation.pagination {
	margin-top: 40px;
	text-align: center;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: var(--radius-sm);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	color: var(--color-text-secondary);
	font-weight: 500;
	transition: var(--transition);
}

.page-numbers:hover,
.page-numbers.current {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

/* Comments */
.comments-area {
	margin-top: 40px;
	padding: 32px;
}

.comments-title {
	font-size: var(--heading-md);
	font-weight: 700;
	margin-bottom: 20px;
}

.comment-list {
	margin-bottom: 32px;
}

.comment-list .comment {
	padding: 20px 0;
	border-bottom: 1px solid var(--color-border);
}

.comment-form input,
.comment-form textarea {
	width: 100%;
	padding: 12px 16px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	margin-bottom: 16px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
	.features-grid,
	.plans-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

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

	.testimonial-card {
		flex: 0 0 calc(50% - 12px);
	}

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

@media (max-width: 1024px) {
	.main-navigation {
		display: none !important;
	}

	.menu-toggle {
		display: flex !important;
	}

	.header-cta {
		display: none;
	}

	.header-container {
		grid-template-columns: 1fr auto;
		gap: 12px;
	}

	.site-branding {
		max-width: calc(100% - 120px);
	}
}

@media (max-width: 768px) {
	:root {
		--header-height: 70px;
		--section-space: 36px;
		--section-space-sm: 30px;
		--section-header-mb: 18px;
		--card-padding: 18px;
		--grid-gap: 12px;
	}

	.header-container {
		grid-template-columns: 1fr auto;
		gap: 12px;
	}

	.site-branding {
		justify-self: start;
		max-width: calc(100% - 100px);
	}

	.header-actions {
		justify-self: end;
	}

	.hero-section {
		padding: calc(var(--header-height) + 16px) 0 32px;
	}

	.hero-actions {
		margin-bottom: 24px;
	}

	.hero-stats {
		gap: 24px;
	}

	.stat-divider {
		display: none;
	}

	.features-grid,
	.plans-grid,
	.process-timeline,
	.posts-grid {
		grid-template-columns: 1fr;
		width: 100%;
	}

	.feature-card,
	.plan-card,
	.glass-card {
		width: 100%;
	}

	.plan-card.plan-featured {
		transform: none;
	}

	.testimonial-card {
		flex: 0 0 85%;
		min-width: 280px;
	}

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

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

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

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.cta-content {
		padding: 28px 18px;
	}

	.managed-sites-section {
		padding: var(--section-space-sm) 0 24px;
	}

	.managed-sites-section .section-header {
		margin-bottom: 14px;
	}

	.page-article,
	.single-article {
		padding: 24px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.glass-card {
		padding: 24px 20px;
	}

	.mega-menu-dropdown {
		min-width: 280px;
		right: 0;
		transform: translateX(0) translateY(10px);
	}

	.main-navigation .menu li.has-mega-menu:hover > .mega-menu-dropdown {
		transform: translateX(0) translateY(0);
	}

	.mega-menu-inner {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   Managed Sites Marquee
   ======================================== */
.managed-sites-section {
	padding: var(--section-space-sm) 0 40px;
	overflow: hidden;
}

.managed-sites-section .section-header {
	margin-bottom: 18px;
}

.managed-sites-marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.managed-sites-track {
	display: flex;
	gap: 20px;
	width: max-content;
	animation: marqueeScroll 40s linear infinite;
}

.managed-sites-track:hover {
	animation-play-state: paused;
}

@keyframes marqueeScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(50%); }
}

.managed-site-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	min-width: 300px;
	max-width: 340px;
	flex-shrink: 0;
	text-decoration: none;
	color: var(--color-text);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.managed-site-card:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: var(--shadow-glow);
	color: var(--color-text);
}

.site-card-logo img {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	object-fit: contain;
	background: #fff;
	padding: 4px;
}

.site-card-logo-placeholder {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 800;
	font-size: var(--heading-sm);
}

.site-card-info {
	flex: 1;
	min-width: 0;
}

.site-card-name {
	font-size: var(--text-xl);
	font-weight: 700;
	margin-bottom: 4px;
	font-family: var(--font-brand);
}

.site-card-desc {
	font-size: var(--text-sm);
	color: var(--color-text-secondary);
	line-height: 1.5;
	margin-bottom: 6px;
}

.site-card-badge {
	display: inline-block;
	font-size: var(--text-xs);
	font-weight: 600;
	padding: 3px 10px;
	background: rgba(0, 122, 150, 0.15);
	color: var(--color-primary-light);
	border-radius: var(--radius-full);
	border: 1px solid rgba(0, 122, 150, 0.25);
}

.site-card-arrow {
	flex-shrink: 0;
	color: var(--color-text-muted);
	transition: transform 0.3s ease, color 0.3s ease;
}

.managed-site-card:hover .site-card-arrow {
	color: var(--color-primary-light);
	transform: translate(-4px, -4px);
}

/* ========================================
   Contact & Support Pages
   ======================================== */
.page-intro {
	text-align: center;
	margin-bottom: var(--section-header-mb);
}

.contact-page,
.support-page {
	padding: 40px 0 56px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: var(--grid-gap);
	margin-bottom: var(--section-header-mb);
}

.contact-list-detailed li {
	align-items: flex-start;
	padding: 12px 0;
}

.contact-list-detailed li svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--color-primary-light);
}

.contact-list-detailed strong {
	display: block;
	margin-bottom: 4px;
	color: var(--color-text);
	font-size: var(--text-lg);
}

.contact-social-block {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--color-border);
}

.contact-social-block h3 {
	font-size: var(--heading-sm);
	margin-bottom: 12px;
}

.contact-social-icons,
.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.contact-social-icons a,
.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	color: var(--color-text-secondary);
	transition: var(--transition);
}

.contact-social-icons a:hover,
.footer-social a:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
	transform: translateY(-2px);
}

.contact-quick-links {
	margin-top: 16px;
}

.contact-map-reviews {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: var(--grid-gap);
	margin-top: var(--section-header-mb);
}

.google-business-card {
	margin-bottom: var(--section-header-mb);
	padding: 0;
	overflow: hidden;
}

.google-business-card-inner {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
}

.google-business-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: rgba(0, 122, 150, 0.15);
	color: var(--color-primary-light);
	flex-shrink: 0;
}

.google-business-info h3 {
	font-size: var(--heading-sm);
	margin: 0 0 8px;
}

.google-business-address,
.google-business-email {
	color: var(--color-text-secondary);
	font-size: var(--text-lg);
	margin: 0 0 8px;
	line-height: 1.6;
}

.google-business-btn {
	margin-top: 10px;
}

.footer-phone-label {
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	margin-left: 4px;
}

.footer-map-embed {
	margin-bottom: 18px;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--color-border);
	background: var(--color-bg-tertiary);
}

.footer-map-embed iframe {
	display: block;
	width: 100%;
	height: 220px;
	border: 0;
}

.whatsapp-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 14px;
}

.footer-whatsapp-buttons,
.support-whatsapp-buttons {
	margin-top: 12px;
}

.btn-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #25d366;
	border: 1px solid #25d366;
	color: #fff;
	font-weight: 600;
}

.btn-whatsapp:hover {
	background: #1ebe57;
	border-color: #1ebe57;
	color: #fff;
}

.contact-whatsapp-block {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--color-border);
}

.contact-whatsapp-block h3 {
	font-size: var(--heading-xs);
	margin: 0 0 12px;
}

.whatsapp-list li svg {
	color: #25d366;
}

.google-map-wrap,
.google-reviews-wrap {
	overflow: hidden;
	padding: 0;
}

.google-map-header,
.google-reviews-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 20px;
	border-bottom: 1px solid var(--color-border);
}

.google-map-header h3,
.google-reviews-header h3 {
	font-size: var(--heading-sm);
	margin: 0;
}

.google-map-link,
.google-reviews-link {
	font-size: var(--text-md);
	color: var(--color-primary-light);
	white-space: nowrap;
}

.google-map-embed {
	position: relative;
	min-height: 320px;
	background: var(--color-bg-tertiary);
}

.google-map-embed iframe {
	display: block;
	width: 100%;
	height: 360px;
	border: 0;
}

.google-reviews-widget,
.google-reviews-placeholder,
.support-widget-placeholder {
	padding: 20px;
}

.google-reviews-placeholder p,
.support-widget-placeholder p {
	color: var(--color-text-secondary);
	margin-bottom: 16px;
	line-height: 1.7;
}

.support-layout {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: var(--grid-gap);
}

.support-sidebar h3 {
	font-size: var(--heading-sm);
	margin-bottom: 14px;
}

.support-contact-list li {
	padding: 10px 0;
}

.support-steps {
	margin: 0 0 16px;
	padding-right: 20px;
	color: var(--color-text-secondary);
	font-size: var(--text-lg);
	line-height: 1.8;
}

.support-steps li {
	margin-bottom: 6px;
}

@media (max-width: 1024px) {
	.contact-grid,
	.contact-map-reviews,
	.support-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.contact-page,
	.support-page {
		padding: 28px 0 40px;
	}

	.google-map-embed iframe {
		height: 280px;
	}

	.google-map-header,
	.google-reviews-header {
		flex-direction: column;
		align-items: flex-start;
	}
}
