:root {
	--gold: #EAAB41;
	--gold-light: #f5c96a;
	--gold-dark: #c4850a;
	--purple: #231F55;
	--purple-mid: #3b3688;
	--purple-light: #6b66b5;
	--bg: #f4f2ff;
	--card: #ffffff;
	--card2: #f0eeff;
	--text: #1a1640;
	--text-muted: #6b66a0;
	--border: rgba(35,31,85,0.12);
	--radius: 16px;
}





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

body {
	background: var(--bg);
	color: var(--text);
	font-family: "Vazirmatn", sans-serif;
	min-height: 100vh;
	overflow-x: hidden;
}

/* ── ANIMATED BLOBS ── */
.bg-canvas {
	position: fixed;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	will-change: transform;
}

.blob-1 {
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(234,171,65,0.50), transparent 70%);
	top: -160px;
	left: -120px;
	animation: bFloat1 18s ease-in-out infinite;
}

.blob-2 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(35,31,85,0.18), transparent 70%);
	top: 20%;
	right: -200px;
	animation: bFloat2 24s ease-in-out infinite;
}

.blob-3 {
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, rgba(234,171,65,0.32), transparent 70%);
	bottom: -60px;
	left: 10%;
	animation: bFloat3 17s ease-in-out infinite;
}

.blob-4 {
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(107,102,181,0.28), transparent 70%);
	top: 55%;
	left: 3%;
	animation: bFloat1 21s ease-in-out infinite;
	animation-delay: -10s;
}

@keyframes bFloat1 {
	0%,100% {
		transform: translate(0,0) scale(1);
	}

	33% {
		transform: translate(55px,35px) scale(1.07);
	}

	66% {
		transform: translate(-28px,65px) scale(0.95);
	}
}

@keyframes bFloat2 {
	0%,100% {
		transform: translate(0,0) scale(1);
	}

	40% {
		transform: translate(-65px,-45px) scale(1.09);
	}

	70% {
		transform: translate(38px,58px) scale(0.93);
	}
}

@keyframes bFloat3 {
	0%,100% {
		transform: translate(0,0) scale(1);
	}

	50% {
		transform: translate(48px,-58px) scale(1.08);
	}
}

/* ── LAYOUT ── */
.wrapper {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px 70px;
}

/* ── HERO ── */
.hero {
	text-align: center;
	padding: 44px 0 32px;
	animation: fadeUp 0.7s ease both;
}

.logo-ring {
	width: 104px;
	height: 104px;
	border-radius: 50%;
	border: 2.5px solid var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 22px;
	background: radial-gradient(circle, rgba(234,171,65,0.22), rgba(255,255,255,0.9) 70%);
	box-shadow: 0 0 44px rgba(234,171,65,0.38), 0 4px 20px rgba(35,31,85,0.10);
	overflow: hidden;
}

	.logo-ring img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.company-name {
	font-family: "Vazirmatn", sans-serif;
	font-size: clamp(28px,6vw,42px);
	background: linear-gradient(135deg, var(--purple-mid), var(--purple), #4a3fa0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 0.0em;
	line-height: 1.2;
}

.company-tagline {
	color: var(--text-muted);
	font-size: 14px;
	margin-top: 10px;
	font-weight: 300;
	letter-spacing: 0.0em;
}

.divider {
	width: 64px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	margin: 18px auto;
}

.company-desc {
	font-size: 15px;
	color: #5a5490;
	max-width: 500px;
	margin: 0 auto;
	line-height: 1.85;
}



/* ── SECTION TITLE ── */
.section-title {
	font-size: 11px;
	letter-spacing: 0.0em;
	color: var(--purple);
	text-transform: uppercase;
	font-family: "Vazirmatn", sans-serif;
	font-weight: 600;
	margin-bottom: 16px;
	text-align: center;
}

/* ── SOCIALS ── */
.socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 48px;
	animation: fadeUp 0.7s 0.15s ease both;
}

.social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: rgba(255,255,255,0.78);
	backdrop-filter: blur(10px);
	text-decoration: none;
	transition: all 0.3s;
	box-shadow: 0 2px 10px rgba(35,31,85,0.07);
	overflow: hidden;
	position: relative;
}

	.social-btn:hover {
		border-color: var(--gold);
		background: rgba(234,171,65,0.12);
		transform: translateY(-2px) scale(1.05);
		box-shadow: 0 6px 22px rgba(234,171,65,0.25);
	}

	.social-btn img {
		width: 26px;
		height: 26px;
		object-fit: contain;
	}

/* ── BRANCH CARDS ── */
.branches-section {
	animation: fadeUp 0.7s 0.25s ease both;
}

.branch-grid {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.branch-card {
	background: rgba(255,255,255,0.82);
	backdrop-filter: blur(14px);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
	box-shadow: 0 2px 16px rgba(35,31,85,0.07);
}

	.branch-card:hover {
		border-color: rgba(234,171,65,0.5);
		transform: translateY(-2px);
		box-shadow: 0 8px 32px rgba(35,31,85,0.12);
	}

	.branch-card.open {
		border-color: var(--gold);
		box-shadow: 0 6px 32px rgba(234,171,65,0.20);
	}

/* Branch header */
.branch-header {
	display: flex;
	align-items: stretch;
	cursor: pointer;
	user-select: none;
	overflow: hidden;
}

/* Branch thumbnail */
.branch-thumb {
	width: 130px;
	flex-shrink: 0;
	overflow: hidden;
	position: relative;
}

	.branch-thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s ease;
		display: block;
	}

.branch-card:hover .branch-thumb img {
	transform: scale(1.08);
}

.branch-thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to left, rgba(255,255,255,0) 50%, rgba(244,242,255,0.3));
}

.branch-header-info {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1;
	padding: 16px 18px;
}

.branch-num {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--purple);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Vazirmatn", sans-serif;
	font-size: 11px;
	color: #fff;
	font-weight: 700;
}

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

.branch-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
}

.branch-city {
	font-size: 12px;
	color: var(--text-muted);
	margin-top: 2px;
}

.branch-arrow {
	color: var(--purple-light);
	font-size: 20px;
	transition: transform 0.35s;
	flex-shrink: 0;
	line-height: 1;
}

.branch-card.open .branch-arrow {
	transform: rotate(180deg);
}

/* Branch body */
.branch-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}

.branch-card.open .branch-body {
	max-height: 800px;
}

.branch-inner {
	padding: 18px 20px 20px;
	border-top: 1px solid var(--border);
}

.info-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 11px;
	font-size: 13.5px;
}

.info-icon {
	font-size: 15px;
	flex-shrink: 0;
	margin-top: 1px;
}

.info-label {
	color: var(--text-muted);
	font-size: 10.5px;
	margin-bottom: 2px;
	font-family: "Vazirmatn", sans-serif;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.info-val {
	color: var(--text);
}

	.info-val a {
		color: var(--purple-mid);
		text-decoration: none;
	}

		.info-val a:hover {
			text-decoration: underline;
		}

/* Google Maps Button */
.map-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 24px;
	background: linear-gradient(135deg, #EA4335, #4285F4);
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	font-family: "Vazirmatn", sans-serif;
	font-weight: 600;
	letter-spacing: 0.0em;
	margin-top: 10px;
	margin-bottom: 4px;
	box-shadow: 0 3px 12px rgba(66,133,244,0.25);
	transition: all 0.3s;
}

	.map-btn:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(66,133,244,0.35);
	}

.map-icon {
	font-size: 14px;
}

/* Staff */
.staff-title {
	font-size: 10.5px;
	letter-spacing: 0.1em;
	color: var(--purple);
	text-transform: uppercase;
	font-family: "Vazirmatn", sans-serif;
	font-weight: 600;
	margin: 18px 0 10px;
}

.staff-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.staff-card {
	background: var(--card2);
	border: 1px solid rgba(35,31,85,0.09);
	border-radius: 12px;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 13px;
	transition: box-shadow 0.25s, border-color 0.25s;
}

	.staff-card:hover {
		border-color: rgba(234,171,65,0.4);
		box-shadow: 0 4px 16px rgba(234,171,65,0.15);
	}

.staff-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	border: 2.5px solid rgba(35,31,85,0.15);
	background: var(--card2);
	box-shadow: 0 2px 8px rgba(35,31,85,0.12);
	order: 2;
}

	.staff-avatar img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

.staff-info {
	flex: 1;
	min-width: 0;
	order: 3;
}

.staff-name {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--text);
}

.staff-role {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 2px;
}

.staff-contact {
	margin-top: 8px;
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
	order: 1;
	flex-direction: row;
}

.staff-contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 4px 8px;
	border-radius: 14px;
	font-size: 9px;
	font-family: "Vazirmatn", sans-serif;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s;
	letter-spacing: 0.0em;
}

.whatsapp-btn {
	background: linear-gradient(135deg, #25D366, #128C7E);
	color: #fff;
	box-shadow: 0 2px 8px rgba(37,211,102,0.25);
}

	.whatsapp-btn:hover {
		transform: translateY(-1px);
		box-shadow: 0 4px 12px rgba(37,211,102,0.35);
	}

.call-btn {
	background: linear-gradient(135deg, var(--purple-mid), var(--purple));
	color: #fff;
	box-shadow: 0 2px 8px rgba(35,31,85,0.25);
}

	.call-btn:hover {
		transform: translateY(-1px);
		box-shadow: 0 4px 12px rgba(35,31,85,0.35);
	}

/* ── FOOTER ── */
.footer {
	text-align: center;
	padding-top: 50px;
	color: var(--text-muted);
	font-size: 12px;
	font-family: "Vazirmatn", sans-serif;
	letter-spacing: 0.0em;
	animation: fadeUp 0.7s 0.35s ease both;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

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

@media (max-width: 500px) {
	.branch-thumb {
		width: 100px;
	}

	.socials {
		gap: 8px;
	}

	.social-btn {
		padding: 9px 14px;
		font-size: 12px;
	}
}
